From 9de742738929937b08a7c020a608dd90d872fe3e Mon Sep 17 00:00:00 2001 From: Kazunari Sekigawa Date: Wed, 11 Feb 2026 08:26:24 +0900 Subject: [PATCH 001/212] Use Ruby 3.4.8 from MacPorts --- macbuild/build4mac_env.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/macbuild/build4mac_env.py b/macbuild/build4mac_env.py index 349b46669..363ab78c8 100755 --- a/macbuild/build4mac_env.py +++ b/macbuild/build4mac_env.py @@ -328,7 +328,7 @@ RubyTahoe = { 'exe': '/System/Library/Frameworks/Ruby.framework/Versions # install with 'sudo port install ruby34' # [Key Type Name] = 'MP34' Ruby34MacPorts = { 'exe': '/opt/local/bin/ruby3.4', - 'inc': '/opt/local/include/ruby-3.4.7', + 'inc': '/opt/local/include/ruby-3.4.8', 'lib': '/opt/local/lib/libruby.3.4.dylib' } From eefd19c089448dcf4ecb65151f55a457895e75b0 Mon Sep 17 00:00:00 2001 From: Kazunari Sekigawa Date: Wed, 11 Feb 2026 23:54:47 +0900 Subject: [PATCH 002/212] Update the macOS build system for compatibility with modern Python environments (e.g., pip 26.0.1+). --- macbuild/build4mac.py | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/macbuild/build4mac.py b/macbuild/build4mac.py index abd8d87e0..056fc29e2 100755 --- a/macbuild/build4mac.py +++ b/macbuild/build4mac.py @@ -1991,7 +1991,25 @@ def Deploy_Binaries_For_Bundle(config, parameters): cmd06 = "rm -rf %s" % binTarget cmd07 = "mkdir %s" % sitepackagesTarget - cmd08 = "cp -RL %s/{*distutils*,pip*,pkg_resources,setuptools*,wheel*} %s" % (sitepackagesSource, sitepackagesTarget) + # cmd08 = "cp -RL %s/{*distutils*,pip*,pkg_resources,setuptools*,wheel*} %s" % (sitepackagesSource, sitepackagesTarget) + # Updated for compatibility with modern Python environments (e.g., pip 26.0.1+). + # Since 'pkg_resources' and other legacy paths may be absent in recent setuptools, + # we use a loop to copy only available directories while suppressing errors. + # Define patterns for essential packages to be bundled + patterns = ['*distutils*', 'pip*', 'pkg_resources*', 'setuptools*', 'wheel*'] + sources = [] + + # Collect only existing paths to avoid "No such file or directory" errors, + # especially for 'pkg_resources' which is deprecated and often missing in Python 3.11+. + for p in patterns: + sources.extend(glob.glob(os.path.join(sitepackagesSource, p))) + + if sources: + # Join all existing paths into a single string for the 'cp' command + cmd08 = "cp -RL %s %s" % (" ".join(sources), sitepackagesTarget) + else: + # Fallback or log if no packages are found + cmd08 = "echo 'No matching site-packages found to copy; skipping.'" shell_commands = list() shell_commands.append(cmd01) From cc7f049799773ea4ea50ff121f63eed61175809c Mon Sep 17 00:00:00 2001 From: Matthias Koefferlein Date: Thu, 12 Feb 2026 23:05:08 +0100 Subject: [PATCH 003/212] Fixing the Qt binding definitions to include addItem and for better alignment of Qt API --- scripts/mkqtdecl4/mkqtdecl.conf | 5 +++++ scripts/mkqtdecl5/mkqtdecl.conf | 14 ++++++++----- scripts/mkqtdecl6/mkqtdecl.conf | 19 +++++++++++++----- src/gsiqt/qt4/QtCore/gsiDeclQMargins.cc | 4 ++-- src/gsiqt/qt4/QtCore/gsiDeclQPoint.cc | 14 ++++++------- src/gsiqt/qt4/QtCore/gsiDeclQPointF.cc | 14 ++++++------- src/gsiqt/qt4/QtCore/gsiDeclQRect.cc | 4 ++-- src/gsiqt/qt4/QtCore/gsiDeclQRectF.cc | 4 ++-- src/gsiqt/qt4/QtCore/gsiDeclQSize.cc | 12 +++++------ src/gsiqt/qt4/QtCore/gsiDeclQSizeF.cc | 12 +++++------ src/gsiqt/qt4/QtGui/gsiDeclQBoxLayout.cc | 1 + src/gsiqt/qt4/QtGui/gsiDeclQFormLayout.cc | 1 + src/gsiqt/qt4/QtGui/gsiDeclQMatrix4x4.cc | 20 +++++++++---------- src/gsiqt/qt4/QtGui/gsiDeclQPainterPath.cc | 4 ++-- src/gsiqt/qt4/QtGui/gsiDeclQPolygon.cc | 4 ++-- src/gsiqt/qt4/QtGui/gsiDeclQPolygonF.cc | 4 ++-- src/gsiqt/qt4/QtGui/gsiDeclQQuaternion.cc | 16 +++++++-------- src/gsiqt/qt4/QtGui/gsiDeclQRegion.cc | 4 ++-- src/gsiqt/qt4/QtGui/gsiDeclQStackedLayout.cc | 1 + src/gsiqt/qt4/QtGui/gsiDeclQTransform.cc | 8 ++++---- src/gsiqt/qt4/QtGui/gsiDeclQVector2D.cc | 16 +++++++-------- src/gsiqt/qt4/QtGui/gsiDeclQVector3D.cc | 18 ++++++++--------- src/gsiqt/qt4/QtGui/gsiDeclQVector4D.cc | 18 ++++++++--------- src/gsiqt/qt5/QtWidgets/gsiDeclQBoxLayout.cc | 1 + src/gsiqt/qt5/QtWidgets/gsiDeclQFormLayout.cc | 15 ++------------ src/gsiqt/qt5/QtWidgets/gsiDeclQLayout.cc | 2 +- .../qt5/QtWidgets/gsiDeclQStackedLayout.cc | 1 + src/gsiqt/qt6/QtWidgets/gsiDeclQBoxLayout.cc | 1 + src/gsiqt/qt6/QtWidgets/gsiDeclQFormLayout.cc | 13 +----------- src/gsiqt/qt6/QtWidgets/gsiDeclQLayout.cc | 2 +- .../qt6/QtWidgets/gsiDeclQStackedLayout.cc | 1 + 31 files changed, 128 insertions(+), 125 deletions(-) diff --git a/scripts/mkqtdecl4/mkqtdecl.conf b/scripts/mkqtdecl4/mkqtdecl.conf index 1ec4e045a..03db1cd68 100644 --- a/scripts/mkqtdecl4/mkqtdecl.conf +++ b/scripts/mkqtdecl4/mkqtdecl.conf @@ -641,18 +641,23 @@ rename "QKeySequence", /QKeySequence::QKeySequence\(QKeySequence::StandardKey/, # TODO: basically, the layout object only takes ownership over the objects when # it has a QWidget parent itself. This is not reflected in the following simple scheme keep_arg "QBoxLayout", /::addLayout/, 0 # will take ownership of layout +keep_arg "QBoxLayout", /::addItem/, 0 # will take ownership of item keep_arg "QBoxLayout", /::addSpacerItem/, 0 # will take ownership of item keep_arg "QBoxLayout", /::addWidget/, 0 # will take ownership of item keep_arg "QBoxLayout", /::insertItem/, 1 # will take ownership of item keep_arg "QBoxLayout", /::insertLayout/, 1 # will take ownership of item keep_arg "QBoxLayout", /::insertSpacerItem/, 1 # will take ownership of item keep_arg "QBoxLayout", /::insertWidget/, 1 # will take ownership of item +keep_arg "QHBoxLayout", /::addItem/, 0 # will take ownership of item +keep_arg "QVBoxLayout", /::addItem/, 0 # will take ownership of item keep_arg "QGridLayout", /::addLayout/, 0 # will take ownership of layout keep_arg "QGridLayout", /::addItem/, 0 # will take ownership of layout keep_arg "QGridLayout", /::addWidget/, 0 # will take ownership of layout +keep_arg "QFormLayout", /::addItem/, 0 # will take ownership of layout keep_arg "QLayout", /::addChildLayout/, 0 # will take ownership of layout keep_arg "QLayout", /::addItem/, 0 # will take ownership of item keep_arg "QLayout", /::addWidget/, 0 # will take ownership of item +keep_arg "QStackedLayout", /::addItem/, 0 # will take ownership of item keep_arg "QStackedLayout", /::addWidget/, 0 # will take ownership of item keep_arg "QStackedLayout", /::insertWidget/, 1 # will take ownership of item diff --git a/scripts/mkqtdecl5/mkqtdecl.conf b/scripts/mkqtdecl5/mkqtdecl.conf index 89cb28a7f..2384301bd 100644 --- a/scripts/mkqtdecl5/mkqtdecl.conf +++ b/scripts/mkqtdecl5/mkqtdecl.conf @@ -840,23 +840,23 @@ rename "QKeySequence", /QKeySequence::QKeySequence\(QKeySequence::StandardKey/, # TODO: basically, the layout object only takes ownership over the objects when # it has a QWidget parent itself. This is not reflected in the following simple scheme keep_arg "QBoxLayout", /::addLayout/, 0 # will take ownership of layout +keep_arg "QBoxLayout", /::addItem/, 0 # will take ownership of item keep_arg "QBoxLayout", /::addSpacerItem/, 0 # will take ownership of item keep_arg "QBoxLayout", /::addWidget/, 0 # will take ownership of item keep_arg "QBoxLayout", /::insertItem/, 1 # will take ownership of item keep_arg "QBoxLayout", /::insertLayout/, 1 # will take ownership of item keep_arg "QBoxLayout", /::insertSpacerItem/, 1 # will take ownership of item keep_arg "QBoxLayout", /::insertWidget/, 1 # will take ownership of item -keep_arg "QFormLayout", /::addRow/, 1 # will take ownership of item -keep_arg "QFormLayout", /::addRow\(QWidget\s*\*/, 0 # will take ownership of item -keep_arg "QFormLayout", /::insertRow/, 2 # will take ownership of item -keep_arg "QFormLayout", /::insertRow\(QWidget\s*\*/, 1 # will take ownership of item -keep_arg "QFormLayout", /::setWidget/, 2 # will take ownership of item +keep_arg "QHBoxLayout", /::addItem/, 0 # will take ownership of item +keep_arg "QVBoxLayout", /::addItem/, 0 # will take ownership of item keep_arg "QGridLayout", /::addLayout/, 0 # will take ownership of layout keep_arg "QGridLayout", /::addItem/, 0 # will take ownership of layout keep_arg "QGridLayout", /::addWidget/, 0 # will take ownership of layout +keep_arg "QFormLayout", /::addItem/, 0 # will take ownership of layout keep_arg "QLayout", /::addChildLayout/, 0 # will take ownership of layout keep_arg "QLayout", /::addItem/, 0 # will take ownership of item keep_arg "QLayout", /::addWidget/, 0 # will take ownership of item +keep_arg "QStackedLayout", /::addItem/, 0 # will take ownership of item keep_arg "QStackedLayout", /::addWidget/, 0 # will take ownership of item keep_arg "QStackedLayout", /::insertWidget/, 1 # will take ownership of item @@ -886,9 +886,13 @@ owner_arg "QWidget", /::setParent\(QWidget\s+\*/, 0 # will make self owned by ar # over ownership of it? # keep_arg "QTableWidget", /::setItemPrototype\(/, 0 # will take ownership of the child return_new "QLayout", /::takeAt/ # returns a free object +return_new "QLayout", /::replaceWidget/ # returns a free object return_new "QBoxLayout", /::takeAt/ # returns a free object +return_new "QHBoxLayout", /::takeAt/ # returns a free object +return_new "QVBoxLayout", /::takeAt/ # returns a free object # TODO: QFormLayout: takeRow -> needs QFormLayout::TakeRowResult return_new "QGridLayout", /::takeAt/ # returns a free object +return_new "QFormLayout", /::takeAt/ # returns a free object return_new "QStackedLayout", /::takeAt/ # returns a free object return_new "QStandardItem", /::take/ # returns a free object return_new "QStandardItemModel", /::take/ # returns a free object diff --git a/scripts/mkqtdecl6/mkqtdecl.conf b/scripts/mkqtdecl6/mkqtdecl.conf index 4b7c15fa5..0889db022 100644 --- a/scripts/mkqtdecl6/mkqtdecl.conf +++ b/scripts/mkqtdecl6/mkqtdecl.conf @@ -1162,23 +1162,23 @@ rename "QKeySequence", /QKeySequence::QKeySequence\(QKeySequence::StandardKey/, # TODO: basically, the layout object only takes ownership over the objects when # it has a QWidget parent itself. This is not reflected in the following simple scheme keep_arg "QBoxLayout", /::addLayout/, 0 # will take ownership of layout +keep_arg "QBoxLayout", /::addItem/, 0 # will take ownership of item keep_arg "QBoxLayout", /::addSpacerItem/, 0 # will take ownership of item keep_arg "QBoxLayout", /::addWidget/, 0 # will take ownership of item keep_arg "QBoxLayout", /::insertItem/, 1 # will take ownership of item keep_arg "QBoxLayout", /::insertLayout/, 1 # will take ownership of item keep_arg "QBoxLayout", /::insertSpacerItem/, 1 # will take ownership of item keep_arg "QBoxLayout", /::insertWidget/, 1 # will take ownership of item -keep_arg "QFormLayout", /::addRow/, 1 # will take ownership of item -keep_arg "QFormLayout", /::addRow\(QWidget\s*\*/, 0 # will take ownership of item -keep_arg "QFormLayout", /::insertRow/, 2 # will take ownership of item -keep_arg "QFormLayout", /::insertRow\(QWidget\s*\*/, 1 # will take ownership of item -keep_arg "QFormLayout", /::setWidget/, 2 # will take ownership of item +keep_arg "QHBoxLayout", /::addItem/, 0 # will take ownership of item +keep_arg "QVBoxLayout", /::addItem/, 0 # will take ownership of item keep_arg "QGridLayout", /::addLayout/, 0 # will take ownership of layout keep_arg "QGridLayout", /::addItem/, 0 # will take ownership of layout keep_arg "QGridLayout", /::addWidget/, 0 # will take ownership of layout +keep_arg "QFormLayout", /::addItem/, 0 # will take ownership of layout keep_arg "QLayout", /::addChildLayout/, 0 # will take ownership of layout keep_arg "QLayout", /::addItem/, 0 # will take ownership of item keep_arg "QLayout", /::addWidget/, 0 # will take ownership of item +keep_arg "QStackedLayout", /::addItem/, 0 # will take ownership of item keep_arg "QStackedLayout", /::addWidget/, 0 # will take ownership of item keep_arg "QStackedLayout", /::insertWidget/, 1 # will take ownership of item @@ -1208,11 +1208,20 @@ owner_arg "QWidget", /::setParent\(QWidget\s+\*/, 0 # will make self owned by ar # over ownership of it? # keep_arg "QTableWidget", /::setItemPrototype\(/, 0 # will take ownership of the child return_new "QLayout", /::takeAt/ # returns a free object +return_new "QLayout", /::replaceWidget/ # returns a free object return_new "QBoxLayout", /::takeAt/ # returns a free object +return_new "QBoxLayout", /::replaceWidget/ # returns a free object +return_new "QHBoxLayout", /::takeAt/ # returns a free object +return_new "QHBoxLayout", /::replaceWidget/ # returns a free object +return_new "QVBoxLayout", /::takeAt/ # returns a free object +return_new "QVBoxLayout", /::replaceWidget/ # returns a free object return_new "QFormLayout", /::takeAt/ # returns a free object +return_new "QFormLayout", /::replaceWidget/ # returns a free object return_new "QGridLayout", /::takeAt/ # returns a free object +return_new "QGridLayout", /::replaceWidget/ # returns a free object # TODO: QFormLayout: takeRow -> needs QFormLayout::TakeRowResult return_new "QStackedLayout", /::takeAt/ # returns a free object +return_new "QStackedLayout", /::replaceWidget/ # returns a free object return_new "QStandardItem", /::take/ # returns a free object return_new "QStandardItemModel", /::take/ # returns a free object return_new "QTreeWidgetItem", /::take/ # returns a free object diff --git a/src/gsiqt/qt4/QtCore/gsiDeclQMargins.cc b/src/gsiqt/qt4/QtCore/gsiDeclQMargins.cc index 94be87572..d6be7a8a1 100644 --- a/src/gsiqt/qt4/QtCore/gsiDeclQMargins.cc +++ b/src/gsiqt/qt4/QtCore/gsiDeclQMargins.cc @@ -235,12 +235,12 @@ static void _call_f_top_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, g // bool ::operator==(const QMargins &m1, const QMargins &m2) static bool op_QMargins_operator_eq__eq__4122(const QMargins *_self, const QMargins &m2) { - return ::operator==(*_self, m2); + return operator==(*_self, m2); } // bool ::operator!=(const QMargins &m1, const QMargins &m2) static bool op_QMargins_operator_excl__eq__4122(const QMargins *_self, const QMargins &m2) { - return ::operator!=(*_self, m2); + return operator!=(*_self, m2); } diff --git a/src/gsiqt/qt4/QtCore/gsiDeclQPoint.cc b/src/gsiqt/qt4/QtCore/gsiDeclQPoint.cc index 189e92d74..33acab63e 100644 --- a/src/gsiqt/qt4/QtCore/gsiDeclQPoint.cc +++ b/src/gsiqt/qt4/QtCore/gsiDeclQPoint.cc @@ -282,37 +282,37 @@ static void _call_f_y_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi // bool ::operator==(const QPoint &p1, const QPoint &p2) static bool op_QPoint_operator_eq__eq__3724(const QPoint *_self, const QPoint &p2) { - return ::operator==(*_self, p2); + return operator==(*_self, p2); } // bool ::operator!=(const QPoint &p1, const QPoint &p2) static bool op_QPoint_operator_excl__eq__3724(const QPoint *_self, const QPoint &p2) { - return ::operator!=(*_self, p2); + return operator!=(*_self, p2); } // const QPoint ::operator+(const QPoint &p1, const QPoint &p2) static const QPoint op_QPoint_operator_plus__3724(const QPoint *_self, const QPoint &p2) { - return ::operator+(*_self, p2); + return operator+(*_self, p2); } // const QPoint ::operator-(const QPoint &p1, const QPoint &p2) static const QPoint op_QPoint_operator_minus__3724(const QPoint *_self, const QPoint &p2) { - return ::operator-(*_self, p2); + return operator-(*_self, p2); } // const QPoint ::operator*(const QPoint &p, qreal c) static const QPoint op_QPoint_operator_star__2777(const QPoint *_self, qreal c) { - return ::operator*(*_self, c); + return operator*(*_self, c); } // const QPoint ::operator-(const QPoint &p) static const QPoint op_QPoint_operator_minus__1916(const QPoint *_self) { - return ::operator-(*_self); + return operator-(*_self); } // const QPoint ::operator/(const QPoint &p, qreal c) static const QPoint op_QPoint_operator_slash__2777(const QPoint *_self, qreal c) { - return ::operator/(*_self, c); + return operator/(*_self, c); } diff --git a/src/gsiqt/qt4/QtCore/gsiDeclQPointF.cc b/src/gsiqt/qt4/QtCore/gsiDeclQPointF.cc index 2e707d285..3c81fe6a9 100644 --- a/src/gsiqt/qt4/QtCore/gsiDeclQPointF.cc +++ b/src/gsiqt/qt4/QtCore/gsiDeclQPointF.cc @@ -316,37 +316,37 @@ static void _call_f_y_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi // bool ::operator==(const QPointF &p1, const QPointF &p2) static bool op_QPointF_operator_eq__eq__3864(const QPointF *_self, const QPointF &p2) { - return ::operator==(*_self, p2); + return operator==(*_self, p2); } // bool ::operator!=(const QPointF &p1, const QPointF &p2) static bool op_QPointF_operator_excl__eq__3864(const QPointF *_self, const QPointF &p2) { - return ::operator!=(*_self, p2); + return operator!=(*_self, p2); } // const QPointF ::operator+(const QPointF &p1, const QPointF &p2) static const QPointF op_QPointF_operator_plus__3864(const QPointF *_self, const QPointF &p2) { - return ::operator+(*_self, p2); + return operator+(*_self, p2); } // const QPointF ::operator-(const QPointF &p1, const QPointF &p2) static const QPointF op_QPointF_operator_minus__3864(const QPointF *_self, const QPointF &p2) { - return ::operator-(*_self, p2); + return operator-(*_self, p2); } // const QPointF ::operator*(const QPointF &p, qreal c) static const QPointF op_QPointF_operator_star__2847(const QPointF *_self, qreal c) { - return ::operator*(*_self, c); + return operator*(*_self, c); } // const QPointF ::operator-(const QPointF &p) static const QPointF op_QPointF_operator_minus__1986(const QPointF *_self) { - return ::operator-(*_self); + return operator-(*_self); } // const QPointF ::operator/(const QPointF &p, qreal c) static const QPointF op_QPointF_operator_slash__2847(const QPointF *_self, qreal c) { - return ::operator/(*_self, c); + return operator/(*_self, c); } diff --git a/src/gsiqt/qt4/QtCore/gsiDeclQRect.cc b/src/gsiqt/qt4/QtCore/gsiDeclQRect.cc index 4912c837d..79dd4bef5 100644 --- a/src/gsiqt/qt4/QtCore/gsiDeclQRect.cc +++ b/src/gsiqt/qt4/QtCore/gsiDeclQRect.cc @@ -1398,12 +1398,12 @@ static void _call_f_y_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi // bool ::operator==(const QRect &, const QRect &) static bool op_QRect_operator_eq__eq__3476(const QRect *_self, const QRect &arg2) { - return ::operator==(*_self, arg2); + return operator==(*_self, arg2); } // bool ::operator!=(const QRect &, const QRect &) static bool op_QRect_operator_excl__eq__3476(const QRect *_self, const QRect &arg2) { - return ::operator!=(*_self, arg2); + return operator!=(*_self, arg2); } diff --git a/src/gsiqt/qt4/QtCore/gsiDeclQRectF.cc b/src/gsiqt/qt4/QtCore/gsiDeclQRectF.cc index d65dac4ee..231cb36fd 100644 --- a/src/gsiqt/qt4/QtCore/gsiDeclQRectF.cc +++ b/src/gsiqt/qt4/QtCore/gsiDeclQRectF.cc @@ -1417,12 +1417,12 @@ static void _call_f_y_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi // bool ::operator==(const QRectF &, const QRectF &) static bool op_QRectF_operator_eq__eq__3616(const QRectF *_self, const QRectF &arg2) { - return ::operator==(*_self, arg2); + return operator==(*_self, arg2); } // bool ::operator!=(const QRectF &, const QRectF &) static bool op_QRectF_operator_excl__eq__3616(const QRectF *_self, const QRectF &arg2) { - return ::operator!=(*_self, arg2); + return operator!=(*_self, arg2); } diff --git a/src/gsiqt/qt4/QtCore/gsiDeclQSize.cc b/src/gsiqt/qt4/QtCore/gsiDeclQSize.cc index 2e590af5d..c95c007d8 100644 --- a/src/gsiqt/qt4/QtCore/gsiDeclQSize.cc +++ b/src/gsiqt/qt4/QtCore/gsiDeclQSize.cc @@ -398,32 +398,32 @@ static void _call_f_width_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, // bool ::operator==(const QSize &s1, const QSize &s2) static bool op_QSize_operator_eq__eq__3502(const QSize *_self, const QSize &s2) { - return ::operator==(*_self, s2); + return operator==(*_self, s2); } // bool ::operator!=(const QSize &s1, const QSize &s2) static bool op_QSize_operator_excl__eq__3502(const QSize *_self, const QSize &s2) { - return ::operator!=(*_self, s2); + return operator!=(*_self, s2); } // const QSize ::operator+(const QSize &s1, const QSize &s2) static const QSize op_QSize_operator_plus__3502(const QSize *_self, const QSize &s2) { - return ::operator+(*_self, s2); + return operator+(*_self, s2); } // const QSize ::operator-(const QSize &s1, const QSize &s2) static const QSize op_QSize_operator_minus__3502(const QSize *_self, const QSize &s2) { - return ::operator-(*_self, s2); + return operator-(*_self, s2); } // const QSize ::operator*(const QSize &s, qreal c) static const QSize op_QSize_operator_star__2666(const QSize *_self, qreal c) { - return ::operator*(*_self, c); + return operator*(*_self, c); } // const QSize ::operator/(const QSize &s, qreal c) static const QSize op_QSize_operator_slash__2666(const QSize *_self, qreal c) { - return ::operator/(*_self, c); + return operator/(*_self, c); } diff --git a/src/gsiqt/qt4/QtCore/gsiDeclQSizeF.cc b/src/gsiqt/qt4/QtCore/gsiDeclQSizeF.cc index b2d9f4982..84c41177c 100644 --- a/src/gsiqt/qt4/QtCore/gsiDeclQSizeF.cc +++ b/src/gsiqt/qt4/QtCore/gsiDeclQSizeF.cc @@ -433,32 +433,32 @@ static void _call_f_width_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, // bool ::operator==(const QSizeF &s1, const QSizeF &s2) static bool op_QSizeF_operator_eq__eq__3642(const QSizeF *_self, const QSizeF &s2) { - return ::operator==(*_self, s2); + return operator==(*_self, s2); } // bool ::operator!=(const QSizeF &s1, const QSizeF &s2) static bool op_QSizeF_operator_excl__eq__3642(const QSizeF *_self, const QSizeF &s2) { - return ::operator!=(*_self, s2); + return operator!=(*_self, s2); } // const QSizeF ::operator+(const QSizeF &s1, const QSizeF &s2) static const QSizeF op_QSizeF_operator_plus__3642(const QSizeF *_self, const QSizeF &s2) { - return ::operator+(*_self, s2); + return operator+(*_self, s2); } // const QSizeF ::operator-(const QSizeF &s1, const QSizeF &s2) static const QSizeF op_QSizeF_operator_minus__3642(const QSizeF *_self, const QSizeF &s2) { - return ::operator-(*_self, s2); + return operator-(*_self, s2); } // const QSizeF ::operator*(const QSizeF &s, qreal c) static const QSizeF op_QSizeF_operator_star__2736(const QSizeF *_self, qreal c) { - return ::operator*(*_self, c); + return operator*(*_self, c); } // const QSizeF ::operator/(const QSizeF &s, qreal c) static const QSizeF op_QSizeF_operator_slash__2736(const QSizeF *_self, qreal c) { - return ::operator/(*_self, c); + return operator/(*_self, c); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQBoxLayout.cc b/src/gsiqt/qt4/QtGui/gsiDeclQBoxLayout.cc index fd05aa52e..4dcc9dd2b 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQBoxLayout.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQBoxLayout.cc @@ -75,6 +75,7 @@ static void _call_f_addItem_1740 (const qt_gsi::GenericMethod * /*decl*/, void * __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; QLayoutItem *arg1 = gsi::arg_reader() (args, heap); + qt_gsi::qt_keep (arg1); __SUPPRESS_UNUSED_WARNING(ret); ((QBoxLayout *)cls)->addItem (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQFormLayout.cc b/src/gsiqt/qt4/QtGui/gsiDeclQFormLayout.cc index 74331ebe0..afe1b8c62 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQFormLayout.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQFormLayout.cc @@ -75,6 +75,7 @@ static void _call_f_addItem_1740 (const qt_gsi::GenericMethod * /*decl*/, void * __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; QLayoutItem *arg1 = gsi::arg_reader() (args, heap); + qt_gsi::qt_keep (arg1); __SUPPRESS_UNUSED_WARNING(ret); ((QFormLayout *)cls)->addItem (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQMatrix4x4.cc b/src/gsiqt/qt4/QtGui/gsiDeclQMatrix4x4.cc index 3b780ab3f..fb309ecfd 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQMatrix4x4.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQMatrix4x4.cc @@ -1242,52 +1242,52 @@ static void _call_f_transposed_c0 (const qt_gsi::GenericMethod * /*decl*/, void // QMatrix4x4 ::operator/(const QMatrix4x4 &matrix, qreal divisor) static QMatrix4x4 op_QMatrix4x4_operator_slash__3108(const QMatrix4x4 *_self, qreal divisor) { - return ::operator/(*_self, divisor); + return operator/(*_self, divisor); } // QMatrix4x4 ::operator+(const QMatrix4x4 &m1, const QMatrix4x4 &m2) static QMatrix4x4 op_QMatrix4x4_operator_plus__4386(const QMatrix4x4 *_self, const QMatrix4x4 &m2) { - return ::operator+(*_self, m2); + return operator+(*_self, m2); } // QMatrix4x4 ::operator-(const QMatrix4x4 &m1, const QMatrix4x4 &m2) static QMatrix4x4 op_QMatrix4x4_operator_minus__4386(const QMatrix4x4 *_self, const QMatrix4x4 &m2) { - return ::operator-(*_self, m2); + return operator-(*_self, m2); } // QMatrix4x4 ::operator*(const QMatrix4x4 &m1, const QMatrix4x4 &m2) static QMatrix4x4 op_QMatrix4x4_operator_star__4386(const QMatrix4x4 *_self, const QMatrix4x4 &m2) { - return ::operator*(*_self, m2); + return operator*(*_self, m2); } // QVector3D ::operator*(const QMatrix4x4 &matrix, const QVector3D &vector) static QVector3D op_QMatrix4x4_operator_star__4279(const QMatrix4x4 *_self, const QVector3D &vector) { - return ::operator*(*_self, vector); + return operator*(*_self, vector); } // QVector4D ::operator*(const QMatrix4x4 &matrix, const QVector4D &vector) static QVector4D op_QMatrix4x4_operator_star__4280(const QMatrix4x4 *_self, const QVector4D &vector) { - return ::operator*(*_self, vector); + return operator*(*_self, vector); } // QPoint ::operator*(const QMatrix4x4 &matrix, const QPoint &point) static QPoint op_QMatrix4x4_operator_star__4055(const QMatrix4x4 *_self, const QPoint &point) { - return ::operator*(*_self, point); + return operator*(*_self, point); } // QPointF ::operator*(const QMatrix4x4 &matrix, const QPointF &point) static QPointF op_QMatrix4x4_operator_star__4125(const QMatrix4x4 *_self, const QPointF &point) { - return ::operator*(*_self, point); + return operator*(*_self, point); } // QMatrix4x4 ::operator-(const QMatrix4x4 &matrix) static QMatrix4x4 op_QMatrix4x4_operator_minus__2247(const QMatrix4x4 *_self) { - return ::operator-(*_self); + return operator-(*_self); } // QMatrix4x4 ::operator*(const QMatrix4x4 &matrix, qreal factor) static QMatrix4x4 op_QMatrix4x4_operator_star__3108(const QMatrix4x4 *_self, qreal factor) { - return ::operator*(*_self, factor); + return operator*(*_self, factor); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQPainterPath.cc b/src/gsiqt/qt4/QtGui/gsiDeclQPainterPath.cc index d72f4b735..eab7628c6 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQPainterPath.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQPainterPath.cc @@ -1724,12 +1724,12 @@ static void _call_f_united_c2514 (const qt_gsi::GenericMethod * /*decl*/, void * // QPainterPath ::operator *(const QPainterPath &p, const QMatrix &m) static QPainterPath op_QPainterPath_operator_star__4429(const QPainterPath *_self, const QMatrix &m) { - return ::operator *(*_self, m); + return operator *(*_self, m); } // QPainterPath ::operator *(const QPainterPath &p, const QTransform &m) static QPainterPath op_QPainterPath_operator_star__4756(const QPainterPath *_self, const QTransform &m) { - return ::operator *(*_self, m); + return operator *(*_self, m); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQPolygon.cc b/src/gsiqt/qt4/QtGui/gsiDeclQPolygon.cc index 6a47cc26a..bedc9ff67 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQPolygon.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQPolygon.cc @@ -595,12 +595,12 @@ static void _call_f_united_c2138 (const qt_gsi::GenericMethod * /*decl*/, void * // QPolygon ::operator *(const QPolygon &a, const QMatrix &m) static QPolygon op_QPolygon_operator_star__4053(const QPolygon *_self, const QMatrix &m) { - return ::operator *(*_self, m); + return operator *(*_self, m); } // QPolygon ::operator *(const QPolygon &a, const QTransform &m) static QPolygon op_QPolygon_operator_star__4380(const QPolygon *_self, const QTransform &m) { - return ::operator *(*_self, m); + return operator *(*_self, m); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQPolygonF.cc b/src/gsiqt/qt4/QtGui/gsiDeclQPolygonF.cc index 9748f9d17..d563d3fb1 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQPolygonF.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQPolygonF.cc @@ -463,12 +463,12 @@ static void _call_f_united_c2208 (const qt_gsi::GenericMethod * /*decl*/, void * // QPolygonF ::operator *(const QPolygonF &a, const QMatrix &m) static QPolygonF op_QPolygonF_operator_star__4123(const QPolygonF *_self, const QMatrix &m) { - return ::operator *(*_self, m); + return operator *(*_self, m); } // QPolygonF ::operator *(const QPolygonF &a, const QTransform &m) static QPolygonF op_QPolygonF_operator_star__4450(const QPolygonF *_self, const QTransform &m) { - return ::operator *(*_self, m); + return operator *(*_self, m); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQQuaternion.cc b/src/gsiqt/qt4/QtGui/gsiDeclQQuaternion.cc index 19ff349a7..a2981b54c 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQQuaternion.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQQuaternion.cc @@ -659,42 +659,42 @@ static void _call_f_slerp_5767 (const qt_gsi::GenericStaticMethod * /*decl*/, gs // const QQuaternion ::operator*(const QQuaternion &q1, const QQuaternion &q2) static const QQuaternion op_QQuaternion_operator_star__4804(const QQuaternion *_self, const QQuaternion &q2) { - return ::operator*(*_self, q2); + return operator*(*_self, q2); } // bool ::operator==(const QQuaternion &q1, const QQuaternion &q2) static bool op_QQuaternion_operator_eq__eq__4804(const QQuaternion *_self, const QQuaternion &q2) { - return ::operator==(*_self, q2); + return operator==(*_self, q2); } // bool ::operator!=(const QQuaternion &q1, const QQuaternion &q2) static bool op_QQuaternion_operator_excl__eq__4804(const QQuaternion *_self, const QQuaternion &q2) { - return ::operator!=(*_self, q2); + return operator!=(*_self, q2); } // const QQuaternion ::operator+(const QQuaternion &q1, const QQuaternion &q2) static const QQuaternion op_QQuaternion_operator_plus__4804(const QQuaternion *_self, const QQuaternion &q2) { - return ::operator+(*_self, q2); + return operator+(*_self, q2); } // const QQuaternion ::operator-(const QQuaternion &q1, const QQuaternion &q2) static const QQuaternion op_QQuaternion_operator_minus__4804(const QQuaternion *_self, const QQuaternion &q2) { - return ::operator-(*_self, q2); + return operator-(*_self, q2); } // const QQuaternion ::operator*(const QQuaternion &quaternion, qreal factor) static const QQuaternion op_QQuaternion_operator_star__3317(const QQuaternion *_self, qreal factor) { - return ::operator*(*_self, factor); + return operator*(*_self, factor); } // const QQuaternion ::operator-(const QQuaternion &quaternion) static const QQuaternion op_QQuaternion_operator_minus__2456(const QQuaternion *_self) { - return ::operator-(*_self); + return operator-(*_self); } // const QQuaternion ::operator/(const QQuaternion &quaternion, qreal divisor) static const QQuaternion op_QQuaternion_operator_slash__3317(const QQuaternion *_self, qreal divisor) { - return ::operator/(*_self, divisor); + return operator/(*_self, divisor); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQRegion.cc b/src/gsiqt/qt4/QtGui/gsiDeclQRegion.cc index 09feed52a..cd821e101 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQRegion.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQRegion.cc @@ -961,12 +961,12 @@ static void _call_f_xored_c2006 (const qt_gsi::GenericMethod * /*decl*/, void *c // QRegion ::operator *(const QRegion &r, const QMatrix &m) static QRegion op_QRegion_operator_star__3921(const QRegion *_self, const QMatrix &m) { - return ::operator *(*_self, m); + return operator *(*_self, m); } // QRegion ::operator *(const QRegion &r, const QTransform &m) static QRegion op_QRegion_operator_star__4248(const QRegion *_self, const QTransform &m) { - return ::operator *(*_self, m); + return operator *(*_self, m); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQStackedLayout.cc b/src/gsiqt/qt4/QtGui/gsiDeclQStackedLayout.cc index 7c3b85eed..e017cb7e3 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQStackedLayout.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQStackedLayout.cc @@ -75,6 +75,7 @@ static void _call_f_addItem_1740 (const qt_gsi::GenericMethod * /*decl*/, void * __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; QLayoutItem *arg1 = gsi::arg_reader() (args, heap); + qt_gsi::qt_keep (arg1); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedLayout *)cls)->addItem (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQTransform.cc b/src/gsiqt/qt4/QtGui/gsiDeclQTransform.cc index 1600fc429..6dce8e424 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQTransform.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQTransform.cc @@ -1263,22 +1263,22 @@ static void _call_f_squareToQuad_3755 (const qt_gsi::GenericStaticMethod * /*dec // QTransform ::operator *(const QTransform &a, qreal n) static QTransform op_QTransform_operator_star__3211(const QTransform *_self, qreal n) { - return ::operator *(*_self, n); + return operator *(*_self, n); } // QTransform ::operator /(const QTransform &a, qreal n) static QTransform op_QTransform_operator_slash__3211(const QTransform *_self, qreal n) { - return ::operator /(*_self, n); + return operator /(*_self, n); } // QTransform ::operator +(const QTransform &a, qreal n) static QTransform op_QTransform_operator_plus__3211(const QTransform *_self, qreal n) { - return ::operator +(*_self, n); + return operator +(*_self, n); } // QTransform ::operator -(const QTransform &a, qreal n) static QTransform op_QTransform_operator_minus__3211(const QTransform *_self, qreal n) { - return ::operator -(*_self, n); + return operator -(*_self, n); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQVector2D.cc b/src/gsiqt/qt4/QtGui/gsiDeclQVector2D.cc index 1b2a5c8ef..8e33b2ff2 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQVector2D.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQVector2D.cc @@ -477,42 +477,42 @@ static void _call_f_dotProduct_4170 (const qt_gsi::GenericStaticMethod * /*decl* // bool ::operator==(const QVector2D &v1, const QVector2D &v2) static bool op_QVector2D_operator_eq__eq__4170(const QVector2D *_self, const QVector2D &v2) { - return ::operator==(*_self, v2); + return operator==(*_self, v2); } // bool ::operator!=(const QVector2D &v1, const QVector2D &v2) static bool op_QVector2D_operator_excl__eq__4170(const QVector2D *_self, const QVector2D &v2) { - return ::operator!=(*_self, v2); + return operator!=(*_self, v2); } // const QVector2D ::operator+(const QVector2D &v1, const QVector2D &v2) static const QVector2D op_QVector2D_operator_plus__4170(const QVector2D *_self, const QVector2D &v2) { - return ::operator+(*_self, v2); + return operator+(*_self, v2); } // const QVector2D ::operator-(const QVector2D &v1, const QVector2D &v2) static const QVector2D op_QVector2D_operator_minus__4170(const QVector2D *_self, const QVector2D &v2) { - return ::operator-(*_self, v2); + return operator-(*_self, v2); } // const QVector2D ::operator*(const QVector2D &vector, qreal factor) static const QVector2D op_QVector2D_operator_star__3000(const QVector2D *_self, qreal factor) { - return ::operator*(*_self, factor); + return operator*(*_self, factor); } // const QVector2D ::operator*(const QVector2D &v1, const QVector2D &v2) static const QVector2D op_QVector2D_operator_star__4170(const QVector2D *_self, const QVector2D &v2) { - return ::operator*(*_self, v2); + return operator*(*_self, v2); } // const QVector2D ::operator-(const QVector2D &vector) static const QVector2D op_QVector2D_operator_minus__2139(const QVector2D *_self) { - return ::operator-(*_self); + return operator-(*_self); } // const QVector2D ::operator/(const QVector2D &vector, qreal divisor) static const QVector2D op_QVector2D_operator_slash__3000(const QVector2D *_self, qreal divisor) { - return ::operator/(*_self, divisor); + return operator/(*_self, divisor); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQVector3D.cc b/src/gsiqt/qt4/QtGui/gsiDeclQVector3D.cc index 231ddf273..992864e24 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQVector3D.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQVector3D.cc @@ -673,47 +673,47 @@ static void _call_f_normal_6204 (const qt_gsi::GenericStaticMethod * /*decl*/, g // bool ::operator==(const QVector3D &v1, const QVector3D &v2) static bool op_QVector3D_operator_eq__eq__4172(const QVector3D *_self, const QVector3D &v2) { - return ::operator==(*_self, v2); + return operator==(*_self, v2); } // bool ::operator!=(const QVector3D &v1, const QVector3D &v2) static bool op_QVector3D_operator_excl__eq__4172(const QVector3D *_self, const QVector3D &v2) { - return ::operator!=(*_self, v2); + return operator!=(*_self, v2); } // const QVector3D ::operator+(const QVector3D &v1, const QVector3D &v2) static const QVector3D op_QVector3D_operator_plus__4172(const QVector3D *_self, const QVector3D &v2) { - return ::operator+(*_self, v2); + return operator+(*_self, v2); } // const QVector3D ::operator-(const QVector3D &v1, const QVector3D &v2) static const QVector3D op_QVector3D_operator_minus__4172(const QVector3D *_self, const QVector3D &v2) { - return ::operator-(*_self, v2); + return operator-(*_self, v2); } // const QVector3D ::operator*(const QVector3D &vector, qreal factor) static const QVector3D op_QVector3D_operator_star__3001(const QVector3D *_self, qreal factor) { - return ::operator*(*_self, factor); + return operator*(*_self, factor); } // const QVector3D ::operator*(const QVector3D &v1, const QVector3D &v2) static const QVector3D op_QVector3D_operator_star__4172(const QVector3D *_self, const QVector3D &v2) { - return ::operator*(*_self, v2); + return operator*(*_self, v2); } // const QVector3D ::operator-(const QVector3D &vector) static const QVector3D op_QVector3D_operator_minus__2140(const QVector3D *_self) { - return ::operator-(*_self); + return operator-(*_self); } // const QVector3D ::operator/(const QVector3D &vector, qreal divisor) static const QVector3D op_QVector3D_operator_slash__3001(const QVector3D *_self, qreal divisor) { - return ::operator/(*_self, divisor); + return operator/(*_self, divisor); } // QVector3D ::operator*(const QVector3D &vector, const QMatrix4x4 &matrix) static QVector3D op_QVector3D_operator_star__4279u1(const QVector3D *_self, const QMatrix4x4 &matrix) { - return ::operator*(*_self, matrix); + return operator*(*_self, matrix); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQVector4D.cc b/src/gsiqt/qt4/QtGui/gsiDeclQVector4D.cc index 24aba6cac..c23326b58 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQVector4D.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQVector4D.cc @@ -628,47 +628,47 @@ static void _call_f_dotProduct_4174 (const qt_gsi::GenericStaticMethod * /*decl* // bool ::operator==(const QVector4D &v1, const QVector4D &v2) static bool op_QVector4D_operator_eq__eq__4174(const QVector4D *_self, const QVector4D &v2) { - return ::operator==(*_self, v2); + return operator==(*_self, v2); } // bool ::operator!=(const QVector4D &v1, const QVector4D &v2) static bool op_QVector4D_operator_excl__eq__4174(const QVector4D *_self, const QVector4D &v2) { - return ::operator!=(*_self, v2); + return operator!=(*_self, v2); } // const QVector4D ::operator+(const QVector4D &v1, const QVector4D &v2) static const QVector4D op_QVector4D_operator_plus__4174(const QVector4D *_self, const QVector4D &v2) { - return ::operator+(*_self, v2); + return operator+(*_self, v2); } // const QVector4D ::operator-(const QVector4D &v1, const QVector4D &v2) static const QVector4D op_QVector4D_operator_minus__4174(const QVector4D *_self, const QVector4D &v2) { - return ::operator-(*_self, v2); + return operator-(*_self, v2); } // const QVector4D ::operator*(const QVector4D &vector, qreal factor) static const QVector4D op_QVector4D_operator_star__3002(const QVector4D *_self, qreal factor) { - return ::operator*(*_self, factor); + return operator*(*_self, factor); } // const QVector4D ::operator*(const QVector4D &v1, const QVector4D &v2) static const QVector4D op_QVector4D_operator_star__4174(const QVector4D *_self, const QVector4D &v2) { - return ::operator*(*_self, v2); + return operator*(*_self, v2); } // const QVector4D ::operator-(const QVector4D &vector) static const QVector4D op_QVector4D_operator_minus__2141(const QVector4D *_self) { - return ::operator-(*_self); + return operator-(*_self); } // const QVector4D ::operator/(const QVector4D &vector, qreal divisor) static const QVector4D op_QVector4D_operator_slash__3002(const QVector4D *_self, qreal divisor) { - return ::operator/(*_self, divisor); + return operator/(*_self, divisor); } // QVector4D ::operator*(const QVector4D &vector, const QMatrix4x4 &matrix) static QVector4D op_QVector4D_operator_star__4280u1(const QVector4D *_self, const QMatrix4x4 &matrix) { - return ::operator*(*_self, matrix); + return operator*(*_self, matrix); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQBoxLayout.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQBoxLayout.cc index 79e7b43d1..bf8f2c5dc 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQBoxLayout.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQBoxLayout.cc @@ -76,6 +76,7 @@ static void _call_f_addItem_1740 (const qt_gsi::GenericMethod * /*decl*/, void * __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; QLayoutItem *arg1 = gsi::arg_reader() (args, heap); + qt_gsi::qt_keep (arg1); __SUPPRESS_UNUSED_WARNING(ret); ((QBoxLayout *)cls)->addItem (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQFormLayout.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQFormLayout.cc index 7ea6ce9ad..5742e526c 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQFormLayout.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQFormLayout.cc @@ -76,6 +76,7 @@ static void _call_f_addItem_1740 (const qt_gsi::GenericMethod * /*decl*/, void * __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; QLayoutItem *arg1 = gsi::arg_reader() (args, heap); + qt_gsi::qt_keep (arg1); __SUPPRESS_UNUSED_WARNING(ret); ((QFormLayout *)cls)->addItem (arg1); } @@ -98,9 +99,7 @@ static void _call_f_addRow_2522 (const qt_gsi::GenericMethod * /*decl*/, void *c __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; QWidget *arg1 = gsi::arg_reader() (args, heap); - qt_gsi::qt_keep (arg1); QWidget *arg2 = gsi::arg_reader() (args, heap); - qt_gsi::qt_keep (arg2); __SUPPRESS_UNUSED_WARNING(ret); ((QFormLayout *)cls)->addRow (arg1, arg2); } @@ -123,9 +122,7 @@ static void _call_f_addRow_2548 (const qt_gsi::GenericMethod * /*decl*/, void *c __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; QWidget *arg1 = gsi::arg_reader() (args, heap); - qt_gsi::qt_keep (arg1); QLayout *arg2 = gsi::arg_reader() (args, heap); - qt_gsi::qt_keep (arg2); __SUPPRESS_UNUSED_WARNING(ret); ((QFormLayout *)cls)->addRow (arg1, arg2); } @@ -149,7 +146,6 @@ static void _call_f_addRow_3232 (const qt_gsi::GenericMethod * /*decl*/, void *c tl::Heap heap; const QString &arg1 = gsi::arg_reader() (args, heap); QWidget *arg2 = gsi::arg_reader() (args, heap); - qt_gsi::qt_keep (arg2); __SUPPRESS_UNUSED_WARNING(ret); ((QFormLayout *)cls)->addRow (arg1, arg2); } @@ -173,7 +169,6 @@ static void _call_f_addRow_3258 (const qt_gsi::GenericMethod * /*decl*/, void *c tl::Heap heap; const QString &arg1 = gsi::arg_reader() (args, heap); QLayout *arg2 = gsi::arg_reader() (args, heap); - qt_gsi::qt_keep (arg2); __SUPPRESS_UNUSED_WARNING(ret); ((QFormLayout *)cls)->addRow (arg1, arg2); } @@ -194,7 +189,6 @@ static void _call_f_addRow_1315 (const qt_gsi::GenericMethod * /*decl*/, void *c __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; QWidget *arg1 = gsi::arg_reader() (args, heap); - qt_gsi::qt_keep (arg1); __SUPPRESS_UNUSED_WARNING(ret); ((QFormLayout *)cls)->addRow (arg1); } @@ -428,7 +422,6 @@ static void _call_f_insertRow_3181 (const qt_gsi::GenericMethod * /*decl*/, void int arg1 = gsi::arg_reader() (args, heap); QWidget *arg2 = gsi::arg_reader() (args, heap); QWidget *arg3 = gsi::arg_reader() (args, heap); - qt_gsi::qt_keep (arg3); __SUPPRESS_UNUSED_WARNING(ret); ((QFormLayout *)cls)->insertRow (arg1, arg2, arg3); } @@ -455,7 +448,6 @@ static void _call_f_insertRow_3207 (const qt_gsi::GenericMethod * /*decl*/, void int arg1 = gsi::arg_reader() (args, heap); QWidget *arg2 = gsi::arg_reader() (args, heap); QLayout *arg3 = gsi::arg_reader() (args, heap); - qt_gsi::qt_keep (arg3); __SUPPRESS_UNUSED_WARNING(ret); ((QFormLayout *)cls)->insertRow (arg1, arg2, arg3); } @@ -482,7 +474,6 @@ static void _call_f_insertRow_3891 (const qt_gsi::GenericMethod * /*decl*/, void int arg1 = gsi::arg_reader() (args, heap); const QString &arg2 = gsi::arg_reader() (args, heap); QWidget *arg3 = gsi::arg_reader() (args, heap); - qt_gsi::qt_keep (arg3); __SUPPRESS_UNUSED_WARNING(ret); ((QFormLayout *)cls)->insertRow (arg1, arg2, arg3); } @@ -509,7 +500,6 @@ static void _call_f_insertRow_3917 (const qt_gsi::GenericMethod * /*decl*/, void int arg1 = gsi::arg_reader() (args, heap); const QString &arg2 = gsi::arg_reader() (args, heap); QLayout *arg3 = gsi::arg_reader() (args, heap); - qt_gsi::qt_keep (arg3); __SUPPRESS_UNUSED_WARNING(ret); ((QFormLayout *)cls)->insertRow (arg1, arg2, arg3); } @@ -1009,7 +999,6 @@ static void _call_f_setWidget_4342 (const qt_gsi::GenericMethod * /*decl*/, void int arg1 = gsi::arg_reader() (args, heap); const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); QWidget *arg3 = gsi::arg_reader() (args, heap); - qt_gsi::qt_keep (arg3); __SUPPRESS_UNUSED_WARNING(ret); ((QFormLayout *)cls)->setWidget (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), arg3); } @@ -1052,7 +1041,7 @@ static void _init_f_takeAt_767 (qt_gsi::GenericMethod *decl) { static gsi::ArgSpecBase argspec_0 ("index"); decl->add_arg (argspec_0); - decl->set_return (); + decl->set_return_new (); } static void _call_f_takeAt_767 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQLayout.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQLayout.cc index c92aaa40d..f3e70ca21 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQLayout.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQLayout.cc @@ -480,7 +480,7 @@ static void _init_f_replaceWidget_5361 (qt_gsi::GenericMethod *decl) decl->add_arg (argspec_1); static gsi::ArgSpecBase argspec_2 ("options", true, "Qt::FindChildrenRecursively"); decl->add_arg > (argspec_2); - decl->set_return (); + decl->set_return_new (); } static void _call_f_replaceWidget_5361 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQStackedLayout.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQStackedLayout.cc index 6926f9a1e..bd196f5de 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQStackedLayout.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQStackedLayout.cc @@ -76,6 +76,7 @@ static void _call_f_addItem_1740 (const qt_gsi::GenericMethod * /*decl*/, void * __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; QLayoutItem *arg1 = gsi::arg_reader() (args, heap); + qt_gsi::qt_keep (arg1); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedLayout *)cls)->addItem (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQBoxLayout.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQBoxLayout.cc index 18204295b..b63d0bfb9 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQBoxLayout.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQBoxLayout.cc @@ -76,6 +76,7 @@ static void _call_f_addItem_1740 (const qt_gsi::GenericMethod * /*decl*/, void * __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; QLayoutItem *arg1 = gsi::arg_reader() (args, heap); + qt_gsi::qt_keep (arg1); __SUPPRESS_UNUSED_WARNING(ret); ((QBoxLayout *)cls)->addItem (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQFormLayout.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQFormLayout.cc index 80d0aff0a..45c73002f 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQFormLayout.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQFormLayout.cc @@ -76,6 +76,7 @@ static void _call_f_addItem_1740 (const qt_gsi::GenericMethod * /*decl*/, void * __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; QLayoutItem *arg1 = gsi::arg_reader() (args, heap); + qt_gsi::qt_keep (arg1); __SUPPRESS_UNUSED_WARNING(ret); ((QFormLayout *)cls)->addItem (arg1); } @@ -98,9 +99,7 @@ static void _call_f_addRow_2522 (const qt_gsi::GenericMethod * /*decl*/, void *c __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; QWidget *arg1 = gsi::arg_reader() (args, heap); - qt_gsi::qt_keep (arg1); QWidget *arg2 = gsi::arg_reader() (args, heap); - qt_gsi::qt_keep (arg2); __SUPPRESS_UNUSED_WARNING(ret); ((QFormLayout *)cls)->addRow (arg1, arg2); } @@ -123,9 +122,7 @@ static void _call_f_addRow_2548 (const qt_gsi::GenericMethod * /*decl*/, void *c __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; QWidget *arg1 = gsi::arg_reader() (args, heap); - qt_gsi::qt_keep (arg1); QLayout *arg2 = gsi::arg_reader() (args, heap); - qt_gsi::qt_keep (arg2); __SUPPRESS_UNUSED_WARNING(ret); ((QFormLayout *)cls)->addRow (arg1, arg2); } @@ -149,7 +146,6 @@ static void _call_f_addRow_3232 (const qt_gsi::GenericMethod * /*decl*/, void *c tl::Heap heap; const QString &arg1 = gsi::arg_reader() (args, heap); QWidget *arg2 = gsi::arg_reader() (args, heap); - qt_gsi::qt_keep (arg2); __SUPPRESS_UNUSED_WARNING(ret); ((QFormLayout *)cls)->addRow (arg1, arg2); } @@ -173,7 +169,6 @@ static void _call_f_addRow_3258 (const qt_gsi::GenericMethod * /*decl*/, void *c tl::Heap heap; const QString &arg1 = gsi::arg_reader() (args, heap); QLayout *arg2 = gsi::arg_reader() (args, heap); - qt_gsi::qt_keep (arg2); __SUPPRESS_UNUSED_WARNING(ret); ((QFormLayout *)cls)->addRow (arg1, arg2); } @@ -194,7 +189,6 @@ static void _call_f_addRow_1315 (const qt_gsi::GenericMethod * /*decl*/, void *c __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; QWidget *arg1 = gsi::arg_reader() (args, heap); - qt_gsi::qt_keep (arg1); __SUPPRESS_UNUSED_WARNING(ret); ((QFormLayout *)cls)->addRow (arg1); } @@ -428,7 +422,6 @@ static void _call_f_insertRow_3181 (const qt_gsi::GenericMethod * /*decl*/, void int arg1 = gsi::arg_reader() (args, heap); QWidget *arg2 = gsi::arg_reader() (args, heap); QWidget *arg3 = gsi::arg_reader() (args, heap); - qt_gsi::qt_keep (arg3); __SUPPRESS_UNUSED_WARNING(ret); ((QFormLayout *)cls)->insertRow (arg1, arg2, arg3); } @@ -455,7 +448,6 @@ static void _call_f_insertRow_3207 (const qt_gsi::GenericMethod * /*decl*/, void int arg1 = gsi::arg_reader() (args, heap); QWidget *arg2 = gsi::arg_reader() (args, heap); QLayout *arg3 = gsi::arg_reader() (args, heap); - qt_gsi::qt_keep (arg3); __SUPPRESS_UNUSED_WARNING(ret); ((QFormLayout *)cls)->insertRow (arg1, arg2, arg3); } @@ -482,7 +474,6 @@ static void _call_f_insertRow_3891 (const qt_gsi::GenericMethod * /*decl*/, void int arg1 = gsi::arg_reader() (args, heap); const QString &arg2 = gsi::arg_reader() (args, heap); QWidget *arg3 = gsi::arg_reader() (args, heap); - qt_gsi::qt_keep (arg3); __SUPPRESS_UNUSED_WARNING(ret); ((QFormLayout *)cls)->insertRow (arg1, arg2, arg3); } @@ -509,7 +500,6 @@ static void _call_f_insertRow_3917 (const qt_gsi::GenericMethod * /*decl*/, void int arg1 = gsi::arg_reader() (args, heap); const QString &arg2 = gsi::arg_reader() (args, heap); QLayout *arg3 = gsi::arg_reader() (args, heap); - qt_gsi::qt_keep (arg3); __SUPPRESS_UNUSED_WARNING(ret); ((QFormLayout *)cls)->insertRow (arg1, arg2, arg3); } @@ -1009,7 +999,6 @@ static void _call_f_setWidget_4342 (const qt_gsi::GenericMethod * /*decl*/, void int arg1 = gsi::arg_reader() (args, heap); const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); QWidget *arg3 = gsi::arg_reader() (args, heap); - qt_gsi::qt_keep (arg3); __SUPPRESS_UNUSED_WARNING(ret); ((QFormLayout *)cls)->setWidget (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), arg3); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQLayout.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQLayout.cc index 9f10513a3..d09bee548 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQLayout.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQLayout.cc @@ -465,7 +465,7 @@ static void _init_f_replaceWidget_5361 (qt_gsi::GenericMethod *decl) decl->add_arg (argspec_1); static gsi::ArgSpecBase argspec_2 ("options", true, "Qt::FindChildrenRecursively"); decl->add_arg > (argspec_2); - decl->set_return (); + decl->set_return_new (); } static void _call_f_replaceWidget_5361 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQStackedLayout.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQStackedLayout.cc index 2d3762f5f..c13ef85ab 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQStackedLayout.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQStackedLayout.cc @@ -76,6 +76,7 @@ static void _call_f_addItem_1740 (const qt_gsi::GenericMethod * /*decl*/, void * __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; QLayoutItem *arg1 = gsi::arg_reader() (args, heap); + qt_gsi::qt_keep (arg1); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedLayout *)cls)->addItem (arg1); } From ca43a6e9ceba65d9f7640195890f678c70b7998f Mon Sep 17 00:00:00 2001 From: Matthias Koefferlein Date: Sat, 14 Feb 2026 19:41:20 +0100 Subject: [PATCH 004/212] Overloaded base class methods also need to transfer ownership of arguments --- scripts/mkqtdecl_common/produce.rb | 8 +- .../qt4/QtCore/gsiDeclQAbstractItemModel.cc | 118 +++++----- .../qt4/QtCore/gsiDeclQAbstractListModel.cc | 112 +++++----- .../qt4/QtCore/gsiDeclQAbstractTableModel.cc | 114 +++++----- .../qt4/QtCore/gsiDeclQCoreApplication.cc | 14 +- src/gsiqt/qt4/QtCore/gsiDeclQEventLoop.cc | 14 +- .../qt4/QtCore/gsiDeclQFileSystemWatcher.cc | 14 +- src/gsiqt/qt4/QtCore/gsiDeclQLibrary.cc | 14 +- src/gsiqt/qt4/QtCore/gsiDeclQMimeData.cc | 20 +- src/gsiqt/qt4/QtCore/gsiDeclQObject.cc | 14 +- src/gsiqt/qt4/QtCore/gsiDeclQPluginLoader.cc | 14 +- src/gsiqt/qt4/QtCore/gsiDeclQSettings.cc | 14 +- src/gsiqt/qt4/QtCore/gsiDeclQSignalMapper.cc | 14 +- .../qt4/QtCore/gsiDeclQSocketNotifier.cc | 14 +- src/gsiqt/qt4/QtCore/gsiDeclQSystemLocale.cc | 4 +- src/gsiqt/qt4/QtCore/gsiDeclQTextCodec.cc | 12 +- src/gsiqt/qt4/QtCore/gsiDeclQThread.cc | 14 +- src/gsiqt/qt4/QtCore/gsiDeclQTimeLine.cc | 16 +- src/gsiqt/qt4/QtCore/gsiDeclQTimer.cc | 14 +- src/gsiqt/qt4/QtCore/gsiDeclQTranslator.cc | 20 +- src/gsiqt/qt4/QtGui/gsiDeclQAbstractButton.cc | 88 ++++---- .../gsiDeclQAbstractGraphicsShapeItem.cc | 76 +++---- .../qt4/QtGui/gsiDeclQAbstractItemDelegate.cc | 54 ++--- .../qt4/QtGui/gsiDeclQAbstractItemView.cc | 176 +++++++-------- .../QtGui/gsiDeclQAbstractPageSetupDialog.cc | 88 ++++---- .../qt4/QtGui/gsiDeclQAbstractPrintDialog.cc | 88 ++++---- .../qt4/QtGui/gsiDeclQAbstractProxyModel.cc | 128 +++++------ .../qt4/QtGui/gsiDeclQAbstractScrollArea.cc | 92 ++++---- src/gsiqt/qt4/QtGui/gsiDeclQAbstractSlider.cc | 88 ++++---- .../qt4/QtGui/gsiDeclQAbstractSpinBox.cc | 94 ++++---- .../gsiDeclQAbstractTextDocumentLayout.cc | 54 ++--- .../QtGui/gsiDeclQAccessibleApplication.cc | 42 ++-- src/gsiqt/qt4/QtGui/gsiDeclQAction.cc | 14 +- src/gsiqt/qt4/QtGui/gsiDeclQActionGroup.cc | 14 +- src/gsiqt/qt4/QtGui/gsiDeclQApplication.cc | 14 +- src/gsiqt/qt4/QtGui/gsiDeclQBitmap.cc | 2 +- src/gsiqt/qt4/QtGui/gsiDeclQBoxLayout.cc | 29 +-- src/gsiqt/qt4/QtGui/gsiDeclQButtonGroup.cc | 14 +- src/gsiqt/qt4/QtGui/gsiDeclQCDEStyle.cc | 142 ++++++------ src/gsiqt/qt4/QtGui/gsiDeclQCalendarWidget.cc | 92 ++++---- src/gsiqt/qt4/QtGui/gsiDeclQCheckBox.cc | 88 ++++---- .../qt4/QtGui/gsiDeclQCleanlooksStyle.cc | 142 ++++++------ src/gsiqt/qt4/QtGui/gsiDeclQColorDialog.cc | 88 ++++---- src/gsiqt/qt4/QtGui/gsiDeclQColumnView.cc | 178 +++++++-------- src/gsiqt/qt4/QtGui/gsiDeclQComboBox.cc | 86 ++++---- .../qt4/QtGui/gsiDeclQCommandLinkButton.cc | 88 ++++---- src/gsiqt/qt4/QtGui/gsiDeclQCommonStyle.cc | 142 ++++++------ src/gsiqt/qt4/QtGui/gsiDeclQCompleter.cc | 18 +- .../qt4/QtGui/gsiDeclQDataWidgetMapper.cc | 16 +- src/gsiqt/qt4/QtGui/gsiDeclQDateEdit.cc | 98 ++++----- src/gsiqt/qt4/QtGui/gsiDeclQDateTimeEdit.cc | 98 ++++----- src/gsiqt/qt4/QtGui/gsiDeclQDesktopWidget.cc | 86 ++++---- src/gsiqt/qt4/QtGui/gsiDeclQDial.cc | 88 ++++---- src/gsiqt/qt4/QtGui/gsiDeclQDialog.cc | 88 ++++---- .../qt4/QtGui/gsiDeclQDialogButtonBox.cc | 86 ++++---- src/gsiqt/qt4/QtGui/gsiDeclQDirModel.cc | 118 +++++----- src/gsiqt/qt4/QtGui/gsiDeclQDockWidget.cc | 86 ++++---- src/gsiqt/qt4/QtGui/gsiDeclQDoubleSpinBox.cc | 98 ++++----- .../qt4/QtGui/gsiDeclQDoubleValidator.cc | 26 +-- src/gsiqt/qt4/QtGui/gsiDeclQDrag.cc | 14 +- src/gsiqt/qt4/QtGui/gsiDeclQDragEnterEvent.cc | 6 +- src/gsiqt/qt4/QtGui/gsiDeclQDragMoveEvent.cc | 6 +- src/gsiqt/qt4/QtGui/gsiDeclQDropEvent.cc | 6 +- src/gsiqt/qt4/QtGui/gsiDeclQErrorMessage.cc | 88 ++++---- src/gsiqt/qt4/QtGui/gsiDeclQFileDialog.cc | 88 ++++---- .../qt4/QtGui/gsiDeclQFileIconProvider.cc | 6 +- .../qt4/QtGui/gsiDeclQFileSystemModel.cc | 118 +++++----- src/gsiqt/qt4/QtGui/gsiDeclQFocusFrame.cc | 86 ++++---- src/gsiqt/qt4/QtGui/gsiDeclQFontComboBox.cc | 86 ++++---- src/gsiqt/qt4/QtGui/gsiDeclQFontDialog.cc | 84 +++---- src/gsiqt/qt4/QtGui/gsiDeclQFormLayout.cc | 29 +-- src/gsiqt/qt4/QtGui/gsiDeclQFrame.cc | 86 ++++---- src/gsiqt/qt4/QtGui/gsiDeclQGesture.cc | 14 +- .../qt4/QtGui/gsiDeclQGestureRecognizer.cc | 10 +- src/gsiqt/qt4/QtGui/gsiDeclQGraphicsAnchor.cc | 14 +- .../qt4/QtGui/gsiDeclQGraphicsAnchorLayout.cc | 20 +- .../qt4/QtGui/gsiDeclQGraphicsBlurEffect.cc | 20 +- .../QtGui/gsiDeclQGraphicsColorizeEffect.cc | 20 +- .../QtGui/gsiDeclQGraphicsDropShadowEffect.cc | 20 +- src/gsiqt/qt4/QtGui/gsiDeclQGraphicsEffect.cc | 20 +- .../qt4/QtGui/gsiDeclQGraphicsEllipseItem.cc | 76 +++---- .../qt4/QtGui/gsiDeclQGraphicsGridLayout.cc | 20 +- src/gsiqt/qt4/QtGui/gsiDeclQGraphicsItem.cc | 76 +++---- .../QtGui/gsiDeclQGraphicsItemAnimation.cc | 18 +- .../qt4/QtGui/gsiDeclQGraphicsItemGroup.cc | 76 +++---- src/gsiqt/qt4/QtGui/gsiDeclQGraphicsLayout.cc | 20 +- .../qt4/QtGui/gsiDeclQGraphicsLayoutItem.cc | 14 +- .../qt4/QtGui/gsiDeclQGraphicsLineItem.cc | 76 +++---- .../qt4/QtGui/gsiDeclQGraphicsLinearLayout.cc | 20 +- src/gsiqt/qt4/QtGui/gsiDeclQGraphicsObject.cc | 90 ++++---- .../QtGui/gsiDeclQGraphicsOpacityEffect.cc | 20 +- .../qt4/QtGui/gsiDeclQGraphicsPathItem.cc | 76 +++---- .../qt4/QtGui/gsiDeclQGraphicsPixmapItem.cc | 76 +++---- .../qt4/QtGui/gsiDeclQGraphicsPolygonItem.cc | 76 +++---- .../qt4/QtGui/gsiDeclQGraphicsProxyWidget.cc | 142 ++++++------ .../qt4/QtGui/gsiDeclQGraphicsRectItem.cc | 76 +++---- .../qt4/QtGui/gsiDeclQGraphicsRotation.cc | 16 +- src/gsiqt/qt4/QtGui/gsiDeclQGraphicsScale.cc | 16 +- src/gsiqt/qt4/QtGui/gsiDeclQGraphicsScene.cc | 56 ++--- .../QtGui/gsiDeclQGraphicsSimpleTextItem.cc | 76 +++---- .../qt4/QtGui/gsiDeclQGraphicsTextItem.cc | 90 ++++---- .../qt4/QtGui/gsiDeclQGraphicsTransform.cc | 16 +- src/gsiqt/qt4/QtGui/gsiDeclQGraphicsView.cc | 100 ++++----- src/gsiqt/qt4/QtGui/gsiDeclQGraphicsWidget.cc | 142 ++++++------ src/gsiqt/qt4/QtGui/gsiDeclQGridLayout.cc | 29 +-- src/gsiqt/qt4/QtGui/gsiDeclQGroupBox.cc | 86 ++++---- src/gsiqt/qt4/QtGui/gsiDeclQHBoxLayout.cc | 29 +-- src/gsiqt/qt4/QtGui/gsiDeclQHeaderView.cc | 184 ++++++++-------- src/gsiqt/qt4/QtGui/gsiDeclQIconEngine.cc | 34 +-- .../qt4/QtGui/gsiDeclQIconEnginePlugin.cc | 16 +- .../qt4/QtGui/gsiDeclQIconEnginePluginV2.cc | 16 +- src/gsiqt/qt4/QtGui/gsiDeclQIconEngineV2.cc | 42 ++-- src/gsiqt/qt4/QtGui/gsiDeclQImage.cc | 2 +- src/gsiqt/qt4/QtGui/gsiDeclQImageIOHandler.cc | 14 +- src/gsiqt/qt4/QtGui/gsiDeclQImageIOPlugin.cc | 22 +- src/gsiqt/qt4/QtGui/gsiDeclQInputContext.cc | 24 +- .../qt4/QtGui/gsiDeclQInputContextPlugin.cc | 22 +- src/gsiqt/qt4/QtGui/gsiDeclQInputDialog.cc | 88 ++++---- src/gsiqt/qt4/QtGui/gsiDeclQIntValidator.cc | 24 +- src/gsiqt/qt4/QtGui/gsiDeclQItemDelegate.cc | 84 +++---- .../QtGui/gsiDeclQItemEditorCreatorBase.cc | 2 +- .../qt4/QtGui/gsiDeclQItemEditorFactory.cc | 6 +- .../qt4/QtGui/gsiDeclQItemSelectionModel.cc | 22 +- src/gsiqt/qt4/QtGui/gsiDeclQLCDNumber.cc | 86 ++++---- src/gsiqt/qt4/QtGui/gsiDeclQLabel.cc | 86 ++++---- src/gsiqt/qt4/QtGui/gsiDeclQLayout.cc | 29 +-- src/gsiqt/qt4/QtGui/gsiDeclQLayoutItem.cc | 6 +- src/gsiqt/qt4/QtGui/gsiDeclQLineEdit.cc | 86 ++++---- src/gsiqt/qt4/QtGui/gsiDeclQListView.cc | 176 +++++++-------- src/gsiqt/qt4/QtGui/gsiDeclQListWidget.cc | 182 ++++++++-------- src/gsiqt/qt4/QtGui/gsiDeclQListWidgetItem.cc | 14 +- src/gsiqt/qt4/QtGui/gsiDeclQMainWindow.cc | 86 ++++---- src/gsiqt/qt4/QtGui/gsiDeclQMdiArea.cc | 92 ++++---- src/gsiqt/qt4/QtGui/gsiDeclQMdiSubWindow.cc | 86 ++++---- src/gsiqt/qt4/QtGui/gsiDeclQMenu.cc | 86 ++++---- src/gsiqt/qt4/QtGui/gsiDeclQMenuBar.cc | 86 ++++---- src/gsiqt/qt4/QtGui/gsiDeclQMessageBox.cc | 88 ++++---- src/gsiqt/qt4/QtGui/gsiDeclQMimeSource.cc | 6 +- src/gsiqt/qt4/QtGui/gsiDeclQMotifStyle.cc | 142 ++++++------ src/gsiqt/qt4/QtGui/gsiDeclQMovie.cc | 14 +- src/gsiqt/qt4/QtGui/gsiDeclQPaintDevice.cc | 2 +- src/gsiqt/qt4/QtGui/gsiDeclQPaintEngine.cc | 34 +-- src/gsiqt/qt4/QtGui/gsiDeclQPanGesture.cc | 14 +- src/gsiqt/qt4/QtGui/gsiDeclQPicture.cc | 6 +- src/gsiqt/qt4/QtGui/gsiDeclQPinchGesture.cc | 14 +- src/gsiqt/qt4/QtGui/gsiDeclQPixmap.cc | 2 +- .../QtGui/gsiDeclQPlainTextDocumentLayout.cc | 54 ++--- src/gsiqt/qt4/QtGui/gsiDeclQPlainTextEdit.cc | 100 ++++----- src/gsiqt/qt4/QtGui/gsiDeclQPlastiqueStyle.cc | 142 ++++++------ src/gsiqt/qt4/QtGui/gsiDeclQPrintDialog.cc | 88 ++++---- src/gsiqt/qt4/QtGui/gsiDeclQPrintEngine.cc | 8 +- .../qt4/QtGui/gsiDeclQPrintPreviewDialog.cc | 88 ++++---- .../qt4/QtGui/gsiDeclQPrintPreviewWidget.cc | 86 ++++---- src/gsiqt/qt4/QtGui/gsiDeclQPrinter.cc | 2 +- src/gsiqt/qt4/QtGui/gsiDeclQProgressBar.cc | 86 ++++---- src/gsiqt/qt4/QtGui/gsiDeclQProgressDialog.cc | 88 ++++---- src/gsiqt/qt4/QtGui/gsiDeclQPushButton.cc | 88 ++++---- src/gsiqt/qt4/QtGui/gsiDeclQRadioButton.cc | 88 ++++---- .../qt4/QtGui/gsiDeclQRegExpValidator.cc | 20 +- src/gsiqt/qt4/QtGui/gsiDeclQRubberBand.cc | 86 ++++---- src/gsiqt/qt4/QtGui/gsiDeclQScrollArea.cc | 92 ++++---- src/gsiqt/qt4/QtGui/gsiDeclQScrollBar.cc | 88 ++++---- src/gsiqt/qt4/QtGui/gsiDeclQShortcut.cc | 14 +- src/gsiqt/qt4/QtGui/gsiDeclQSizeGrip.cc | 86 ++++---- src/gsiqt/qt4/QtGui/gsiDeclQSlider.cc | 88 ++++---- .../qt4/QtGui/gsiDeclQSortFilterProxyModel.cc | 140 ++++++------ src/gsiqt/qt4/QtGui/gsiDeclQSound.cc | 14 +- src/gsiqt/qt4/QtGui/gsiDeclQSpacerItem.cc | 6 +- src/gsiqt/qt4/QtGui/gsiDeclQSpinBox.cc | 98 ++++----- src/gsiqt/qt4/QtGui/gsiDeclQSplashScreen.cc | 88 ++++---- src/gsiqt/qt4/QtGui/gsiDeclQSplitter.cc | 86 ++++---- src/gsiqt/qt4/QtGui/gsiDeclQSplitterHandle.cc | 86 ++++---- src/gsiqt/qt4/QtGui/gsiDeclQStackedLayout.cc | 29 +-- src/gsiqt/qt4/QtGui/gsiDeclQStackedWidget.cc | 86 ++++---- src/gsiqt/qt4/QtGui/gsiDeclQStandardItem.cc | 12 +- .../qt4/QtGui/gsiDeclQStandardItemModel.cc | 118 +++++----- src/gsiqt/qt4/QtGui/gsiDeclQStatusBar.cc | 86 ++++---- .../qt4/QtGui/gsiDeclQStringListModel.cc | 112 +++++----- src/gsiqt/qt4/QtGui/gsiDeclQStyle.cc | 142 ++++++------ src/gsiqt/qt4/QtGui/gsiDeclQStylePlugin.cc | 16 +- .../qt4/QtGui/gsiDeclQStyledItemDelegate.cc | 62 +++--- src/gsiqt/qt4/QtGui/gsiDeclQSwipeGesture.cc | 14 +- .../qt4/QtGui/gsiDeclQSyntaxHighlighter.cc | 16 +- src/gsiqt/qt4/QtGui/gsiDeclQSystemTrayIcon.cc | 14 +- src/gsiqt/qt4/QtGui/gsiDeclQTabBar.cc | 92 ++++---- src/gsiqt/qt4/QtGui/gsiDeclQTabWidget.cc | 90 ++++---- src/gsiqt/qt4/QtGui/gsiDeclQTableView.cc | 176 +++++++-------- src/gsiqt/qt4/QtGui/gsiDeclQTableWidget.cc | 184 ++++++++-------- .../qt4/QtGui/gsiDeclQTableWidgetItem.cc | 12 +- .../qt4/QtGui/gsiDeclQTapAndHoldGesture.cc | 14 +- src/gsiqt/qt4/QtGui/gsiDeclQTapGesture.cc | 14 +- src/gsiqt/qt4/QtGui/gsiDeclQTextBlockGroup.cc | 20 +- src/gsiqt/qt4/QtGui/gsiDeclQTextBrowser.cc | 102 ++++----- src/gsiqt/qt4/QtGui/gsiDeclQTextDocument.cc | 20 +- src/gsiqt/qt4/QtGui/gsiDeclQTextEdit.cc | 100 ++++----- src/gsiqt/qt4/QtGui/gsiDeclQTextFrame.cc | 14 +- src/gsiqt/qt4/QtGui/gsiDeclQTextList.cc | 20 +- src/gsiqt/qt4/QtGui/gsiDeclQTextObject.cc | 14 +- .../qt4/QtGui/gsiDeclQTextObjectInterface.cc | 16 +- src/gsiqt/qt4/QtGui/gsiDeclQTextTable.cc | 14 +- src/gsiqt/qt4/QtGui/gsiDeclQTimeEdit.cc | 98 ++++----- src/gsiqt/qt4/QtGui/gsiDeclQToolBar.cc | 86 ++++---- src/gsiqt/qt4/QtGui/gsiDeclQToolBox.cc | 90 ++++---- src/gsiqt/qt4/QtGui/gsiDeclQToolButton.cc | 88 ++++---- src/gsiqt/qt4/QtGui/gsiDeclQTreeView.cc | 188 ++++++++-------- src/gsiqt/qt4/QtGui/gsiDeclQTreeWidget.cc | 196 ++++++++--------- src/gsiqt/qt4/QtGui/gsiDeclQTreeWidgetItem.cc | 16 +- src/gsiqt/qt4/QtGui/gsiDeclQUndoCommand.cc | 2 +- src/gsiqt/qt4/QtGui/gsiDeclQUndoGroup.cc | 14 +- src/gsiqt/qt4/QtGui/gsiDeclQUndoStack.cc | 14 +- src/gsiqt/qt4/QtGui/gsiDeclQUndoView.cc | 176 +++++++-------- .../qt4/QtGui/gsiDeclQUnixPrintWidget.cc | 86 ++++---- src/gsiqt/qt4/QtGui/gsiDeclQVBoxLayout.cc | 29 +-- src/gsiqt/qt4/QtGui/gsiDeclQValidator.cc | 20 +- src/gsiqt/qt4/QtGui/gsiDeclQWidget.cc | 86 ++++---- src/gsiqt/qt4/QtGui/gsiDeclQWidgetAction.cc | 18 +- src/gsiqt/qt4/QtGui/gsiDeclQWidgetItem.cc | 6 +- src/gsiqt/qt4/QtGui/gsiDeclQWindowsStyle.cc | 142 ++++++------ src/gsiqt/qt4/QtGui/gsiDeclQWizard.cc | 92 ++++---- src/gsiqt/qt4/QtGui/gsiDeclQWizardPage.cc | 86 ++++---- .../QtNetwork/gsiDeclQAbstractNetworkCache.cc | 26 +-- src/gsiqt/qt4/QtNetwork/gsiDeclQFtp.cc | 14 +- .../qt4/QtNetwork/gsiDeclQLocalServer.cc | 16 +- .../QtNetwork/gsiDeclQNetworkAccessManager.cc | 20 +- .../qt4/QtNetwork/gsiDeclQNetworkCookieJar.cc | 20 +- .../qt4/QtNetwork/gsiDeclQNetworkDiskCache.cc | 26 +-- .../QtNetwork/gsiDeclQNetworkProxyFactory.cc | 2 +- src/gsiqt/qt4/QtNetwork/gsiDeclQTcpServer.cc | 16 +- src/gsiqt/qt4/QtNetwork/gsiDeclQUrlInfo.cc | 22 +- src/gsiqt/qt4/QtSql/gsiDeclQSqlDriver.cc | 56 ++--- src/gsiqt/qt4/QtSql/gsiDeclQSqlQueryModel.cc | 114 +++++----- .../QtSql/gsiDeclQSqlRelationalTableModel.cc | 140 ++++++------ src/gsiqt/qt4/QtSql/gsiDeclQSqlResult.cc | 40 ++-- src/gsiqt/qt4/QtSql/gsiDeclQSqlTableModel.cc | 134 ++++++------ src/gsiqt/qt4/QtUiTools/gsiDeclQUiLoader.cc | 34 +-- .../qt4/QtXml/gsiDeclQXmlContentHandler.cc | 32 +-- src/gsiqt/qt4/QtXml/gsiDeclQXmlDTDHandler.cc | 14 +- src/gsiqt/qt4/QtXml/gsiDeclQXmlDeclHandler.cc | 20 +- .../qt4/QtXml/gsiDeclQXmlDefaultHandler.cc | 84 +++---- .../qt4/QtXml/gsiDeclQXmlErrorHandler.cc | 6 +- src/gsiqt/qt4/QtXml/gsiDeclQXmlInputSource.cc | 6 +- .../qt4/QtXml/gsiDeclQXmlLexicalHandler.cc | 12 +- .../qt4/QtXml/gsiDeclQXmlSimpleReader.cc | 38 ++-- .../qt5/QtCore/gsiDeclQAbstractAnimation.cc | 22 +- .../QtCore/gsiDeclQAbstractEventDispatcher.cc | 36 +-- .../qt5/QtCore/gsiDeclQAbstractItemModel.cc | 154 ++++++------- .../qt5/QtCore/gsiDeclQAbstractListModel.cc | 148 ++++++------- .../gsiDeclQAbstractNativeEventFilter.cc | 6 +- .../qt5/QtCore/gsiDeclQAbstractProxyModel.cc | 164 +++++++------- src/gsiqt/qt5/QtCore/gsiDeclQAbstractState.cc | 18 +- .../qt5/QtCore/gsiDeclQAbstractTableModel.cc | 150 ++++++------- .../qt5/QtCore/gsiDeclQAbstractTransition.cc | 18 +- .../qt5/QtCore/gsiDeclQAnimationDriver.cc | 14 +- .../qt5/QtCore/gsiDeclQAnimationGroup.cc | 22 +- .../qt5/QtCore/gsiDeclQCoreApplication.cc | 14 +- src/gsiqt/qt5/QtCore/gsiDeclQEventLoop.cc | 14 +- .../qt5/QtCore/gsiDeclQEventTransition.cc | 18 +- src/gsiqt/qt5/QtCore/gsiDeclQFileDevice.cc | 30 +-- src/gsiqt/qt5/QtCore/gsiDeclQFileSelector.cc | 14 +- .../qt5/QtCore/gsiDeclQFileSystemWatcher.cc | 14 +- src/gsiqt/qt5/QtCore/gsiDeclQFinalState.cc | 18 +- src/gsiqt/qt5/QtCore/gsiDeclQHistoryState.cc | 18 +- .../qt5/QtCore/gsiDeclQIdentityProxyModel.cc | 164 +++++++------- .../qt5/QtCore/gsiDeclQItemSelectionModel.cc | 26 +-- src/gsiqt/qt5/QtCore/gsiDeclQLibrary.cc | 14 +- src/gsiqt/qt5/QtCore/gsiDeclQMimeData.cc | 20 +- src/gsiqt/qt5/QtCore/gsiDeclQObject.cc | 14 +- .../QtCore/gsiDeclQParallelAnimationGroup.cc | 22 +- .../qt5/QtCore/gsiDeclQPauseAnimation.cc | 22 +- src/gsiqt/qt5/QtCore/gsiDeclQPluginLoader.cc | 14 +- .../qt5/QtCore/gsiDeclQPropertyAnimation.cc | 30 +-- src/gsiqt/qt5/QtCore/gsiDeclQSaveFile.cc | 30 +-- .../gsiDeclQSequentialAnimationGroup.cc | 22 +- src/gsiqt/qt5/QtCore/gsiDeclQSettings.cc | 14 +- src/gsiqt/qt5/QtCore/gsiDeclQSharedMemory.cc | 14 +- src/gsiqt/qt5/QtCore/gsiDeclQSignalMapper.cc | 14 +- .../qt5/QtCore/gsiDeclQSignalTransition.cc | 18 +- .../qt5/QtCore/gsiDeclQSocketNotifier.cc | 14 +- .../QtCore/gsiDeclQSortFilterProxyModel.cc | 176 +++++++-------- src/gsiqt/qt5/QtCore/gsiDeclQState.cc | 18 +- src/gsiqt/qt5/QtCore/gsiDeclQStateMachine.cc | 26 +-- .../qt5/QtCore/gsiDeclQStringListModel.cc | 148 ++++++------- src/gsiqt/qt5/QtCore/gsiDeclQTextCodec.cc | 12 +- src/gsiqt/qt5/QtCore/gsiDeclQThread.cc | 14 +- src/gsiqt/qt5/QtCore/gsiDeclQThreadPool.cc | 14 +- src/gsiqt/qt5/QtCore/gsiDeclQTimeLine.cc | 16 +- src/gsiqt/qt5/QtCore/gsiDeclQTimer.cc | 14 +- src/gsiqt/qt5/QtCore/gsiDeclQTranslator.cc | 22 +- .../qt5/QtCore/gsiDeclQVariantAnimation.cc | 30 +-- .../QtCore/gsiDeclQXmlStreamEntityResolver.cc | 6 +- .../gsiDeclQAbstractTextDocumentLayout.cc | 54 ++--- .../gsiDeclQAccessibleActionInterface.cc | 8 +- ...gsiDeclQAccessibleEditableTextInterface.cc | 14 +- .../QtGui/gsiDeclQAccessibleTableInterface.cc | 22 +- .../QtGui/gsiDeclQAccessibleTextInterface.cc | 62 +++--- .../QtGui/gsiDeclQAccessibleValueInterface.cc | 2 +- .../gsiDeclQAccessible_ActivationObserver.cc | 2 +- src/gsiqt/qt5/QtGui/gsiDeclQBitmap.cc | 6 +- .../qt5/QtGui/gsiDeclQDoubleValidator.cc | 26 +-- src/gsiqt/qt5/QtGui/gsiDeclQDrag.cc | 14 +- src/gsiqt/qt5/QtGui/gsiDeclQGenericPlugin.cc | 18 +- src/gsiqt/qt5/QtGui/gsiDeclQGuiApplication.cc | 14 +- src/gsiqt/qt5/QtGui/gsiDeclQIconEngine.cc | 46 ++-- .../qt5/QtGui/gsiDeclQIconEnginePlugin.cc | 16 +- src/gsiqt/qt5/QtGui/gsiDeclQImage.cc | 6 +- src/gsiqt/qt5/QtGui/gsiDeclQImageIOHandler.cc | 14 +- src/gsiqt/qt5/QtGui/gsiDeclQImageIOPlugin.cc | 22 +- src/gsiqt/qt5/QtGui/gsiDeclQIntValidator.cc | 24 +- src/gsiqt/qt5/QtGui/gsiDeclQMovie.cc | 14 +- .../qt5/QtGui/gsiDeclQOffscreenSurface.cc | 14 +- .../qt5/QtGui/gsiDeclQPagedPaintDevice.cc | 12 +- src/gsiqt/qt5/QtGui/gsiDeclQPaintDevice.cc | 6 +- .../qt5/QtGui/gsiDeclQPaintDeviceWindow.cc | 60 ++--- src/gsiqt/qt5/QtGui/gsiDeclQPaintEngine.cc | 34 +-- src/gsiqt/qt5/QtGui/gsiDeclQPdfWriter.cc | 26 +-- src/gsiqt/qt5/QtGui/gsiDeclQPicture.cc | 10 +- .../qt5/QtGui/gsiDeclQPictureFormatPlugin.cc | 28 +-- src/gsiqt/qt5/QtGui/gsiDeclQPixmap.cc | 6 +- src/gsiqt/qt5/QtGui/gsiDeclQRasterWindow.cc | 60 ++--- .../qt5/QtGui/gsiDeclQRegExpValidator.cc | 20 +- .../gsiDeclQRegularExpressionValidator.cc | 20 +- src/gsiqt/qt5/QtGui/gsiDeclQScreen.cc | 14 +- src/gsiqt/qt5/QtGui/gsiDeclQStandardItem.cc | 12 +- .../qt5/QtGui/gsiDeclQStandardItemModel.cc | 154 ++++++------- src/gsiqt/qt5/QtGui/gsiDeclQStyleHints.cc | 14 +- .../qt5/QtGui/gsiDeclQSyntaxHighlighter.cc | 16 +- src/gsiqt/qt5/QtGui/gsiDeclQTextBlockGroup.cc | 20 +- src/gsiqt/qt5/QtGui/gsiDeclQTextDocument.cc | 20 +- src/gsiqt/qt5/QtGui/gsiDeclQTextFrame.cc | 14 +- src/gsiqt/qt5/QtGui/gsiDeclQTextList.cc | 20 +- src/gsiqt/qt5/QtGui/gsiDeclQTextObject.cc | 14 +- .../qt5/QtGui/gsiDeclQTextObjectInterface.cc | 16 +- src/gsiqt/qt5/QtGui/gsiDeclQTextTable.cc | 14 +- src/gsiqt/qt5/QtGui/gsiDeclQValidator.cc | 20 +- src/gsiqt/qt5/QtGui/gsiDeclQWindow.cc | 52 ++--- .../gsiDeclQAbstractAudioDeviceInfo.cc | 16 +- .../gsiDeclQAbstractAudioInput.cc | 24 +- .../gsiDeclQAbstractAudioOutput.cc | 26 +-- .../gsiDeclQAbstractVideoFilter.cc | 14 +- .../gsiDeclQAbstractVideoSurface.cc | 24 +- .../qt5/QtMultimedia/gsiDeclQAudioDecoder.cc | 18 +- .../gsiDeclQAudioDecoderControl.cc | 20 +- .../gsiDeclQAudioEncoderSettingsControl.cc | 22 +- .../qt5/QtMultimedia/gsiDeclQAudioInput.cc | 14 +- .../gsiDeclQAudioInputSelectorControl.cc | 18 +- .../qt5/QtMultimedia/gsiDeclQAudioOutput.cc | 14 +- .../gsiDeclQAudioOutputSelectorControl.cc | 18 +- .../qt5/QtMultimedia/gsiDeclQAudioProbe.cc | 14 +- .../qt5/QtMultimedia/gsiDeclQAudioRecorder.cc | 16 +- .../QtMultimedia/gsiDeclQAudioRoleControl.cc | 16 +- .../gsiDeclQAudioSystemFactoryInterface.cc | 10 +- .../QtMultimedia/gsiDeclQAudioSystemPlugin.cc | 24 +- src/gsiqt/qt5/QtMultimedia/gsiDeclQCamera.cc | 18 +- ...siDeclQCameraCaptureBufferFormatControl.cc | 16 +- ...gsiDeclQCameraCaptureDestinationControl.cc | 18 +- .../qt5/QtMultimedia/gsiDeclQCameraControl.cc | 24 +- .../gsiDeclQCameraExposureControl.cc | 28 +-- .../gsiDeclQCameraFeedbackControl.cc | 28 +-- .../gsiDeclQCameraFlashControl.cc | 18 +- .../gsiDeclQCameraFocusControl.cc | 24 +- .../gsiDeclQCameraImageCapture.cc | 16 +- .../gsiDeclQCameraImageCaptureControl.cc | 18 +- .../gsiDeclQCameraImageProcessingControl.cc | 26 +-- .../QtMultimedia/gsiDeclQCameraInfoControl.cc | 18 +- .../gsiDeclQCameraLocksControl.cc | 20 +- ...gsiDeclQCameraViewfinderSettingsControl.cc | 22 +- ...siDeclQCameraViewfinderSettingsControl2.cc | 16 +- .../QtMultimedia/gsiDeclQCameraZoomControl.cc | 18 +- .../gsiDeclQCustomAudioRoleControl.cc | 16 +- .../QtMultimedia/gsiDeclQGraphicsVideoItem.cc | 92 ++++---- .../gsiDeclQImageEncoderControl.cc | 22 +- .../gsiDeclQMediaAudioProbeControl.cc | 14 +- .../gsiDeclQMediaAvailabilityControl.cc | 14 +- .../gsiDeclQMediaBindableInterface.cc | 2 +- .../gsiDeclQMediaContainerControl.cc | 18 +- .../qt5/QtMultimedia/gsiDeclQMediaControl.cc | 14 +- .../gsiDeclQMediaGaplessPlaybackControl.cc | 18 +- .../gsiDeclQMediaNetworkAccessControl.cc | 16 +- .../qt5/QtMultimedia/gsiDeclQMediaObject.cc | 18 +- .../qt5/QtMultimedia/gsiDeclQMediaPlayer.cc | 18 +- .../gsiDeclQMediaPlayerControl.cc | 26 +-- .../qt5/QtMultimedia/gsiDeclQMediaPlaylist.cc | 16 +- .../qt5/QtMultimedia/gsiDeclQMediaRecorder.cc | 16 +- .../gsiDeclQMediaRecorderControl.cc | 22 +- .../qt5/QtMultimedia/gsiDeclQMediaService.cc | 18 +- ...gsiDeclQMediaServiceCameraInfoInterface.cc | 4 +- ...DeclQMediaServiceDefaultDeviceInterface.cc | 2 +- .../gsiDeclQMediaServiceFeaturesInterface.cc | 2 +- ...clQMediaServiceProviderFactoryInterface.cc | 4 +- .../gsiDeclQMediaServiceProviderPlugin.cc | 18 +- ...lQMediaServiceSupportedDevicesInterface.cc | 6 +- ...lQMediaServiceSupportedFormatsInterface.cc | 4 +- .../gsiDeclQMediaStreamsControl.cc | 26 +-- .../gsiDeclQMediaVideoProbeControl.cc | 14 +- .../gsiDeclQMetaDataReaderControl.cc | 16 +- .../gsiDeclQMetaDataWriterControl.cc | 20 +- .../qt5/QtMultimedia/gsiDeclQRadioData.cc | 16 +- .../QtMultimedia/gsiDeclQRadioDataControl.cc | 16 +- .../qt5/QtMultimedia/gsiDeclQRadioTuner.cc | 18 +- .../QtMultimedia/gsiDeclQRadioTunerControl.cc | 32 +-- src/gsiqt/qt5/QtMultimedia/gsiDeclQSound.cc | 14 +- .../qt5/QtMultimedia/gsiDeclQSoundEffect.cc | 14 +- .../gsiDeclQVideoDeviceSelectorControl.cc | 20 +- .../gsiDeclQVideoEncoderSettingsControl.cc | 26 +-- .../gsiDeclQVideoFilterRunnable.cc | 6 +- .../qt5/QtMultimedia/gsiDeclQVideoProbe.cc | 14 +- .../gsiDeclQVideoRendererControl.cc | 16 +- .../qt5/QtMultimedia/gsiDeclQVideoWidget.cc | 88 ++++---- .../gsiDeclQVideoWindowControl.cc | 30 +-- .../QtNetwork/gsiDeclQAbstractNetworkCache.cc | 26 +-- src/gsiqt/qt5/QtNetwork/gsiDeclQDnsLookup.cc | 14 +- src/gsiqt/qt5/QtNetwork/gsiDeclQDtls.cc | 14 +- .../QtNetwork/gsiDeclQDtlsClientVerifier.cc | 14 +- .../qt5/QtNetwork/gsiDeclQHttpMultiPart.cc | 14 +- .../qt5/QtNetwork/gsiDeclQLocalServer.cc | 16 +- .../QtNetwork/gsiDeclQNetworkAccessManager.cc | 20 +- .../gsiDeclQNetworkConfigurationManager.cc | 14 +- .../qt5/QtNetwork/gsiDeclQNetworkCookieJar.cc | 30 +-- .../qt5/QtNetwork/gsiDeclQNetworkDiskCache.cc | 26 +-- .../QtNetwork/gsiDeclQNetworkProxyFactory.cc | 2 +- .../qt5/QtNetwork/gsiDeclQNetworkSession.cc | 14 +- src/gsiqt/qt5/QtNetwork/gsiDeclQTcpServer.cc | 16 +- .../gsiDeclQAbstractPrintDialog.cc | 88 ++++---- .../qt5/QtPrintSupport/gsiDeclQPrintDialog.cc | 88 ++++---- .../qt5/QtPrintSupport/gsiDeclQPrintEngine.cc | 8 +- .../gsiDeclQPrintPreviewDialog.cc | 88 ++++---- .../gsiDeclQPrintPreviewWidget.cc | 86 ++++---- .../qt5/QtPrintSupport/gsiDeclQPrinter.cc | 12 +- src/gsiqt/qt5/QtSql/gsiDeclQSqlDriver.cc | 68 +++--- src/gsiqt/qt5/QtSql/gsiDeclQSqlQueryModel.cc | 152 ++++++------- .../QtSql/gsiDeclQSqlRelationalTableModel.cc | 180 +++++++-------- src/gsiqt/qt5/QtSql/gsiDeclQSqlResult.cc | 44 ++-- src/gsiqt/qt5/QtSql/gsiDeclQSqlTableModel.cc | 174 +++++++-------- .../qt5/QtSvg/gsiDeclQGraphicsSvgItem.cc | 90 ++++---- src/gsiqt/qt5/QtSvg/gsiDeclQSvgGenerator.cc | 6 +- src/gsiqt/qt5/QtSvg/gsiDeclQSvgRenderer.cc | 14 +- src/gsiqt/qt5/QtSvg/gsiDeclQSvgWidget.cc | 86 ++++---- src/gsiqt/qt5/QtUiTools/gsiDeclQUiLoader.cc | 34 +-- .../qt5/QtWidgets/gsiDeclQAbstractButton.cc | 88 ++++---- .../gsiDeclQAbstractGraphicsShapeItem.cc | 76 +++---- .../QtWidgets/gsiDeclQAbstractItemDelegate.cc | 66 +++--- .../qt5/QtWidgets/gsiDeclQAbstractItemView.cc | 180 +++++++-------- .../QtWidgets/gsiDeclQAbstractScrollArea.cc | 94 ++++---- .../qt5/QtWidgets/gsiDeclQAbstractSlider.cc | 88 ++++---- .../qt5/QtWidgets/gsiDeclQAbstractSpinBox.cc | 94 ++++---- src/gsiqt/qt5/QtWidgets/gsiDeclQAction.cc | 14 +- .../qt5/QtWidgets/gsiDeclQActionGroup.cc | 14 +- .../qt5/QtWidgets/gsiDeclQApplication.cc | 14 +- src/gsiqt/qt5/QtWidgets/gsiDeclQBoxLayout.cc | 29 +-- .../qt5/QtWidgets/gsiDeclQButtonGroup.cc | 14 +- .../qt5/QtWidgets/gsiDeclQCalendarWidget.cc | 92 ++++---- src/gsiqt/qt5/QtWidgets/gsiDeclQCheckBox.cc | 88 ++++---- .../qt5/QtWidgets/gsiDeclQColorDialog.cc | 88 ++++---- src/gsiqt/qt5/QtWidgets/gsiDeclQColumnView.cc | 182 ++++++++-------- src/gsiqt/qt5/QtWidgets/gsiDeclQComboBox.cc | 86 ++++---- .../QtWidgets/gsiDeclQCommandLinkButton.cc | 88 ++++---- .../qt5/QtWidgets/gsiDeclQCommonStyle.cc | 158 +++++++------- src/gsiqt/qt5/QtWidgets/gsiDeclQCompleter.cc | 18 +- .../qt5/QtWidgets/gsiDeclQDataWidgetMapper.cc | 16 +- src/gsiqt/qt5/QtWidgets/gsiDeclQDateEdit.cc | 98 ++++----- .../qt5/QtWidgets/gsiDeclQDateTimeEdit.cc | 98 ++++----- .../qt5/QtWidgets/gsiDeclQDesktopWidget.cc | 86 ++++---- src/gsiqt/qt5/QtWidgets/gsiDeclQDial.cc | 88 ++++---- src/gsiqt/qt5/QtWidgets/gsiDeclQDialog.cc | 88 ++++---- .../qt5/QtWidgets/gsiDeclQDialogButtonBox.cc | 86 ++++---- src/gsiqt/qt5/QtWidgets/gsiDeclQDirModel.cc | 154 ++++++------- src/gsiqt/qt5/QtWidgets/gsiDeclQDockWidget.cc | 86 ++++---- .../qt5/QtWidgets/gsiDeclQDoubleSpinBox.cc | 98 ++++----- .../qt5/QtWidgets/gsiDeclQErrorMessage.cc | 88 ++++---- src/gsiqt/qt5/QtWidgets/gsiDeclQFileDialog.cc | 88 ++++---- .../qt5/QtWidgets/gsiDeclQFileIconProvider.cc | 6 +- .../qt5/QtWidgets/gsiDeclQFileSystemModel.cc | 154 ++++++------- src/gsiqt/qt5/QtWidgets/gsiDeclQFocusFrame.cc | 86 ++++---- .../qt5/QtWidgets/gsiDeclQFontComboBox.cc | 86 ++++---- src/gsiqt/qt5/QtWidgets/gsiDeclQFontDialog.cc | 88 ++++---- src/gsiqt/qt5/QtWidgets/gsiDeclQFormLayout.cc | 29 +-- src/gsiqt/qt5/QtWidgets/gsiDeclQFrame.cc | 86 ++++---- src/gsiqt/qt5/QtWidgets/gsiDeclQGesture.cc | 14 +- .../QtWidgets/gsiDeclQGestureRecognizer.cc | 10 +- .../qt5/QtWidgets/gsiDeclQGraphicsAnchor.cc | 14 +- .../QtWidgets/gsiDeclQGraphicsAnchorLayout.cc | 20 +- .../QtWidgets/gsiDeclQGraphicsBlurEffect.cc | 20 +- .../gsiDeclQGraphicsColorizeEffect.cc | 20 +- .../gsiDeclQGraphicsDropShadowEffect.cc | 20 +- .../qt5/QtWidgets/gsiDeclQGraphicsEffect.cc | 20 +- .../QtWidgets/gsiDeclQGraphicsEllipseItem.cc | 76 +++---- .../QtWidgets/gsiDeclQGraphicsGridLayout.cc | 20 +- .../qt5/QtWidgets/gsiDeclQGraphicsItem.cc | 76 +++---- .../gsiDeclQGraphicsItemAnimation.cc | 18 +- .../QtWidgets/gsiDeclQGraphicsItemGroup.cc | 76 +++---- .../qt5/QtWidgets/gsiDeclQGraphicsLayout.cc | 20 +- .../QtWidgets/gsiDeclQGraphicsLayoutItem.cc | 14 +- .../qt5/QtWidgets/gsiDeclQGraphicsLineItem.cc | 76 +++---- .../QtWidgets/gsiDeclQGraphicsLinearLayout.cc | 20 +- .../qt5/QtWidgets/gsiDeclQGraphicsObject.cc | 90 ++++---- .../gsiDeclQGraphicsOpacityEffect.cc | 20 +- .../qt5/QtWidgets/gsiDeclQGraphicsPathItem.cc | 76 +++---- .../QtWidgets/gsiDeclQGraphicsPixmapItem.cc | 76 +++---- .../QtWidgets/gsiDeclQGraphicsPolygonItem.cc | 76 +++---- .../QtWidgets/gsiDeclQGraphicsProxyWidget.cc | 142 ++++++------ .../qt5/QtWidgets/gsiDeclQGraphicsRectItem.cc | 76 +++---- .../qt5/QtWidgets/gsiDeclQGraphicsRotation.cc | 16 +- .../qt5/QtWidgets/gsiDeclQGraphicsScale.cc | 16 +- .../qt5/QtWidgets/gsiDeclQGraphicsScene.cc | 56 ++--- .../gsiDeclQGraphicsSimpleTextItem.cc | 76 +++---- .../qt5/QtWidgets/gsiDeclQGraphicsTextItem.cc | 90 ++++---- .../QtWidgets/gsiDeclQGraphicsTransform.cc | 16 +- .../qt5/QtWidgets/gsiDeclQGraphicsView.cc | 102 ++++----- .../qt5/QtWidgets/gsiDeclQGraphicsWidget.cc | 142 ++++++------ src/gsiqt/qt5/QtWidgets/gsiDeclQGridLayout.cc | 29 +-- src/gsiqt/qt5/QtWidgets/gsiDeclQGroupBox.cc | 86 ++++---- src/gsiqt/qt5/QtWidgets/gsiDeclQHBoxLayout.cc | 29 +-- src/gsiqt/qt5/QtWidgets/gsiDeclQHeaderView.cc | 188 ++++++++-------- .../qt5/QtWidgets/gsiDeclQInputDialog.cc | 88 ++++---- .../qt5/QtWidgets/gsiDeclQItemDelegate.cc | 96 ++++---- .../gsiDeclQItemEditorCreatorBase.cc | 2 +- .../QtWidgets/gsiDeclQItemEditorFactory.cc | 6 +- .../qt5/QtWidgets/gsiDeclQKeySequenceEdit.cc | 86 ++++---- src/gsiqt/qt5/QtWidgets/gsiDeclQLCDNumber.cc | 86 ++++---- src/gsiqt/qt5/QtWidgets/gsiDeclQLabel.cc | 86 ++++---- src/gsiqt/qt5/QtWidgets/gsiDeclQLayout.cc | 29 +-- src/gsiqt/qt5/QtWidgets/gsiDeclQLayoutItem.cc | 6 +- src/gsiqt/qt5/QtWidgets/gsiDeclQLineEdit.cc | 86 ++++---- src/gsiqt/qt5/QtWidgets/gsiDeclQListView.cc | 180 +++++++-------- src/gsiqt/qt5/QtWidgets/gsiDeclQListWidget.cc | 186 ++++++++-------- .../qt5/QtWidgets/gsiDeclQListWidgetItem.cc | 14 +- src/gsiqt/qt5/QtWidgets/gsiDeclQMainWindow.cc | 86 ++++---- src/gsiqt/qt5/QtWidgets/gsiDeclQMdiArea.cc | 94 ++++---- .../qt5/QtWidgets/gsiDeclQMdiSubWindow.cc | 86 ++++---- src/gsiqt/qt5/QtWidgets/gsiDeclQMenu.cc | 86 ++++---- src/gsiqt/qt5/QtWidgets/gsiDeclQMenuBar.cc | 86 ++++---- src/gsiqt/qt5/QtWidgets/gsiDeclQMessageBox.cc | 88 ++++---- src/gsiqt/qt5/QtWidgets/gsiDeclQPanGesture.cc | 14 +- .../qt5/QtWidgets/gsiDeclQPinchGesture.cc | 14 +- .../gsiDeclQPlainTextDocumentLayout.cc | 54 ++--- .../qt5/QtWidgets/gsiDeclQPlainTextEdit.cc | 104 ++++----- .../qt5/QtWidgets/gsiDeclQProgressBar.cc | 86 ++++---- .../qt5/QtWidgets/gsiDeclQProgressDialog.cc | 88 ++++---- src/gsiqt/qt5/QtWidgets/gsiDeclQPushButton.cc | 88 ++++---- .../qt5/QtWidgets/gsiDeclQRadioButton.cc | 88 ++++---- src/gsiqt/qt5/QtWidgets/gsiDeclQRubberBand.cc | 86 ++++---- src/gsiqt/qt5/QtWidgets/gsiDeclQScrollArea.cc | 94 ++++---- src/gsiqt/qt5/QtWidgets/gsiDeclQScrollBar.cc | 88 ++++---- src/gsiqt/qt5/QtWidgets/gsiDeclQShortcut.cc | 14 +- src/gsiqt/qt5/QtWidgets/gsiDeclQSizeGrip.cc | 86 ++++---- src/gsiqt/qt5/QtWidgets/gsiDeclQSlider.cc | 88 ++++---- src/gsiqt/qt5/QtWidgets/gsiDeclQSpacerItem.cc | 6 +- src/gsiqt/qt5/QtWidgets/gsiDeclQSpinBox.cc | 98 ++++----- .../qt5/QtWidgets/gsiDeclQSplashScreen.cc | 88 ++++---- src/gsiqt/qt5/QtWidgets/gsiDeclQSplitter.cc | 86 ++++---- .../qt5/QtWidgets/gsiDeclQSplitterHandle.cc | 86 ++++---- .../qt5/QtWidgets/gsiDeclQStackedLayout.cc | 29 +-- .../qt5/QtWidgets/gsiDeclQStackedWidget.cc | 86 ++++---- src/gsiqt/qt5/QtWidgets/gsiDeclQStatusBar.cc | 86 ++++---- src/gsiqt/qt5/QtWidgets/gsiDeclQStyle.cc | 158 +++++++------- .../qt5/QtWidgets/gsiDeclQStylePlugin.cc | 16 +- .../QtWidgets/gsiDeclQStyledItemDelegate.cc | 74 +++---- .../qt5/QtWidgets/gsiDeclQSwipeGesture.cc | 14 +- .../qt5/QtWidgets/gsiDeclQSystemTrayIcon.cc | 14 +- src/gsiqt/qt5/QtWidgets/gsiDeclQTabBar.cc | 94 ++++---- src/gsiqt/qt5/QtWidgets/gsiDeclQTabWidget.cc | 90 ++++---- src/gsiqt/qt5/QtWidgets/gsiDeclQTableView.cc | 180 +++++++-------- .../qt5/QtWidgets/gsiDeclQTableWidget.cc | 188 ++++++++-------- .../qt5/QtWidgets/gsiDeclQTableWidgetItem.cc | 12 +- .../QtWidgets/gsiDeclQTapAndHoldGesture.cc | 14 +- src/gsiqt/qt5/QtWidgets/gsiDeclQTapGesture.cc | 14 +- .../qt5/QtWidgets/gsiDeclQTextBrowser.cc | 106 ++++----- src/gsiqt/qt5/QtWidgets/gsiDeclQTextEdit.cc | 104 ++++----- src/gsiqt/qt5/QtWidgets/gsiDeclQTimeEdit.cc | 98 ++++----- src/gsiqt/qt5/QtWidgets/gsiDeclQToolBar.cc | 86 ++++---- src/gsiqt/qt5/QtWidgets/gsiDeclQToolBox.cc | 90 ++++---- src/gsiqt/qt5/QtWidgets/gsiDeclQToolButton.cc | 88 ++++---- src/gsiqt/qt5/QtWidgets/gsiDeclQTreeView.cc | 192 ++++++++-------- src/gsiqt/qt5/QtWidgets/gsiDeclQTreeWidget.cc | 200 ++++++++--------- .../qt5/QtWidgets/gsiDeclQTreeWidgetItem.cc | 16 +- .../qt5/QtWidgets/gsiDeclQUndoCommand.cc | 2 +- src/gsiqt/qt5/QtWidgets/gsiDeclQUndoGroup.cc | 14 +- src/gsiqt/qt5/QtWidgets/gsiDeclQUndoStack.cc | 14 +- src/gsiqt/qt5/QtWidgets/gsiDeclQUndoView.cc | 180 +++++++-------- src/gsiqt/qt5/QtWidgets/gsiDeclQVBoxLayout.cc | 29 +-- src/gsiqt/qt5/QtWidgets/gsiDeclQWidget.cc | 86 ++++---- .../qt5/QtWidgets/gsiDeclQWidgetAction.cc | 18 +- src/gsiqt/qt5/QtWidgets/gsiDeclQWidgetItem.cc | 6 +- src/gsiqt/qt5/QtWidgets/gsiDeclQWizard.cc | 92 ++++---- src/gsiqt/qt5/QtWidgets/gsiDeclQWizardPage.cc | 86 ++++---- .../qt5/QtXml/gsiDeclQXmlContentHandler.cc | 32 +-- src/gsiqt/qt5/QtXml/gsiDeclQXmlDTDHandler.cc | 14 +- src/gsiqt/qt5/QtXml/gsiDeclQXmlDeclHandler.cc | 20 +- .../qt5/QtXml/gsiDeclQXmlDefaultHandler.cc | 84 +++---- .../qt5/QtXml/gsiDeclQXmlErrorHandler.cc | 6 +- src/gsiqt/qt5/QtXml/gsiDeclQXmlInputSource.cc | 6 +- .../qt5/QtXml/gsiDeclQXmlLexicalHandler.cc | 12 +- .../qt5/QtXml/gsiDeclQXmlSimpleReader.cc | 38 ++-- .../gsiDeclQAbstractMessageHandler.cc | 22 +- .../gsiDeclQAbstractUriResolver.cc | 18 +- .../gsiDeclQAbstractXmlReceiver.cc | 20 +- .../qt5/QtXmlPatterns/gsiDeclQXmlFormatter.cc | 20 +- .../QtXmlPatterns/gsiDeclQXmlSerializer.cc | 20 +- .../qt6/QtCore/gsiDeclQAbstractAnimation.cc | 22 +- .../QtCore/gsiDeclQAbstractEventDispatcher.cc | 36 +-- .../qt6/QtCore/gsiDeclQAbstractItemModel.cc | 160 +++++++------- .../qt6/QtCore/gsiDeclQAbstractListModel.cc | 154 ++++++------- .../gsiDeclQAbstractNativeEventFilter.cc | 6 +- .../qt6/QtCore/gsiDeclQAbstractProxyModel.cc | 170 +++++++-------- .../qt6/QtCore/gsiDeclQAbstractTableModel.cc | 156 ++++++------- .../qt6/QtCore/gsiDeclQAnimationDriver.cc | 14 +- .../qt6/QtCore/gsiDeclQAnimationGroup.cc | 22 +- src/gsiqt/qt6/QtCore/gsiDeclQChildEvent.cc | 2 +- .../gsiDeclQConcatenateTablesProxyModel.cc | 160 +++++++------- .../qt6/QtCore/gsiDeclQCoreApplication.cc | 14 +- .../gsiDeclQDynamicPropertyChangeEvent.cc | 2 +- src/gsiqt/qt6/QtCore/gsiDeclQEvent.cc | 2 +- src/gsiqt/qt6/QtCore/gsiDeclQEventLoop.cc | 14 +- src/gsiqt/qt6/QtCore/gsiDeclQFileDevice.cc | 32 +-- src/gsiqt/qt6/QtCore/gsiDeclQFileSelector.cc | 14 +- .../qt6/QtCore/gsiDeclQFileSystemWatcher.cc | 14 +- .../qt6/QtCore/gsiDeclQIdentityProxyModel.cc | 170 +++++++-------- .../qt6/QtCore/gsiDeclQItemSelectionModel.cc | 26 +-- src/gsiqt/qt6/QtCore/gsiDeclQLibrary.cc | 14 +- src/gsiqt/qt6/QtCore/gsiDeclQMimeData.cc | 20 +- src/gsiqt/qt6/QtCore/gsiDeclQObject.cc | 14 +- .../QtCore/gsiDeclQParallelAnimationGroup.cc | 22 +- .../qt6/QtCore/gsiDeclQPauseAnimation.cc | 22 +- src/gsiqt/qt6/QtCore/gsiDeclQPluginLoader.cc | 14 +- .../qt6/QtCore/gsiDeclQPropertyAnimation.cc | 30 +-- src/gsiqt/qt6/QtCore/gsiDeclQSaveFile.cc | 32 +-- .../gsiDeclQSequentialAnimationGroup.cc | 22 +- src/gsiqt/qt6/QtCore/gsiDeclQSettings.cc | 14 +- src/gsiqt/qt6/QtCore/gsiDeclQSharedMemory.cc | 14 +- src/gsiqt/qt6/QtCore/gsiDeclQSignalMapper.cc | 14 +- .../qt6/QtCore/gsiDeclQSocketNotifier.cc | 14 +- .../QtCore/gsiDeclQSortFilterProxyModel.cc | 182 ++++++++-------- .../qt6/QtCore/gsiDeclQStringListModel.cc | 154 ++++++------- src/gsiqt/qt6/QtCore/gsiDeclQThread.cc | 14 +- src/gsiqt/qt6/QtCore/gsiDeclQThreadPool.cc | 14 +- src/gsiqt/qt6/QtCore/gsiDeclQTimeLine.cc | 16 +- src/gsiqt/qt6/QtCore/gsiDeclQTimer.cc | 14 +- src/gsiqt/qt6/QtCore/gsiDeclQTimerEvent.cc | 2 +- src/gsiqt/qt6/QtCore/gsiDeclQTranslator.cc | 22 +- .../qt6/QtCore/gsiDeclQTransposeProxyModel.cc | 170 +++++++-------- .../qt6/QtCore/gsiDeclQVariantAnimation.cc | 30 +-- .../QtCore/gsiDeclQXmlStreamEntityResolver.cc | 6 +- .../qt6/QtCore5Compat/gsiDeclQTextCodec.cc | 12 +- .../gsiDeclQXmlContentHandler.cc | 32 +-- .../QtCore5Compat/gsiDeclQXmlDTDHandler.cc | 14 +- .../QtCore5Compat/gsiDeclQXmlDeclHandler.cc | 20 +- .../gsiDeclQXmlDefaultHandler.cc | 84 +++---- .../QtCore5Compat/gsiDeclQXmlErrorHandler.cc | 6 +- .../QtCore5Compat/gsiDeclQXmlInputSource.cc | 6 +- .../gsiDeclQXmlLexicalHandler.cc | 12 +- .../QtCore5Compat/gsiDeclQXmlSimpleReader.cc | 38 ++-- .../QtGui/gsiDeclQAbstractFileIconProvider.cc | 8 +- .../gsiDeclQAbstractTextDocumentLayout.cc | 54 ++--- .../gsiDeclQAccessibleActionInterface.cc | 8 +- ...gsiDeclQAccessibleEditableTextInterface.cc | 14 +- .../QtGui/gsiDeclQAccessibleTableInterface.cc | 22 +- .../QtGui/gsiDeclQAccessibleTextInterface.cc | 62 +++--- .../QtGui/gsiDeclQAccessibleValueInterface.cc | 2 +- .../gsiDeclQAccessible_ActivationObserver.cc | 2 +- src/gsiqt/qt6/QtGui/gsiDeclQAction.cc | 14 +- src/gsiqt/qt6/QtGui/gsiDeclQActionEvent.cc | 2 +- src/gsiqt/qt6/QtGui/gsiDeclQActionGroup.cc | 14 +- .../gsiDeclQApplicationStateChangeEvent.cc | 2 +- src/gsiqt/qt6/QtGui/gsiDeclQBitmap.cc | 6 +- src/gsiqt/qt6/QtGui/gsiDeclQCloseEvent.cc | 2 +- .../qt6/QtGui/gsiDeclQContextMenuEvent.cc | 4 +- .../qt6/QtGui/gsiDeclQDoubleValidator.cc | 20 +- src/gsiqt/qt6/QtGui/gsiDeclQDrag.cc | 14 +- src/gsiqt/qt6/QtGui/gsiDeclQDragEnterEvent.cc | 2 +- src/gsiqt/qt6/QtGui/gsiDeclQDragLeaveEvent.cc | 2 +- src/gsiqt/qt6/QtGui/gsiDeclQDragMoveEvent.cc | 2 +- src/gsiqt/qt6/QtGui/gsiDeclQDropEvent.cc | 2 +- src/gsiqt/qt6/QtGui/gsiDeclQEnterEvent.cc | 4 +- src/gsiqt/qt6/QtGui/gsiDeclQExposeEvent.cc | 2 +- src/gsiqt/qt6/QtGui/gsiDeclQFileOpenEvent.cc | 2 +- .../qt6/QtGui/gsiDeclQFileSystemModel.cc | 160 +++++++------- src/gsiqt/qt6/QtGui/gsiDeclQFocusEvent.cc | 2 +- src/gsiqt/qt6/QtGui/gsiDeclQGenericPlugin.cc | 18 +- src/gsiqt/qt6/QtGui/gsiDeclQGuiApplication.cc | 14 +- src/gsiqt/qt6/QtGui/gsiDeclQHelpEvent.cc | 2 +- src/gsiqt/qt6/QtGui/gsiDeclQHideEvent.cc | 2 +- src/gsiqt/qt6/QtGui/gsiDeclQHoverEvent.cc | 4 +- src/gsiqt/qt6/QtGui/gsiDeclQIconDragEvent.cc | 2 +- src/gsiqt/qt6/QtGui/gsiDeclQIconEngine.cc | 54 ++--- .../qt6/QtGui/gsiDeclQIconEnginePlugin.cc | 16 +- src/gsiqt/qt6/QtGui/gsiDeclQImage.cc | 6 +- src/gsiqt/qt6/QtGui/gsiDeclQImageIOHandler.cc | 14 +- src/gsiqt/qt6/QtGui/gsiDeclQImageIOPlugin.cc | 22 +- src/gsiqt/qt6/QtGui/gsiDeclQInputDevice.cc | 14 +- src/gsiqt/qt6/QtGui/gsiDeclQInputEvent.cc | 4 +- .../qt6/QtGui/gsiDeclQInputMethodEvent.cc | 2 +- .../QtGui/gsiDeclQInputMethodQueryEvent.cc | 2 +- src/gsiqt/qt6/QtGui/gsiDeclQIntValidator.cc | 20 +- src/gsiqt/qt6/QtGui/gsiDeclQKeyEvent.cc | 4 +- src/gsiqt/qt6/QtGui/gsiDeclQMouseEvent.cc | 4 +- src/gsiqt/qt6/QtGui/gsiDeclQMoveEvent.cc | 2 +- src/gsiqt/qt6/QtGui/gsiDeclQMovie.cc | 14 +- .../qt6/QtGui/gsiDeclQNativeGestureEvent.cc | 4 +- .../qt6/QtGui/gsiDeclQOffscreenSurface.cc | 14 +- .../qt6/QtGui/gsiDeclQPagedPaintDevice.cc | 18 +- src/gsiqt/qt6/QtGui/gsiDeclQPaintDevice.cc | 6 +- .../qt6/QtGui/gsiDeclQPaintDeviceWindow.cc | 62 +++--- src/gsiqt/qt6/QtGui/gsiDeclQPaintEngine.cc | 40 ++-- src/gsiqt/qt6/QtGui/gsiDeclQPaintEvent.cc | 2 +- src/gsiqt/qt6/QtGui/gsiDeclQPdfWriter.cc | 32 +-- src/gsiqt/qt6/QtGui/gsiDeclQPicture.cc | 10 +- src/gsiqt/qt6/QtGui/gsiDeclQPixmap.cc | 6 +- .../qt6/QtGui/gsiDeclQPlatformSurfaceEvent.cc | 2 +- src/gsiqt/qt6/QtGui/gsiDeclQPointerEvent.cc | 4 +- src/gsiqt/qt6/QtGui/gsiDeclQPointingDevice.cc | 14 +- src/gsiqt/qt6/QtGui/gsiDeclQRasterWindow.cc | 62 +++--- .../gsiDeclQRegularExpressionValidator.cc | 20 +- src/gsiqt/qt6/QtGui/gsiDeclQResizeEvent.cc | 2 +- src/gsiqt/qt6/QtGui/gsiDeclQScreen.cc | 14 +- .../gsiDeclQScreenOrientationChangeEvent.cc | 2 +- src/gsiqt/qt6/QtGui/gsiDeclQScrollEvent.cc | 2 +- .../qt6/QtGui/gsiDeclQScrollPrepareEvent.cc | 2 +- src/gsiqt/qt6/QtGui/gsiDeclQShortcut.cc | 14 +- src/gsiqt/qt6/QtGui/gsiDeclQShortcutEvent.cc | 2 +- src/gsiqt/qt6/QtGui/gsiDeclQShowEvent.cc | 2 +- .../qt6/QtGui/gsiDeclQSinglePointEvent.cc | 4 +- src/gsiqt/qt6/QtGui/gsiDeclQStandardItem.cc | 14 +- .../qt6/QtGui/gsiDeclQStandardItemModel.cc | 160 +++++++------- src/gsiqt/qt6/QtGui/gsiDeclQStatusTipEvent.cc | 2 +- src/gsiqt/qt6/QtGui/gsiDeclQStyleHints.cc | 14 +- .../qt6/QtGui/gsiDeclQSyntaxHighlighter.cc | 16 +- src/gsiqt/qt6/QtGui/gsiDeclQTabletEvent.cc | 4 +- src/gsiqt/qt6/QtGui/gsiDeclQTextBlockGroup.cc | 20 +- src/gsiqt/qt6/QtGui/gsiDeclQTextDocument.cc | 20 +- src/gsiqt/qt6/QtGui/gsiDeclQTextFrame.cc | 14 +- src/gsiqt/qt6/QtGui/gsiDeclQTextList.cc | 20 +- src/gsiqt/qt6/QtGui/gsiDeclQTextObject.cc | 14 +- .../qt6/QtGui/gsiDeclQTextObjectInterface.cc | 16 +- src/gsiqt/qt6/QtGui/gsiDeclQTextTable.cc | 14 +- .../qt6/QtGui/gsiDeclQToolBarChangeEvent.cc | 2 +- src/gsiqt/qt6/QtGui/gsiDeclQTouchEvent.cc | 4 +- src/gsiqt/qt6/QtGui/gsiDeclQUndoCommand.cc | 2 +- src/gsiqt/qt6/QtGui/gsiDeclQUndoGroup.cc | 14 +- src/gsiqt/qt6/QtGui/gsiDeclQUndoStack.cc | 14 +- src/gsiqt/qt6/QtGui/gsiDeclQValidator.cc | 20 +- .../QtGui/gsiDeclQWhatsThisClickedEvent.cc | 2 +- src/gsiqt/qt6/QtGui/gsiDeclQWheelEvent.cc | 4 +- src/gsiqt/qt6/QtGui/gsiDeclQWindow.cc | 56 ++--- .../QtGui/gsiDeclQWindowStateChangeEvent.cc | 2 +- .../qt6/QtMultimedia/gsiDeclQAudioDecoder.cc | 14 +- .../qt6/QtMultimedia/gsiDeclQAudioInput.cc | 14 +- .../qt6/QtMultimedia/gsiDeclQAudioOutput.cc | 14 +- .../qt6/QtMultimedia/gsiDeclQAudioSink.cc | 14 +- .../qt6/QtMultimedia/gsiDeclQAudioSource.cc | 14 +- src/gsiqt/qt6/QtMultimedia/gsiDeclQCamera.cc | 14 +- .../qt6/QtMultimedia/gsiDeclQImageCapture.cc | 14 +- .../gsiDeclQMediaCaptureSession.cc | 14 +- .../qt6/QtMultimedia/gsiDeclQMediaDevices.cc | 14 +- .../qt6/QtMultimedia/gsiDeclQMediaPlayer.cc | 14 +- .../qt6/QtMultimedia/gsiDeclQMediaRecorder.cc | 14 +- .../qt6/QtMultimedia/gsiDeclQSoundEffect.cc | 14 +- .../qt6/QtMultimedia/gsiDeclQVideoSink.cc | 14 +- .../QtNetwork/gsiDeclQAbstractNetworkCache.cc | 26 +-- src/gsiqt/qt6/QtNetwork/gsiDeclQDnsLookup.cc | 14 +- src/gsiqt/qt6/QtNetwork/gsiDeclQDtls.cc | 14 +- .../QtNetwork/gsiDeclQDtlsClientVerifier.cc | 14 +- .../qt6/QtNetwork/gsiDeclQHttpMultiPart.cc | 14 +- .../qt6/QtNetwork/gsiDeclQLocalServer.cc | 16 +- .../QtNetwork/gsiDeclQNetworkAccessManager.cc | 20 +- .../qt6/QtNetwork/gsiDeclQNetworkCookieJar.cc | 30 +-- .../qt6/QtNetwork/gsiDeclQNetworkDiskCache.cc | 26 +-- .../QtNetwork/gsiDeclQNetworkProxyFactory.cc | 2 +- src/gsiqt/qt6/QtNetwork/gsiDeclQTcpServer.cc | 16 +- .../gsiDeclQAbstractPrintDialog.cc | 88 ++++---- .../qt6/QtPrintSupport/gsiDeclQPrintDialog.cc | 88 ++++---- .../qt6/QtPrintSupport/gsiDeclQPrintEngine.cc | 8 +- .../gsiDeclQPrintPreviewDialog.cc | 88 ++++---- .../gsiDeclQPrintPreviewWidget.cc | 86 ++++---- .../qt6/QtPrintSupport/gsiDeclQPrinter.cc | 18 +- src/gsiqt/qt6/QtSql/gsiDeclQSqlDriver.cc | 70 +++--- src/gsiqt/qt6/QtSql/gsiDeclQSqlQueryModel.cc | 158 +++++++------- .../QtSql/gsiDeclQSqlRelationalTableModel.cc | 186 ++++++++-------- src/gsiqt/qt6/QtSql/gsiDeclQSqlResult.cc | 44 ++-- src/gsiqt/qt6/QtSql/gsiDeclQSqlTableModel.cc | 180 +++++++-------- src/gsiqt/qt6/QtSvg/gsiDeclQSvgGenerator.cc | 6 +- src/gsiqt/qt6/QtSvg/gsiDeclQSvgRenderer.cc | 14 +- src/gsiqt/qt6/QtUiTools/gsiDeclQUiLoader.cc | 34 +-- .../qt6/QtWidgets/gsiDeclQAbstractButton.cc | 88 ++++---- .../gsiDeclQAbstractGraphicsShapeItem.cc | 76 +++---- .../QtWidgets/gsiDeclQAbstractItemDelegate.cc | 66 +++--- .../qt6/QtWidgets/gsiDeclQAbstractItemView.cc | 186 ++++++++-------- .../QtWidgets/gsiDeclQAbstractScrollArea.cc | 96 ++++---- .../qt6/QtWidgets/gsiDeclQAbstractSlider.cc | 88 ++++---- .../qt6/QtWidgets/gsiDeclQAbstractSpinBox.cc | 96 ++++---- .../qt6/QtWidgets/gsiDeclQApplication.cc | 14 +- src/gsiqt/qt6/QtWidgets/gsiDeclQBoxLayout.cc | 39 ++-- .../qt6/QtWidgets/gsiDeclQButtonGroup.cc | 14 +- .../qt6/QtWidgets/gsiDeclQCalendarWidget.cc | 92 ++++---- src/gsiqt/qt6/QtWidgets/gsiDeclQCheckBox.cc | 90 ++++---- .../qt6/QtWidgets/gsiDeclQColorDialog.cc | 88 ++++---- src/gsiqt/qt6/QtWidgets/gsiDeclQColumnView.cc | 188 ++++++++-------- src/gsiqt/qt6/QtWidgets/gsiDeclQComboBox.cc | 90 ++++---- .../QtWidgets/gsiDeclQCommandLinkButton.cc | 90 ++++---- .../qt6/QtWidgets/gsiDeclQCommonStyle.cc | 158 +++++++------- src/gsiqt/qt6/QtWidgets/gsiDeclQCompleter.cc | 18 +- .../qt6/QtWidgets/gsiDeclQDataWidgetMapper.cc | 16 +- src/gsiqt/qt6/QtWidgets/gsiDeclQDateEdit.cc | 100 ++++----- .../qt6/QtWidgets/gsiDeclQDateTimeEdit.cc | 100 ++++----- src/gsiqt/qt6/QtWidgets/gsiDeclQDial.cc | 90 ++++---- src/gsiqt/qt6/QtWidgets/gsiDeclQDialog.cc | 88 ++++---- .../qt6/QtWidgets/gsiDeclQDialogButtonBox.cc | 86 ++++---- src/gsiqt/qt6/QtWidgets/gsiDeclQDockWidget.cc | 88 ++++---- .../qt6/QtWidgets/gsiDeclQDoubleSpinBox.cc | 100 ++++----- .../qt6/QtWidgets/gsiDeclQErrorMessage.cc | 88 ++++---- src/gsiqt/qt6/QtWidgets/gsiDeclQFileDialog.cc | 88 ++++---- .../qt6/QtWidgets/gsiDeclQFileIconProvider.cc | 8 +- src/gsiqt/qt6/QtWidgets/gsiDeclQFocusFrame.cc | 88 ++++---- .../qt6/QtWidgets/gsiDeclQFontComboBox.cc | 90 ++++---- src/gsiqt/qt6/QtWidgets/gsiDeclQFontDialog.cc | 88 ++++---- src/gsiqt/qt6/QtWidgets/gsiDeclQFormLayout.cc | 39 ++-- src/gsiqt/qt6/QtWidgets/gsiDeclQFrame.cc | 88 ++++---- src/gsiqt/qt6/QtWidgets/gsiDeclQGesture.cc | 14 +- .../qt6/QtWidgets/gsiDeclQGestureEvent.cc | 2 +- .../QtWidgets/gsiDeclQGestureRecognizer.cc | 10 +- .../qt6/QtWidgets/gsiDeclQGraphicsAnchor.cc | 14 +- .../QtWidgets/gsiDeclQGraphicsAnchorLayout.cc | 20 +- .../QtWidgets/gsiDeclQGraphicsBlurEffect.cc | 20 +- .../gsiDeclQGraphicsColorizeEffect.cc | 20 +- .../gsiDeclQGraphicsDropShadowEffect.cc | 20 +- .../qt6/QtWidgets/gsiDeclQGraphicsEffect.cc | 20 +- .../QtWidgets/gsiDeclQGraphicsEllipseItem.cc | 76 +++---- .../QtWidgets/gsiDeclQGraphicsGridLayout.cc | 20 +- .../qt6/QtWidgets/gsiDeclQGraphicsItem.cc | 76 +++---- .../gsiDeclQGraphicsItemAnimation.cc | 18 +- .../QtWidgets/gsiDeclQGraphicsItemGroup.cc | 76 +++---- .../qt6/QtWidgets/gsiDeclQGraphicsLayout.cc | 20 +- .../QtWidgets/gsiDeclQGraphicsLayoutItem.cc | 14 +- .../qt6/QtWidgets/gsiDeclQGraphicsLineItem.cc | 76 +++---- .../QtWidgets/gsiDeclQGraphicsLinearLayout.cc | 20 +- .../qt6/QtWidgets/gsiDeclQGraphicsObject.cc | 90 ++++---- .../gsiDeclQGraphicsOpacityEffect.cc | 20 +- .../qt6/QtWidgets/gsiDeclQGraphicsPathItem.cc | 76 +++---- .../QtWidgets/gsiDeclQGraphicsPixmapItem.cc | 76 +++---- .../QtWidgets/gsiDeclQGraphicsPolygonItem.cc | 76 +++---- .../QtWidgets/gsiDeclQGraphicsProxyWidget.cc | 142 ++++++------ .../qt6/QtWidgets/gsiDeclQGraphicsRectItem.cc | 76 +++---- .../qt6/QtWidgets/gsiDeclQGraphicsRotation.cc | 16 +- .../qt6/QtWidgets/gsiDeclQGraphicsScale.cc | 16 +- .../qt6/QtWidgets/gsiDeclQGraphicsScene.cc | 58 ++--- .../gsiDeclQGraphicsSceneContextMenuEvent.cc | 2 +- .../gsiDeclQGraphicsSceneDragDropEvent.cc | 2 +- .../QtWidgets/gsiDeclQGraphicsSceneEvent.cc | 2 +- .../gsiDeclQGraphicsSceneHelpEvent.cc | 2 +- .../gsiDeclQGraphicsSceneHoverEvent.cc | 2 +- .../gsiDeclQGraphicsSceneMouseEvent.cc | 2 +- .../gsiDeclQGraphicsSceneMoveEvent.cc | 2 +- .../gsiDeclQGraphicsSceneResizeEvent.cc | 2 +- .../gsiDeclQGraphicsSceneWheelEvent.cc | 2 +- .../gsiDeclQGraphicsSimpleTextItem.cc | 76 +++---- .../qt6/QtWidgets/gsiDeclQGraphicsTextItem.cc | 90 ++++---- .../QtWidgets/gsiDeclQGraphicsTransform.cc | 16 +- .../qt6/QtWidgets/gsiDeclQGraphicsView.cc | 104 ++++----- .../qt6/QtWidgets/gsiDeclQGraphicsWidget.cc | 142 ++++++------ src/gsiqt/qt6/QtWidgets/gsiDeclQGridLayout.cc | 39 ++-- src/gsiqt/qt6/QtWidgets/gsiDeclQGroupBox.cc | 88 ++++---- src/gsiqt/qt6/QtWidgets/gsiDeclQHBoxLayout.cc | 39 ++-- src/gsiqt/qt6/QtWidgets/gsiDeclQHeaderView.cc | 198 ++++++++--------- .../qt6/QtWidgets/gsiDeclQInputDialog.cc | 88 ++++---- .../qt6/QtWidgets/gsiDeclQItemDelegate.cc | 96 ++++---- .../gsiDeclQItemEditorCreatorBase.cc | 2 +- .../QtWidgets/gsiDeclQItemEditorFactory.cc | 6 +- .../qt6/QtWidgets/gsiDeclQKeySequenceEdit.cc | 86 ++++---- src/gsiqt/qt6/QtWidgets/gsiDeclQLCDNumber.cc | 88 ++++---- src/gsiqt/qt6/QtWidgets/gsiDeclQLabel.cc | 88 ++++---- src/gsiqt/qt6/QtWidgets/gsiDeclQLayout.cc | 39 ++-- src/gsiqt/qt6/QtWidgets/gsiDeclQLayoutItem.cc | 6 +- src/gsiqt/qt6/QtWidgets/gsiDeclQLineEdit.cc | 88 ++++---- src/gsiqt/qt6/QtWidgets/gsiDeclQListView.cc | 186 ++++++++-------- src/gsiqt/qt6/QtWidgets/gsiDeclQListWidget.cc | 192 ++++++++-------- .../qt6/QtWidgets/gsiDeclQListWidgetItem.cc | 12 +- src/gsiqt/qt6/QtWidgets/gsiDeclQMainWindow.cc | 86 ++++---- src/gsiqt/qt6/QtWidgets/gsiDeclQMdiArea.cc | 96 ++++---- .../qt6/QtWidgets/gsiDeclQMdiSubWindow.cc | 86 ++++---- src/gsiqt/qt6/QtWidgets/gsiDeclQMenu.cc | 90 ++++---- src/gsiqt/qt6/QtWidgets/gsiDeclQMenuBar.cc | 90 ++++---- src/gsiqt/qt6/QtWidgets/gsiDeclQMessageBox.cc | 88 ++++---- src/gsiqt/qt6/QtWidgets/gsiDeclQPanGesture.cc | 14 +- .../qt6/QtWidgets/gsiDeclQPinchGesture.cc | 14 +- .../gsiDeclQPlainTextDocumentLayout.cc | 54 ++--- .../qt6/QtWidgets/gsiDeclQPlainTextEdit.cc | 106 ++++----- .../qt6/QtWidgets/gsiDeclQProgressBar.cc | 88 ++++---- .../qt6/QtWidgets/gsiDeclQProgressDialog.cc | 88 ++++---- src/gsiqt/qt6/QtWidgets/gsiDeclQPushButton.cc | 90 ++++---- .../qt6/QtWidgets/gsiDeclQRadioButton.cc | 90 ++++---- src/gsiqt/qt6/QtWidgets/gsiDeclQRubberBand.cc | 88 ++++---- src/gsiqt/qt6/QtWidgets/gsiDeclQScrollArea.cc | 96 ++++---- src/gsiqt/qt6/QtWidgets/gsiDeclQScrollBar.cc | 90 ++++---- src/gsiqt/qt6/QtWidgets/gsiDeclQSizeGrip.cc | 86 ++++---- src/gsiqt/qt6/QtWidgets/gsiDeclQSlider.cc | 90 ++++---- src/gsiqt/qt6/QtWidgets/gsiDeclQSpacerItem.cc | 6 +- src/gsiqt/qt6/QtWidgets/gsiDeclQSpinBox.cc | 100 ++++----- .../qt6/QtWidgets/gsiDeclQSplashScreen.cc | 88 ++++---- src/gsiqt/qt6/QtWidgets/gsiDeclQSplitter.cc | 88 ++++---- .../qt6/QtWidgets/gsiDeclQSplitterHandle.cc | 86 ++++---- .../qt6/QtWidgets/gsiDeclQStackedLayout.cc | 39 ++-- .../qt6/QtWidgets/gsiDeclQStackedWidget.cc | 88 ++++---- src/gsiqt/qt6/QtWidgets/gsiDeclQStatusBar.cc | 86 ++++---- src/gsiqt/qt6/QtWidgets/gsiDeclQStyle.cc | 158 +++++++------- .../qt6/QtWidgets/gsiDeclQStylePlugin.cc | 16 +- .../QtWidgets/gsiDeclQStyledItemDelegate.cc | 74 +++---- .../qt6/QtWidgets/gsiDeclQSwipeGesture.cc | 14 +- .../qt6/QtWidgets/gsiDeclQSystemTrayIcon.cc | 14 +- src/gsiqt/qt6/QtWidgets/gsiDeclQTabBar.cc | 98 ++++----- src/gsiqt/qt6/QtWidgets/gsiDeclQTabWidget.cc | 92 ++++---- src/gsiqt/qt6/QtWidgets/gsiDeclQTableView.cc | 186 ++++++++-------- .../qt6/QtWidgets/gsiDeclQTableWidget.cc | 194 ++++++++--------- .../qt6/QtWidgets/gsiDeclQTableWidgetItem.cc | 12 +- .../QtWidgets/gsiDeclQTapAndHoldGesture.cc | 14 +- src/gsiqt/qt6/QtWidgets/gsiDeclQTapGesture.cc | 14 +- .../qt6/QtWidgets/gsiDeclQTextBrowser.cc | 110 +++++----- src/gsiqt/qt6/QtWidgets/gsiDeclQTextEdit.cc | 106 ++++----- src/gsiqt/qt6/QtWidgets/gsiDeclQTimeEdit.cc | 100 ++++----- src/gsiqt/qt6/QtWidgets/gsiDeclQToolBar.cc | 88 ++++---- src/gsiqt/qt6/QtWidgets/gsiDeclQToolBox.cc | 92 ++++---- src/gsiqt/qt6/QtWidgets/gsiDeclQToolButton.cc | 90 ++++---- src/gsiqt/qt6/QtWidgets/gsiDeclQTreeView.cc | 198 ++++++++--------- src/gsiqt/qt6/QtWidgets/gsiDeclQTreeWidget.cc | 206 +++++++++--------- .../qt6/QtWidgets/gsiDeclQTreeWidgetItem.cc | 16 +- src/gsiqt/qt6/QtWidgets/gsiDeclQUndoView.cc | 186 ++++++++-------- src/gsiqt/qt6/QtWidgets/gsiDeclQVBoxLayout.cc | 39 ++-- src/gsiqt/qt6/QtWidgets/gsiDeclQWidget.cc | 86 ++++---- .../qt6/QtWidgets/gsiDeclQWidgetAction.cc | 18 +- src/gsiqt/qt6/QtWidgets/gsiDeclQWidgetItem.cc | 6 +- src/gsiqt/qt6/QtWidgets/gsiDeclQWizard.cc | 92 ++++---- src/gsiqt/qt6/QtWidgets/gsiDeclQWizardPage.cc | 86 ++++---- 930 files changed, 23103 insertions(+), 23086 deletions(-) diff --git a/scripts/mkqtdecl_common/produce.rb b/scripts/mkqtdecl_common/produce.rb index 03842fd6d..a5d0b99c6 100755 --- a/scripts/mkqtdecl_common/produce.rb +++ b/scripts/mkqtdecl_common/produce.rb @@ -2995,12 +2995,8 @@ END ofile.puts("static void _call_cbs_#{mn}_#{hk}_#{i_var} (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) ") ofile.puts("{") ofile.puts(" __SUPPRESS_UNUSED_WARNING(args);") - if !ant.empty? - ofile.puts(" tl::Heap heap;") - end - ant.each_with_index do |at,ia| - ofile.puts(" #{at.renamed_type(alist[ia]).gsi_decl_arg(decl_obj)} = args.read<#{at.gsi_decl_arg(decl_obj)} > (heap);") - end + produce_arg_read(ofile, decl_obj, func, alist, conf.kept_args(bd)) + produce_keep_self(ofile, alist, "(#{cls} *)cls", conf.owner_args(bd)) if !rt.is_void? ofile.puts(" ret.write<#{rt.gsi_decl_return(decl_obj)} > ((#{rt.gsi_decl_return(decl_obj)})((#{clsn}_Adaptor *)cls)->cbs_#{mn}_#{hk}_#{i_var} (#{alist.join(', ')}));") else diff --git a/src/gsiqt/qt4/QtCore/gsiDeclQAbstractItemModel.cc b/src/gsiqt/qt4/QtCore/gsiDeclQAbstractItemModel.cc index d0b077bf0..12a28ad6a 100644 --- a/src/gsiqt/qt4/QtCore/gsiDeclQAbstractItemModel.cc +++ b/src/gsiqt/qt4/QtCore/gsiDeclQAbstractItemModel.cc @@ -1964,7 +1964,7 @@ static void _call_cbs_buddy_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QAbstractItemModel_Adaptor *)cls)->cbs_buddy_c2395_0 (arg1)); } @@ -1987,7 +1987,7 @@ static void _call_cbs_canFetchMore_c2395_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractItemModel_Adaptor *)cls)->cbs_canFetchMore_c2395_0 (arg1)); } @@ -2054,7 +2054,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemModel_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -2078,7 +2078,7 @@ static void _call_cbs_columnCount_c2395_1 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((int)((QAbstractItemModel_Adaptor *)cls)->cbs_columnCount_c2395_1 (arg1)); } @@ -2173,7 +2173,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemModel_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -2199,8 +2199,8 @@ static void _call_cbs_data_c3054_1 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::DisplayRole, heap); ret.write ((QVariant)((QAbstractItemModel_Adaptor *)cls)->cbs_data_c3054_1 (arg1, arg2)); } @@ -2289,7 +2289,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemModel_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -2321,11 +2321,11 @@ static void _call_cbs_dropMimeData_7425_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMimeData *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - const QModelIndex &arg5 = args.read (heap); + const QMimeData *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + const QModelIndex &arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractItemModel_Adaptor *)cls)->cbs_dropMimeData_7425_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -2475,7 +2475,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractItemModel_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -2500,8 +2500,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractItemModel_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -2524,7 +2524,7 @@ static void _call_cbs_fetchMore_2395_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemModel_Adaptor *)cls)->cbs_fetchMore_2395_0 (arg1); } @@ -2548,7 +2548,7 @@ static void _call_cbs_flags_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QFlags)((QAbstractItemModel_Adaptor *)cls)->cbs_flags_c2395_0 (arg1)); } @@ -2571,7 +2571,7 @@ static void _call_cbs_hasChildren_c2395_1 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QAbstractItemModel_Adaptor *)cls)->cbs_hasChildren_c2395_1 (arg1)); } @@ -2598,9 +2598,9 @@ static void _call_cbs_headerData_c3231_1 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::DisplayRole, heap); ret.write ((QVariant)((QAbstractItemModel_Adaptor *)cls)->cbs_headerData_c3231_1 (arg1, arg2, arg3)); } @@ -2651,9 +2651,9 @@ static void _call_cbs_index_c3713_1 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((QModelIndex)((QAbstractItemModel_Adaptor *)cls)->cbs_index_c3713_1 (arg1, arg2, arg3)); } @@ -2680,9 +2680,9 @@ static void _call_cbs_insertColumns_3713_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QAbstractItemModel_Adaptor *)cls)->cbs_insertColumns_3713_1 (arg1, arg2, arg3)); } @@ -2709,9 +2709,9 @@ static void _call_cbs_insertRows_3713_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QAbstractItemModel_Adaptor *)cls)->cbs_insertRows_3713_1 (arg1, arg2, arg3)); } @@ -2734,7 +2734,7 @@ static void _call_cbs_itemData_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QMap)((QAbstractItemModel_Adaptor *)cls)->cbs_itemData_c2395_0 (arg1)); } @@ -2793,11 +2793,11 @@ static void _call_cbs_match_c7932_2 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - const QVariant &arg3 = args.read (heap); - int arg4 = args.read (heap); - QFlags arg5 = args.read > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QVariant &arg3 = gsi::arg_reader() (args, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (1, heap); + QFlags arg5 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (Qt::MatchFlags(Qt::MatchStartsWith|Qt::MatchWrap), heap); ret.write > ((QList)((QAbstractItemModel_Adaptor *)cls)->cbs_match_c7932_2 (arg1, arg2, arg3, arg4, arg5)); } @@ -2820,7 +2820,7 @@ static void _call_cbs_mimeData_c3010_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); ret.write ((QMimeData *)((QAbstractItemModel_Adaptor *)cls)->cbs_mimeData_c3010_0 (arg1)); } @@ -2862,7 +2862,7 @@ static void _call_cbs_parent_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QAbstractItemModel_Adaptor *)cls)->cbs_parent_c2395_0 (arg1)); } @@ -2921,9 +2921,9 @@ static void _call_cbs_removeColumns_3713_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QAbstractItemModel_Adaptor *)cls)->cbs_removeColumns_3713_1 (arg1, arg2, arg3)); } @@ -2950,9 +2950,9 @@ static void _call_cbs_removeRows_3713_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QAbstractItemModel_Adaptor *)cls)->cbs_removeRows_3713_1 (arg1, arg2, arg3)); } @@ -3010,7 +3010,7 @@ static void _call_cbs_rowCount_c2395_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((int)((QAbstractItemModel_Adaptor *)cls)->cbs_rowCount_c2395_1 (arg1)); } @@ -3051,9 +3051,9 @@ static void _call_cbs_setData_5065_1 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::EditRole, heap); ret.write ((bool)((QAbstractItemModel_Adaptor *)cls)->cbs_setData_5065_1 (arg1, arg2, arg3)); } @@ -3082,10 +3082,10 @@ static void _call_cbs_setHeaderData_5242_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - const QVariant &arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + const QVariant &arg3 = gsi::arg_reader() (args, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::EditRole, heap); ret.write ((bool)((QAbstractItemModel_Adaptor *)cls)->cbs_setHeaderData_5242_1 (arg1, arg2, arg3, arg4)); } @@ -3110,8 +3110,8 @@ static void _call_cbs_setItemData_5414_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QMap &arg2 = args.read & > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QMap &arg2 = gsi::arg_reader & >() (args, heap); ret.write ((bool)((QAbstractItemModel_Adaptor *)cls)->cbs_setItemData_5414_0 (arg1, arg2)); } @@ -3155,8 +3155,8 @@ static void _call_cbs_sort_2340_1 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::AscendingOrder), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemModel_Adaptor *)cls)->cbs_sort_2340_1 (arg1, arg2); } @@ -3180,7 +3180,7 @@ static void _call_cbs_span_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QSize)((QAbstractItemModel_Adaptor *)cls)->cbs_span_c2395_0 (arg1)); } @@ -3241,7 +3241,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemModel_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt4/QtCore/gsiDeclQAbstractListModel.cc b/src/gsiqt/qt4/QtCore/gsiDeclQAbstractListModel.cc index b482b6411..8c160cb8b 100644 --- a/src/gsiqt/qt4/QtCore/gsiDeclQAbstractListModel.cc +++ b/src/gsiqt/qt4/QtCore/gsiDeclQAbstractListModel.cc @@ -1125,7 +1125,7 @@ static void _call_cbs_buddy_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QAbstractListModel_Adaptor *)cls)->cbs_buddy_c2395_0 (arg1)); } @@ -1148,7 +1148,7 @@ static void _call_cbs_canFetchMore_c2395_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractListModel_Adaptor *)cls)->cbs_canFetchMore_c2395_0 (arg1)); } @@ -1215,7 +1215,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractListModel_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1311,7 +1311,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractListModel_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1337,8 +1337,8 @@ static void _call_cbs_data_c3054_1 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::DisplayRole, heap); ret.write ((QVariant)((QAbstractListModel_Adaptor *)cls)->cbs_data_c3054_1 (arg1, arg2)); } @@ -1427,7 +1427,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractListModel_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -1459,11 +1459,11 @@ static void _call_cbs_dropMimeData_7425_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMimeData *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - const QModelIndex &arg5 = args.read (heap); + const QMimeData *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + const QModelIndex &arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractListModel_Adaptor *)cls)->cbs_dropMimeData_7425_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -1613,7 +1613,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractListModel_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1638,8 +1638,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractListModel_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1662,7 +1662,7 @@ static void _call_cbs_fetchMore_2395_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractListModel_Adaptor *)cls)->cbs_fetchMore_2395_0 (arg1); } @@ -1686,7 +1686,7 @@ static void _call_cbs_flags_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QFlags)((QAbstractListModel_Adaptor *)cls)->cbs_flags_c2395_0 (arg1)); } @@ -1713,9 +1713,9 @@ static void _call_cbs_headerData_c3231_1 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::DisplayRole, heap); ret.write ((QVariant)((QAbstractListModel_Adaptor *)cls)->cbs_headerData_c3231_1 (arg1, arg2, arg3)); } @@ -1766,9 +1766,9 @@ static void _call_cbs_index_c3713_2 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((QModelIndex)((QAbstractListModel_Adaptor *)cls)->cbs_index_c3713_2 (arg1, arg2, arg3)); } @@ -1795,9 +1795,9 @@ static void _call_cbs_insertColumns_3713_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QAbstractListModel_Adaptor *)cls)->cbs_insertColumns_3713_1 (arg1, arg2, arg3)); } @@ -1824,9 +1824,9 @@ static void _call_cbs_insertRows_3713_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QAbstractListModel_Adaptor *)cls)->cbs_insertRows_3713_1 (arg1, arg2, arg3)); } @@ -1849,7 +1849,7 @@ static void _call_cbs_itemData_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QMap)((QAbstractListModel_Adaptor *)cls)->cbs_itemData_c2395_0 (arg1)); } @@ -1908,11 +1908,11 @@ static void _call_cbs_match_c7932_2 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - const QVariant &arg3 = args.read (heap); - int arg4 = args.read (heap); - QFlags arg5 = args.read > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QVariant &arg3 = gsi::arg_reader() (args, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (1, heap); + QFlags arg5 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (Qt::MatchFlags(Qt::MatchStartsWith|Qt::MatchWrap), heap); ret.write > ((QList)((QAbstractListModel_Adaptor *)cls)->cbs_match_c7932_2 (arg1, arg2, arg3, arg4, arg5)); } @@ -1935,7 +1935,7 @@ static void _call_cbs_mimeData_c3010_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); ret.write ((QMimeData *)((QAbstractListModel_Adaptor *)cls)->cbs_mimeData_c3010_0 (arg1)); } @@ -2013,9 +2013,9 @@ static void _call_cbs_removeColumns_3713_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QAbstractListModel_Adaptor *)cls)->cbs_removeColumns_3713_1 (arg1, arg2, arg3)); } @@ -2042,9 +2042,9 @@ static void _call_cbs_removeRows_3713_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QAbstractListModel_Adaptor *)cls)->cbs_removeRows_3713_1 (arg1, arg2, arg3)); } @@ -2102,7 +2102,7 @@ static void _call_cbs_rowCount_c2395_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((int)((QAbstractListModel_Adaptor *)cls)->cbs_rowCount_c2395_1 (arg1)); } @@ -2143,9 +2143,9 @@ static void _call_cbs_setData_5065_1 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::EditRole, heap); ret.write ((bool)((QAbstractListModel_Adaptor *)cls)->cbs_setData_5065_1 (arg1, arg2, arg3)); } @@ -2174,10 +2174,10 @@ static void _call_cbs_setHeaderData_5242_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - const QVariant &arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + const QVariant &arg3 = gsi::arg_reader() (args, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::EditRole, heap); ret.write ((bool)((QAbstractListModel_Adaptor *)cls)->cbs_setHeaderData_5242_1 (arg1, arg2, arg3, arg4)); } @@ -2202,8 +2202,8 @@ static void _call_cbs_setItemData_5414_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QMap &arg2 = args.read & > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QMap &arg2 = gsi::arg_reader & >() (args, heap); ret.write ((bool)((QAbstractListModel_Adaptor *)cls)->cbs_setItemData_5414_0 (arg1, arg2)); } @@ -2247,8 +2247,8 @@ static void _call_cbs_sort_2340_1 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::AscendingOrder), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractListModel_Adaptor *)cls)->cbs_sort_2340_1 (arg1, arg2); } @@ -2272,7 +2272,7 @@ static void _call_cbs_span_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QSize)((QAbstractListModel_Adaptor *)cls)->cbs_span_c2395_0 (arg1)); } @@ -2333,7 +2333,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractListModel_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt4/QtCore/gsiDeclQAbstractTableModel.cc b/src/gsiqt/qt4/QtCore/gsiDeclQAbstractTableModel.cc index 03e64a184..5f90a5be9 100644 --- a/src/gsiqt/qt4/QtCore/gsiDeclQAbstractTableModel.cc +++ b/src/gsiqt/qt4/QtCore/gsiDeclQAbstractTableModel.cc @@ -1142,7 +1142,7 @@ static void _call_cbs_buddy_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QAbstractTableModel_Adaptor *)cls)->cbs_buddy_c2395_0 (arg1)); } @@ -1165,7 +1165,7 @@ static void _call_cbs_canFetchMore_c2395_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractTableModel_Adaptor *)cls)->cbs_canFetchMore_c2395_0 (arg1)); } @@ -1232,7 +1232,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractTableModel_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1256,7 +1256,7 @@ static void _call_cbs_columnCount_c2395_1 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((int)((QAbstractTableModel_Adaptor *)cls)->cbs_columnCount_c2395_1 (arg1)); } @@ -1351,7 +1351,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractTableModel_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1377,8 +1377,8 @@ static void _call_cbs_data_c3054_1 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::DisplayRole, heap); ret.write ((QVariant)((QAbstractTableModel_Adaptor *)cls)->cbs_data_c3054_1 (arg1, arg2)); } @@ -1467,7 +1467,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractTableModel_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -1499,11 +1499,11 @@ static void _call_cbs_dropMimeData_7425_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMimeData *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - const QModelIndex &arg5 = args.read (heap); + const QMimeData *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + const QModelIndex &arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractTableModel_Adaptor *)cls)->cbs_dropMimeData_7425_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -1653,7 +1653,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractTableModel_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1678,8 +1678,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractTableModel_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1702,7 +1702,7 @@ static void _call_cbs_fetchMore_2395_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractTableModel_Adaptor *)cls)->cbs_fetchMore_2395_0 (arg1); } @@ -1726,7 +1726,7 @@ static void _call_cbs_flags_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QFlags)((QAbstractTableModel_Adaptor *)cls)->cbs_flags_c2395_0 (arg1)); } @@ -1753,9 +1753,9 @@ static void _call_cbs_headerData_c3231_1 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::DisplayRole, heap); ret.write ((QVariant)((QAbstractTableModel_Adaptor *)cls)->cbs_headerData_c3231_1 (arg1, arg2, arg3)); } @@ -1806,9 +1806,9 @@ static void _call_cbs_index_c3713_1 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((QModelIndex)((QAbstractTableModel_Adaptor *)cls)->cbs_index_c3713_1 (arg1, arg2, arg3)); } @@ -1835,9 +1835,9 @@ static void _call_cbs_insertColumns_3713_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QAbstractTableModel_Adaptor *)cls)->cbs_insertColumns_3713_1 (arg1, arg2, arg3)); } @@ -1864,9 +1864,9 @@ static void _call_cbs_insertRows_3713_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QAbstractTableModel_Adaptor *)cls)->cbs_insertRows_3713_1 (arg1, arg2, arg3)); } @@ -1889,7 +1889,7 @@ static void _call_cbs_itemData_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QMap)((QAbstractTableModel_Adaptor *)cls)->cbs_itemData_c2395_0 (arg1)); } @@ -1948,11 +1948,11 @@ static void _call_cbs_match_c7932_2 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - const QVariant &arg3 = args.read (heap); - int arg4 = args.read (heap); - QFlags arg5 = args.read > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QVariant &arg3 = gsi::arg_reader() (args, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (1, heap); + QFlags arg5 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (Qt::MatchFlags(Qt::MatchStartsWith|Qt::MatchWrap), heap); ret.write > ((QList)((QAbstractTableModel_Adaptor *)cls)->cbs_match_c7932_2 (arg1, arg2, arg3, arg4, arg5)); } @@ -1975,7 +1975,7 @@ static void _call_cbs_mimeData_c3010_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); ret.write ((QMimeData *)((QAbstractTableModel_Adaptor *)cls)->cbs_mimeData_c3010_0 (arg1)); } @@ -2053,9 +2053,9 @@ static void _call_cbs_removeColumns_3713_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QAbstractTableModel_Adaptor *)cls)->cbs_removeColumns_3713_1 (arg1, arg2, arg3)); } @@ -2082,9 +2082,9 @@ static void _call_cbs_removeRows_3713_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QAbstractTableModel_Adaptor *)cls)->cbs_removeRows_3713_1 (arg1, arg2, arg3)); } @@ -2142,7 +2142,7 @@ static void _call_cbs_rowCount_c2395_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((int)((QAbstractTableModel_Adaptor *)cls)->cbs_rowCount_c2395_1 (arg1)); } @@ -2183,9 +2183,9 @@ static void _call_cbs_setData_5065_1 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::EditRole, heap); ret.write ((bool)((QAbstractTableModel_Adaptor *)cls)->cbs_setData_5065_1 (arg1, arg2, arg3)); } @@ -2214,10 +2214,10 @@ static void _call_cbs_setHeaderData_5242_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - const QVariant &arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + const QVariant &arg3 = gsi::arg_reader() (args, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::EditRole, heap); ret.write ((bool)((QAbstractTableModel_Adaptor *)cls)->cbs_setHeaderData_5242_1 (arg1, arg2, arg3, arg4)); } @@ -2242,8 +2242,8 @@ static void _call_cbs_setItemData_5414_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QMap &arg2 = args.read & > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QMap &arg2 = gsi::arg_reader & >() (args, heap); ret.write ((bool)((QAbstractTableModel_Adaptor *)cls)->cbs_setItemData_5414_0 (arg1, arg2)); } @@ -2287,8 +2287,8 @@ static void _call_cbs_sort_2340_1 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::AscendingOrder), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractTableModel_Adaptor *)cls)->cbs_sort_2340_1 (arg1, arg2); } @@ -2312,7 +2312,7 @@ static void _call_cbs_span_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QSize)((QAbstractTableModel_Adaptor *)cls)->cbs_span_c2395_0 (arg1)); } @@ -2373,7 +2373,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractTableModel_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt4/QtCore/gsiDeclQCoreApplication.cc b/src/gsiqt/qt4/QtCore/gsiDeclQCoreApplication.cc index 6018c4272..6df74e3e2 100644 --- a/src/gsiqt/qt4/QtCore/gsiDeclQCoreApplication.cc +++ b/src/gsiqt/qt4/QtCore/gsiDeclQCoreApplication.cc @@ -1160,7 +1160,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCoreApplication_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1184,7 +1184,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCoreApplication_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1226,7 +1226,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCoreApplication_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -1250,7 +1250,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCoreApplication_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1275,8 +1275,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCoreApplication_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1331,7 +1331,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCoreApplication_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt4/QtCore/gsiDeclQEventLoop.cc b/src/gsiqt/qt4/QtCore/gsiDeclQEventLoop.cc index 8566c8a60..d44881e16 100644 --- a/src/gsiqt/qt4/QtCore/gsiDeclQEventLoop.cc +++ b/src/gsiqt/qt4/QtCore/gsiDeclQEventLoop.cc @@ -472,7 +472,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QEventLoop_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -496,7 +496,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QEventLoop_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -538,7 +538,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QEventLoop_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -562,7 +562,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QEventLoop_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -587,8 +587,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QEventLoop_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -643,7 +643,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QEventLoop_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt4/QtCore/gsiDeclQFileSystemWatcher.cc b/src/gsiqt/qt4/QtCore/gsiDeclQFileSystemWatcher.cc index 628251502..bb859579a 100644 --- a/src/gsiqt/qt4/QtCore/gsiDeclQFileSystemWatcher.cc +++ b/src/gsiqt/qt4/QtCore/gsiDeclQFileSystemWatcher.cc @@ -500,7 +500,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileSystemWatcher_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -524,7 +524,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileSystemWatcher_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -584,7 +584,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileSystemWatcher_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -608,7 +608,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFileSystemWatcher_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -633,8 +633,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFileSystemWatcher_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -707,7 +707,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileSystemWatcher_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt4/QtCore/gsiDeclQLibrary.cc b/src/gsiqt/qt4/QtCore/gsiDeclQLibrary.cc index 0366c4f2b..ee60d01b3 100644 --- a/src/gsiqt/qt4/QtCore/gsiDeclQLibrary.cc +++ b/src/gsiqt/qt4/QtCore/gsiDeclQLibrary.cc @@ -743,7 +743,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLibrary_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -767,7 +767,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLibrary_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -809,7 +809,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLibrary_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -833,7 +833,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QLibrary_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -858,8 +858,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QLibrary_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -914,7 +914,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLibrary_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt4/QtCore/gsiDeclQMimeData.cc b/src/gsiqt/qt4/QtCore/gsiDeclQMimeData.cc index 5751aad6b..9e1f1c20d 100644 --- a/src/gsiqt/qt4/QtCore/gsiDeclQMimeData.cc +++ b/src/gsiqt/qt4/QtCore/gsiDeclQMimeData.cc @@ -759,7 +759,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMimeData_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -783,7 +783,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMimeData_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -825,7 +825,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMimeData_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -849,7 +849,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMimeData_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -874,8 +874,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMimeData_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -917,7 +917,7 @@ static void _call_cbs_hasFormat_c2025_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMimeData_Adaptor *)cls)->cbs_hasFormat_c2025_0 (arg1)); } @@ -960,8 +960,8 @@ static void _call_cbs_retrieveData_c3693_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QMimeData_Adaptor *)cls)->cbs_retrieveData_c3693_0 (arg1, arg2)); } @@ -998,7 +998,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMimeData_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt4/QtCore/gsiDeclQObject.cc b/src/gsiqt/qt4/QtCore/gsiDeclQObject.cc index 6fb491079..42c9f6ea6 100644 --- a/src/gsiqt/qt4/QtCore/gsiDeclQObject.cc +++ b/src/gsiqt/qt4/QtCore/gsiDeclQObject.cc @@ -973,7 +973,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QObject_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -997,7 +997,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QObject_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1039,7 +1039,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QObject_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -1063,7 +1063,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QObject_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1088,8 +1088,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QObject_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1144,7 +1144,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QObject_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt4/QtCore/gsiDeclQPluginLoader.cc b/src/gsiqt/qt4/QtCore/gsiDeclQPluginLoader.cc index b60b53cde..3d5ff188f 100644 --- a/src/gsiqt/qt4/QtCore/gsiDeclQPluginLoader.cc +++ b/src/gsiqt/qt4/QtCore/gsiDeclQPluginLoader.cc @@ -540,7 +540,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPluginLoader_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -564,7 +564,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPluginLoader_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -606,7 +606,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPluginLoader_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -630,7 +630,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPluginLoader_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -655,8 +655,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPluginLoader_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -711,7 +711,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPluginLoader_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt4/QtCore/gsiDeclQSettings.cc b/src/gsiqt/qt4/QtCore/gsiDeclQSettings.cc index 755ae7e04..76b7ed11b 100644 --- a/src/gsiqt/qt4/QtCore/gsiDeclQSettings.cc +++ b/src/gsiqt/qt4/QtCore/gsiDeclQSettings.cc @@ -1069,7 +1069,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSettings_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1093,7 +1093,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSettings_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1135,7 +1135,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSettings_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -1159,7 +1159,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSettings_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1184,8 +1184,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSettings_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1240,7 +1240,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSettings_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt4/QtCore/gsiDeclQSignalMapper.cc b/src/gsiqt/qt4/QtCore/gsiDeclQSignalMapper.cc index 85651e3d4..a9f00df9c 100644 --- a/src/gsiqt/qt4/QtCore/gsiDeclQSignalMapper.cc +++ b/src/gsiqt/qt4/QtCore/gsiDeclQSignalMapper.cc @@ -601,7 +601,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSignalMapper_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -625,7 +625,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSignalMapper_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -667,7 +667,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSignalMapper_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -691,7 +691,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSignalMapper_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -716,8 +716,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSignalMapper_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -844,7 +844,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSignalMapper_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt4/QtCore/gsiDeclQSocketNotifier.cc b/src/gsiqt/qt4/QtCore/gsiDeclQSocketNotifier.cc index 1e9dc397c..6659ed0d0 100644 --- a/src/gsiqt/qt4/QtCore/gsiDeclQSocketNotifier.cc +++ b/src/gsiqt/qt4/QtCore/gsiDeclQSocketNotifier.cc @@ -437,7 +437,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSocketNotifier_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -461,7 +461,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSocketNotifier_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -503,7 +503,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSocketNotifier_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -527,7 +527,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSocketNotifier_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -552,8 +552,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSocketNotifier_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -608,7 +608,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSocketNotifier_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt4/QtCore/gsiDeclQSystemLocale.cc b/src/gsiqt/qt4/QtCore/gsiDeclQSystemLocale.cc index 2b311fed0..79111a382 100644 --- a/src/gsiqt/qt4/QtCore/gsiDeclQSystemLocale.cc +++ b/src/gsiqt/qt4/QtCore/gsiDeclQSystemLocale.cc @@ -188,8 +188,8 @@ static void _call_cbs_query_c3956_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - QVariant arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + QVariant arg2 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QSystemLocale_Adaptor *)cls)->cbs_query_c3956_0 (arg1, arg2)); } diff --git a/src/gsiqt/qt4/QtCore/gsiDeclQTextCodec.cc b/src/gsiqt/qt4/QtCore/gsiDeclQTextCodec.cc index 32c5ac32d..b9cb7f70f 100644 --- a/src/gsiqt/qt4/QtCore/gsiDeclQTextCodec.cc +++ b/src/gsiqt/qt4/QtCore/gsiDeclQTextCodec.cc @@ -661,9 +661,9 @@ static void _call_cbs_convertFromUnicode_c5514_0 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type * arg1 = args.read::target_type * > (heap); - int arg2 = args.read (heap); - QTextCodec::ConverterState *arg3 = args.read (heap); + const qt_gsi::Converter::target_type * arg1 = gsi::arg_reader::target_type * >() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + QTextCodec::ConverterState *arg3 = gsi::arg_reader() (args, heap); ret.write ((QByteArray)((QTextCodec_Adaptor *)cls)->cbs_convertFromUnicode_c5514_0 (arg1, arg2, arg3)); } @@ -690,9 +690,9 @@ static void _call_cbs_convertToUnicode_c5465_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - int arg2 = args.read (heap); - QTextCodec::ConverterState *arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + QTextCodec::ConverterState *arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)((QTextCodec_Adaptor *)cls)->cbs_convertToUnicode_c5465_0 (arg1, arg2, arg3)); } diff --git a/src/gsiqt/qt4/QtCore/gsiDeclQThread.cc b/src/gsiqt/qt4/QtCore/gsiDeclQThread.cc index a50ef6ad5..00436df2d 100644 --- a/src/gsiqt/qt4/QtCore/gsiDeclQThread.cc +++ b/src/gsiqt/qt4/QtCore/gsiDeclQThread.cc @@ -665,7 +665,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QThread_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -689,7 +689,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QThread_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -731,7 +731,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QThread_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -755,7 +755,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QThread_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -780,8 +780,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QThread_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -969,7 +969,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QThread_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt4/QtCore/gsiDeclQTimeLine.cc b/src/gsiqt/qt4/QtCore/gsiDeclQTimeLine.cc index 4cdf3b199..21e5c7cd2 100644 --- a/src/gsiqt/qt4/QtCore/gsiDeclQTimeLine.cc +++ b/src/gsiqt/qt4/QtCore/gsiDeclQTimeLine.cc @@ -925,7 +925,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeLine_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -949,7 +949,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeLine_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -991,7 +991,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeLine_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -1015,7 +1015,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTimeLine_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1040,8 +1040,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTimeLine_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1146,7 +1146,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeLine_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -1188,7 +1188,7 @@ static void _call_cbs_valueForTime_c767_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((double)((QTimeLine_Adaptor *)cls)->cbs_valueForTime_c767_0 (arg1)); } diff --git a/src/gsiqt/qt4/QtCore/gsiDeclQTimer.cc b/src/gsiqt/qt4/QtCore/gsiDeclQTimer.cc index 54623dbe0..e86d0897e 100644 --- a/src/gsiqt/qt4/QtCore/gsiDeclQTimer.cc +++ b/src/gsiqt/qt4/QtCore/gsiDeclQTimer.cc @@ -505,7 +505,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimer_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -529,7 +529,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimer_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -571,7 +571,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimer_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -595,7 +595,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTimer_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -620,8 +620,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTimer_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -690,7 +690,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimer_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt4/QtCore/gsiDeclQTranslator.cc b/src/gsiqt/qt4/QtCore/gsiDeclQTranslator.cc index ceb795a46..fb22978d8 100644 --- a/src/gsiqt/qt4/QtCore/gsiDeclQTranslator.cc +++ b/src/gsiqt/qt4/QtCore/gsiDeclQTranslator.cc @@ -492,7 +492,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTranslator_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -516,7 +516,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTranslator_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -558,7 +558,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTranslator_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -582,7 +582,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTranslator_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -607,8 +607,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTranslator_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -682,7 +682,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTranslator_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -710,9 +710,9 @@ static void _call_cbs_translate_c4977_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - const char *arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + const char *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)((QTranslator_Adaptor *)cls)->cbs_translate_c4977_1 (arg1, arg2, arg3)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQAbstractButton.cc b/src/gsiqt/qt4/QtGui/gsiDeclQAbstractButton.cc index df207c315..dad91bd5f 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQAbstractButton.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQAbstractButton.cc @@ -1613,7 +1613,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractButton_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1637,7 +1637,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractButton_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1681,7 +1681,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractButton_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1723,7 +1723,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractButton_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1747,7 +1747,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractButton_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1814,7 +1814,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractButton_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1878,7 +1878,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractButton_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -1902,7 +1902,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractButton_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1926,7 +1926,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractButton_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1950,7 +1950,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractButton_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1974,7 +1974,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractButton_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1998,7 +1998,7 @@ static void _call_cbs_enabledChange_864_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractButton_Adaptor *)cls)->cbs_enabledChange_864_0 (arg1); } @@ -2022,7 +2022,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractButton_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -2046,7 +2046,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractButton_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -2071,8 +2071,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractButton_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -2095,7 +2095,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractButton_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -2133,7 +2133,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractButton_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -2156,7 +2156,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractButton_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -2194,7 +2194,7 @@ static void _call_cbs_fontChange_1801_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractButton_Adaptor *)cls)->cbs_fontChange_1801_0 (arg1); } @@ -2218,7 +2218,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QAbstractButton_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -2241,7 +2241,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractButton_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -2265,7 +2265,7 @@ static void _call_cbs_hitButton_c1916_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractButton_Adaptor *)cls)->cbs_hitButton_c1916_0 (arg1)); } @@ -2288,7 +2288,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractButton_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2312,7 +2312,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QAbstractButton_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2335,7 +2335,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractButton_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2359,7 +2359,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractButton_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2403,7 +2403,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractButton_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2427,7 +2427,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QAbstractButton_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2469,7 +2469,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractButton_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2493,7 +2493,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractButton_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2517,7 +2517,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractButton_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2541,7 +2541,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractButton_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2565,7 +2565,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractButton_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2628,7 +2628,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractButton_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2652,7 +2652,7 @@ static void _call_cbs_paletteChange_2113_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPalette &arg1 = args.read (heap); + const QPalette &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractButton_Adaptor *)cls)->cbs_paletteChange_2113_0 (arg1); } @@ -2737,7 +2737,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractButton_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2775,7 +2775,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractButton_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2799,7 +2799,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractButton_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2842,7 +2842,7 @@ static void _call_cbs_styleChange_1228_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyle &arg1 = args.read (heap); + QStyle &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractButton_Adaptor *)cls)->cbs_styleChange_1228_0 (arg1); } @@ -2866,7 +2866,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractButton_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2890,7 +2890,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractButton_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2947,7 +2947,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractButton_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } @@ -2971,7 +2971,7 @@ static void _call_cbs_windowActivationChange_864_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractButton_Adaptor *)cls)->cbs_windowActivationChange_864_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQAbstractGraphicsShapeItem.cc b/src/gsiqt/qt4/QtGui/gsiDeclQAbstractGraphicsShapeItem.cc index 9891b16ac..b7b5fe0de 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQAbstractGraphicsShapeItem.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQAbstractGraphicsShapeItem.cc @@ -848,7 +848,7 @@ static void _call_cbs_advance_767_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractGraphicsShapeItem_Adaptor *)cls)->cbs_advance_767_0 (arg1); } @@ -893,8 +893,8 @@ static void _call_cbs_collidesWithItem_c4977_1 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape), heap); ret.write ((bool)((QAbstractGraphicsShapeItem_Adaptor *)cls)->cbs_collidesWithItem_c4977_1 (arg1, arg2)); } @@ -919,8 +919,8 @@ static void _call_cbs_collidesWithPath_c4877_1 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape), heap); ret.write ((bool)((QAbstractGraphicsShapeItem_Adaptor *)cls)->cbs_collidesWithPath_c4877_1 (arg1, arg2)); } @@ -943,7 +943,7 @@ static void _call_cbs_contains_c1986_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractGraphicsShapeItem_Adaptor *)cls)->cbs_contains_c1986_0 (arg1)); } @@ -966,7 +966,7 @@ static void _call_cbs_contextMenuEvent_3674_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneContextMenuEvent *arg1 = args.read (heap); + QGraphicsSceneContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractGraphicsShapeItem_Adaptor *)cls)->cbs_contextMenuEvent_3674_0 (arg1); } @@ -990,7 +990,7 @@ static void _call_cbs_dragEnterEvent_3315_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractGraphicsShapeItem_Adaptor *)cls)->cbs_dragEnterEvent_3315_0 (arg1); } @@ -1014,7 +1014,7 @@ static void _call_cbs_dragLeaveEvent_3315_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractGraphicsShapeItem_Adaptor *)cls)->cbs_dragLeaveEvent_3315_0 (arg1); } @@ -1038,7 +1038,7 @@ static void _call_cbs_dragMoveEvent_3315_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractGraphicsShapeItem_Adaptor *)cls)->cbs_dragMoveEvent_3315_0 (arg1); } @@ -1062,7 +1062,7 @@ static void _call_cbs_dropEvent_3315_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractGraphicsShapeItem_Adaptor *)cls)->cbs_dropEvent_3315_0 (arg1); } @@ -1086,7 +1086,7 @@ static void _call_cbs_extension_c2119_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVariant &arg1 = args.read (heap); + const QVariant &arg1 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QAbstractGraphicsShapeItem_Adaptor *)cls)->cbs_extension_c2119_0 (arg1)); } @@ -1109,7 +1109,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractGraphicsShapeItem_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1133,7 +1133,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractGraphicsShapeItem_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -1157,7 +1157,7 @@ static void _call_cbs_hoverEnterEvent_3044_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractGraphicsShapeItem_Adaptor *)cls)->cbs_hoverEnterEvent_3044_0 (arg1); } @@ -1181,7 +1181,7 @@ static void _call_cbs_hoverLeaveEvent_3044_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractGraphicsShapeItem_Adaptor *)cls)->cbs_hoverLeaveEvent_3044_0 (arg1); } @@ -1205,7 +1205,7 @@ static void _call_cbs_hoverMoveEvent_3044_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractGraphicsShapeItem_Adaptor *)cls)->cbs_hoverMoveEvent_3044_0 (arg1); } @@ -1229,7 +1229,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractGraphicsShapeItem_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -1253,7 +1253,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QAbstractGraphicsShapeItem_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -1276,7 +1276,7 @@ static void _call_cbs_isObscuredBy_c2614_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractGraphicsShapeItem_Adaptor *)cls)->cbs_isObscuredBy_c2614_0 (arg1)); } @@ -1301,8 +1301,8 @@ static void _call_cbs_itemChange_5658_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QVariant &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QAbstractGraphicsShapeItem_Adaptor *)cls)->cbs_itemChange_5658_0 (arg1, arg2)); } @@ -1325,7 +1325,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractGraphicsShapeItem_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -1349,7 +1349,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractGraphicsShapeItem_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -1373,7 +1373,7 @@ static void _call_cbs_mouseDoubleClickEvent_3049_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractGraphicsShapeItem_Adaptor *)cls)->cbs_mouseDoubleClickEvent_3049_0 (arg1); } @@ -1397,7 +1397,7 @@ static void _call_cbs_mouseMoveEvent_3049_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractGraphicsShapeItem_Adaptor *)cls)->cbs_mouseMoveEvent_3049_0 (arg1); } @@ -1421,7 +1421,7 @@ static void _call_cbs_mousePressEvent_3049_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractGraphicsShapeItem_Adaptor *)cls)->cbs_mousePressEvent_3049_0 (arg1); } @@ -1445,7 +1445,7 @@ static void _call_cbs_mouseReleaseEvent_3049_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractGraphicsShapeItem_Adaptor *)cls)->cbs_mouseReleaseEvent_3049_0 (arg1); } @@ -1492,9 +1492,9 @@ static void _call_cbs_paint_6301_1 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QStyleOptionGraphicsItem *arg2 = args.read (heap); - QWidget *arg3 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionGraphicsItem *arg2 = gsi::arg_reader() (args, heap); + QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractGraphicsShapeItem_Adaptor *)cls)->cbs_paint_6301_1 (arg1, arg2, arg3); } @@ -1548,7 +1548,7 @@ static void _call_cbs_sceneEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractGraphicsShapeItem_Adaptor *)cls)->cbs_sceneEvent_1217_0 (arg1)); } @@ -1573,8 +1573,8 @@ static void _call_cbs_sceneEventFilter_3028_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsItem *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractGraphicsShapeItem_Adaptor *)cls)->cbs_sceneEventFilter_3028_0 (arg1, arg2)); } @@ -1599,8 +1599,8 @@ static void _call_cbs_setExtension_4817_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractGraphicsShapeItem_Adaptor *)cls)->cbs_setExtension_4817_0 (arg1, arg2); } @@ -1643,7 +1643,7 @@ static void _call_cbs_supportsExtension_c2806_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractGraphicsShapeItem_Adaptor *)cls)->cbs_supportsExtension_c2806_0 (arg1)); } @@ -1685,7 +1685,7 @@ static void _call_cbs_wheelEvent_3029_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneWheelEvent *arg1 = args.read (heap); + QGraphicsSceneWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractGraphicsShapeItem_Adaptor *)cls)->cbs_wheelEvent_3029_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQAbstractItemDelegate.cc b/src/gsiqt/qt4/QtGui/gsiDeclQAbstractItemDelegate.cc index 5efaa06b2..fa65790a0 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQAbstractItemDelegate.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQAbstractItemDelegate.cc @@ -725,7 +725,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemDelegate_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -792,9 +792,9 @@ static void _call_cbs_createEditor_c6860_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - const QStyleOptionViewItem &arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionViewItem &arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); ret.write ((QWidget *)((QAbstractItemDelegate_Adaptor *)cls)->cbs_createEditor_c6860_0 (arg1, arg2, arg3)); } @@ -817,7 +817,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemDelegate_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -859,7 +859,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemDelegate_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -889,10 +889,10 @@ static void _call_cbs_editorEvent_9073_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); - QAbstractItemModel *arg2 = args.read (heap); - const QStyleOptionViewItem &arg3 = args.read (heap); - const QModelIndex &arg4 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); + QAbstractItemModel *arg2 = gsi::arg_reader() (args, heap); + const QStyleOptionViewItem &arg3 = gsi::arg_reader() (args, heap); + const QModelIndex &arg4 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractItemDelegate_Adaptor *)cls)->cbs_editorEvent_9073_0 (arg1, arg2, arg3, arg4)); } @@ -915,7 +915,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractItemDelegate_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -940,8 +940,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractItemDelegate_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -968,9 +968,9 @@ static void _call_cbs_paint_c6971_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QStyleOptionViewItem &arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionViewItem &arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemDelegate_Adaptor *)cls)->cbs_paint_c6971_0 (arg1, arg2, arg3); } @@ -1028,8 +1028,8 @@ static void _call_cbs_setEditorData_c3602_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemDelegate_Adaptor *)cls)->cbs_setEditorData_c3602_0 (arg1, arg2); } @@ -1057,9 +1057,9 @@ static void _call_cbs_setModelData_c5913_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - QAbstractItemModel *arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + QAbstractItemModel *arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemDelegate_Adaptor *)cls)->cbs_setModelData_c5913_0 (arg1, arg2, arg3); } @@ -1085,8 +1085,8 @@ static void _call_cbs_sizeHint_c5653_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStyleOptionViewItem &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + const QStyleOptionViewItem &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); ret.write ((QSize)((QAbstractItemDelegate_Adaptor *)cls)->cbs_sizeHint_c5653_0 (arg1, arg2)); } @@ -1127,7 +1127,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemDelegate_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -1155,9 +1155,9 @@ static void _call_cbs_updateEditorGeometry_c6860_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - const QStyleOptionViewItem &arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionViewItem &arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemDelegate_Adaptor *)cls)->cbs_updateEditorGeometry_c6860_0 (arg1, arg2, arg3); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQAbstractItemView.cc b/src/gsiqt/qt4/QtGui/gsiDeclQAbstractItemView.cc index 1343cf4a1..52f7b058b 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQAbstractItemView.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQAbstractItemView.cc @@ -3152,7 +3152,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -3194,7 +3194,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -3218,7 +3218,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -3262,8 +3262,8 @@ static void _call_cbs_closeEditor_4926_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_closeEditor_4926_0 (arg1, arg2); } @@ -3287,7 +3287,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -3311,7 +3311,7 @@ static void _call_cbs_commitData_1315_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_commitData_1315_0 (arg1); } @@ -3335,7 +3335,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -3386,8 +3386,8 @@ static void _call_cbs_currentChanged_4682_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_currentChanged_4682_0 (arg1, arg2); } @@ -3429,7 +3429,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -3455,8 +3455,8 @@ static void _call_cbs_dataChanged_4682_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_dataChanged_4682_0 (arg1, arg2); } @@ -3534,7 +3534,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -3611,7 +3611,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -3635,7 +3635,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -3659,7 +3659,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -3702,7 +3702,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -3744,9 +3744,9 @@ static void _call_cbs_edit_6773_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - QEvent *arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + QEvent *arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractItemView_Adaptor *)cls)->cbs_edit_6773_0 (arg1, arg2, arg3)); } @@ -3769,7 +3769,7 @@ static void _call_cbs_editorDestroyed_1302_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_editorDestroyed_1302_0 (arg1); } @@ -3793,7 +3793,7 @@ static void _call_cbs_enabledChange_864_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_enabledChange_864_0 (arg1); } @@ -3817,7 +3817,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -3859,7 +3859,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractItemView_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -3884,8 +3884,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractItemView_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -3923,7 +3923,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -3961,7 +3961,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractItemView_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -3984,7 +3984,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -4022,7 +4022,7 @@ static void _call_cbs_fontChange_1801_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_fontChange_1801_0 (arg1); } @@ -4046,7 +4046,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QAbstractItemView_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -4069,7 +4069,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -4112,7 +4112,7 @@ static void _call_cbs_horizontalScrollbarAction_767_0 (const qt_gsi::GenericMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_horizontalScrollbarAction_767_0 (arg1); } @@ -4136,7 +4136,7 @@ static void _call_cbs_horizontalScrollbarValueChanged_767_0 (const qt_gsi::Gener { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_horizontalScrollbarValueChanged_767_0 (arg1); } @@ -4174,7 +4174,7 @@ static void _call_cbs_indexAt_c1916_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QAbstractItemView_Adaptor *)cls)->cbs_indexAt_c1916_0 (arg1)); } @@ -4197,7 +4197,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -4221,7 +4221,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QAbstractItemView_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -4244,7 +4244,7 @@ static void _call_cbs_isIndexHidden_c2395_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractItemView_Adaptor *)cls)->cbs_isIndexHidden_c2395_0 (arg1)); } @@ -4267,7 +4267,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -4291,7 +4291,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -4315,7 +4315,7 @@ static void _call_cbs_keyboardSearch_2025_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_keyboardSearch_2025_0 (arg1); } @@ -4359,7 +4359,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -4383,7 +4383,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QAbstractItemView_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -4425,7 +4425,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -4449,7 +4449,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -4473,7 +4473,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -4497,7 +4497,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -4523,8 +4523,8 @@ static void _call_cbs_moveCursor_6476_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); - QFlags arg2 = args.read > (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); ret.write ((QModelIndex)((QAbstractItemView_Adaptor *)cls)->cbs_moveCursor_6476_0 (arg1, arg2)); } @@ -4547,7 +4547,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -4590,7 +4590,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -4614,7 +4614,7 @@ static void _call_cbs_paletteChange_2113_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPalette &arg1 = args.read (heap); + const QPalette &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_paletteChange_2113_0 (arg1); } @@ -4709,7 +4709,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -4737,9 +4737,9 @@ static void _call_cbs_rowsAboutToBeRemoved_3713_0 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_rowsAboutToBeRemoved_3713_0 (arg1, arg2, arg3); } @@ -4767,9 +4767,9 @@ static void _call_cbs_rowsInserted_3713_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_rowsInserted_3713_0 (arg1, arg2, arg3); } @@ -4810,8 +4810,8 @@ static void _call_cbs_scrollContentsBy_1426_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_scrollContentsBy_1426_0 (arg1, arg2); } @@ -4859,8 +4859,8 @@ static void _call_cbs_scrollTo_5576_1 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QAbstractItemView::EnsureVisible), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_scrollTo_5576_1 (arg1, arg2); } @@ -4925,8 +4925,8 @@ static void _call_cbs_selectionChanged_5346_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QItemSelection &arg1 = args.read (heap); - const QItemSelection &arg2 = args.read (heap); + const QItemSelection &arg1 = gsi::arg_reader() (args, heap); + const QItemSelection &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_selectionChanged_5346_0 (arg1, arg2); } @@ -4952,8 +4952,8 @@ static void _call_cbs_selectionCommand_c4199_1 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QEvent *arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QEvent *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write > ((QFlags)((QAbstractItemView_Adaptor *)cls)->cbs_selectionCommand_c4199_1 (arg1, arg2)); } @@ -5028,7 +5028,7 @@ static void _call_cbs_setModel_2419_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractItemModel *arg1 = args.read (heap); + QAbstractItemModel *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_setModel_2419_0 (arg1); } @@ -5052,7 +5052,7 @@ static void _call_cbs_setRootIndex_2395_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_setRootIndex_2395_0 (arg1); } @@ -5078,8 +5078,8 @@ static void _call_cbs_setSelection_6155_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); - QFlags arg2 = args.read > (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_setSelection_6155_0 (arg1, arg2); } @@ -5103,7 +5103,7 @@ static void _call_cbs_setSelectionModel_2533_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QItemSelectionModel *arg1 = args.read (heap); + QItemSelectionModel *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_setSelectionModel_2533_0 (arg1); } @@ -5212,7 +5212,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -5255,7 +5255,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -5298,7 +5298,7 @@ static void _call_cbs_sizeHintForColumn_c767_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QAbstractItemView_Adaptor *)cls)->cbs_sizeHintForColumn_c767_0 (arg1)); } @@ -5321,7 +5321,7 @@ static void _call_cbs_sizeHintForRow_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QAbstractItemView_Adaptor *)cls)->cbs_sizeHintForRow_c767_0 (arg1)); } @@ -5359,7 +5359,7 @@ static void _call_cbs_startDrag_2456_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_startDrag_2456_0 (arg1); } @@ -5412,7 +5412,7 @@ static void _call_cbs_styleChange_1228_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyle &arg1 = args.read (heap); + QStyle &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_styleChange_1228_0 (arg1); } @@ -5436,7 +5436,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -5460,7 +5460,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -5578,7 +5578,7 @@ static void _call_cbs_verticalScrollbarAction_767_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_verticalScrollbarAction_767_0 (arg1); } @@ -5602,7 +5602,7 @@ static void _call_cbs_verticalScrollbarValueChanged_767_0 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_verticalScrollbarValueChanged_767_0 (arg1); } @@ -5673,7 +5673,7 @@ static void _call_cbs_viewportEvent_1217_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractItemView_Adaptor *)cls)->cbs_viewportEvent_1217_0 (arg1)); } @@ -5696,7 +5696,7 @@ static void _call_cbs_visualRect_c2395_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QAbstractItemView_Adaptor *)cls)->cbs_visualRect_c2395_0 (arg1)); } @@ -5719,7 +5719,7 @@ static void _call_cbs_visualRegionForSelection_c2727_0 (const qt_gsi::GenericMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QItemSelection &arg1 = args.read (heap); + const QItemSelection &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRegion)((QAbstractItemView_Adaptor *)cls)->cbs_visualRegionForSelection_c2727_0 (arg1)); } @@ -5742,7 +5742,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } @@ -5766,7 +5766,7 @@ static void _call_cbs_windowActivationChange_864_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_windowActivationChange_864_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQAbstractPageSetupDialog.cc b/src/gsiqt/qt4/QtGui/gsiDeclQAbstractPageSetupDialog.cc index 5e5cbaef3..310f262fa 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQAbstractPageSetupDialog.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQAbstractPageSetupDialog.cc @@ -1229,7 +1229,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPageSetupDialog_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1272,7 +1272,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPageSetupDialog_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1296,7 +1296,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPageSetupDialog_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1320,7 +1320,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPageSetupDialog_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1344,7 +1344,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPageSetupDialog_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1412,7 +1412,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPageSetupDialog_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1477,7 +1477,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPageSetupDialog_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -1501,7 +1501,7 @@ static void _call_cbs_done_767_0 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPageSetupDialog_Adaptor *)cls)->cbs_done_767_0 (arg1); } @@ -1525,7 +1525,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPageSetupDialog_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1549,7 +1549,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPageSetupDialog_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1573,7 +1573,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPageSetupDialog_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1597,7 +1597,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPageSetupDialog_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1621,7 +1621,7 @@ static void _call_cbs_enabledChange_864_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPageSetupDialog_Adaptor *)cls)->cbs_enabledChange_864_0 (arg1); } @@ -1645,7 +1645,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPageSetupDialog_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -1669,7 +1669,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractPageSetupDialog_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1694,8 +1694,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractPageSetupDialog_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1756,7 +1756,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPageSetupDialog_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1794,7 +1794,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractPageSetupDialog_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -1817,7 +1817,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPageSetupDialog_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -1855,7 +1855,7 @@ static void _call_cbs_fontChange_1801_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPageSetupDialog_Adaptor *)cls)->cbs_fontChange_1801_0 (arg1); } @@ -1879,7 +1879,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QAbstractPageSetupDialog_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -1902,7 +1902,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPageSetupDialog_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -1926,7 +1926,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPageSetupDialog_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -1950,7 +1950,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QAbstractPageSetupDialog_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -1973,7 +1973,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPageSetupDialog_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -1997,7 +1997,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPageSetupDialog_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2041,7 +2041,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPageSetupDialog_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2065,7 +2065,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QAbstractPageSetupDialog_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2107,7 +2107,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPageSetupDialog_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2131,7 +2131,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPageSetupDialog_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2155,7 +2155,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPageSetupDialog_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2179,7 +2179,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPageSetupDialog_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2203,7 +2203,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPageSetupDialog_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2246,7 +2246,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPageSetupDialog_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2270,7 +2270,7 @@ static void _call_cbs_paletteChange_2113_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPalette &arg1 = args.read (heap); + const QPalette &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPageSetupDialog_Adaptor *)cls)->cbs_paletteChange_2113_0 (arg1); } @@ -2362,7 +2362,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPageSetupDialog_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2400,7 +2400,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPageSetupDialog_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2424,7 +2424,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPageSetupDialog_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2467,7 +2467,7 @@ static void _call_cbs_styleChange_1228_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyle &arg1 = args.read (heap); + QStyle &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPageSetupDialog_Adaptor *)cls)->cbs_styleChange_1228_0 (arg1); } @@ -2491,7 +2491,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPageSetupDialog_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2515,7 +2515,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPageSetupDialog_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2554,7 +2554,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPageSetupDialog_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } @@ -2578,7 +2578,7 @@ static void _call_cbs_windowActivationChange_864_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPageSetupDialog_Adaptor *)cls)->cbs_windowActivationChange_864_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQAbstractPrintDialog.cc b/src/gsiqt/qt4/QtGui/gsiDeclQAbstractPrintDialog.cc index d7d2ad74c..ca323506a 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQAbstractPrintDialog.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQAbstractPrintDialog.cc @@ -1465,7 +1465,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPrintDialog_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1508,7 +1508,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPrintDialog_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1532,7 +1532,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPrintDialog_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1556,7 +1556,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPrintDialog_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1580,7 +1580,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPrintDialog_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1647,7 +1647,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPrintDialog_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1711,7 +1711,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPrintDialog_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -1735,7 +1735,7 @@ static void _call_cbs_done_767_0 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPrintDialog_Adaptor *)cls)->cbs_done_767_0 (arg1); } @@ -1759,7 +1759,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPrintDialog_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1783,7 +1783,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPrintDialog_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1807,7 +1807,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPrintDialog_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1831,7 +1831,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPrintDialog_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1855,7 +1855,7 @@ static void _call_cbs_enabledChange_864_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPrintDialog_Adaptor *)cls)->cbs_enabledChange_864_0 (arg1); } @@ -1879,7 +1879,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPrintDialog_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -1903,7 +1903,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractPrintDialog_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1928,8 +1928,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractPrintDialog_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1989,7 +1989,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPrintDialog_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -2027,7 +2027,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractPrintDialog_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -2050,7 +2050,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPrintDialog_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -2088,7 +2088,7 @@ static void _call_cbs_fontChange_1801_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPrintDialog_Adaptor *)cls)->cbs_fontChange_1801_0 (arg1); } @@ -2112,7 +2112,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QAbstractPrintDialog_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -2135,7 +2135,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPrintDialog_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -2159,7 +2159,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPrintDialog_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2183,7 +2183,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QAbstractPrintDialog_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2206,7 +2206,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPrintDialog_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2230,7 +2230,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPrintDialog_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2274,7 +2274,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPrintDialog_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2298,7 +2298,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QAbstractPrintDialog_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2340,7 +2340,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPrintDialog_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2364,7 +2364,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPrintDialog_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2388,7 +2388,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPrintDialog_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2412,7 +2412,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPrintDialog_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2436,7 +2436,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPrintDialog_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2479,7 +2479,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPrintDialog_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2503,7 +2503,7 @@ static void _call_cbs_paletteChange_2113_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPalette &arg1 = args.read (heap); + const QPalette &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPrintDialog_Adaptor *)cls)->cbs_paletteChange_2113_0 (arg1); } @@ -2594,7 +2594,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPrintDialog_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2632,7 +2632,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPrintDialog_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2656,7 +2656,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPrintDialog_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2699,7 +2699,7 @@ static void _call_cbs_styleChange_1228_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyle &arg1 = args.read (heap); + QStyle &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPrintDialog_Adaptor *)cls)->cbs_styleChange_1228_0 (arg1); } @@ -2723,7 +2723,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPrintDialog_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2747,7 +2747,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPrintDialog_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2786,7 +2786,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPrintDialog_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } @@ -2810,7 +2810,7 @@ static void _call_cbs_windowActivationChange_864_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPrintDialog_Adaptor *)cls)->cbs_windowActivationChange_864_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQAbstractProxyModel.cc b/src/gsiqt/qt4/QtGui/gsiDeclQAbstractProxyModel.cc index b7529f290..46551a96f 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQAbstractProxyModel.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQAbstractProxyModel.cc @@ -1496,7 +1496,7 @@ static void _call_cbs_buddy_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QAbstractProxyModel_Adaptor *)cls)->cbs_buddy_c2395_0 (arg1)); } @@ -1519,7 +1519,7 @@ static void _call_cbs_canFetchMore_c2395_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractProxyModel_Adaptor *)cls)->cbs_canFetchMore_c2395_0 (arg1)); } @@ -1586,7 +1586,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractProxyModel_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1610,7 +1610,7 @@ static void _call_cbs_columnCount_c2395_1 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((int)((QAbstractProxyModel_Adaptor *)cls)->cbs_columnCount_c2395_1 (arg1)); } @@ -1705,7 +1705,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractProxyModel_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1731,8 +1731,8 @@ static void _call_cbs_data_c3054_1 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::DisplayRole, heap); ret.write ((QVariant)((QAbstractProxyModel_Adaptor *)cls)->cbs_data_c3054_1 (arg1, arg2)); } @@ -1821,7 +1821,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractProxyModel_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -1853,11 +1853,11 @@ static void _call_cbs_dropMimeData_7425_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMimeData *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - const QModelIndex &arg5 = args.read (heap); + const QMimeData *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + const QModelIndex &arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractProxyModel_Adaptor *)cls)->cbs_dropMimeData_7425_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -2007,7 +2007,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractProxyModel_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -2032,8 +2032,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractProxyModel_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -2056,7 +2056,7 @@ static void _call_cbs_fetchMore_2395_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractProxyModel_Adaptor *)cls)->cbs_fetchMore_2395_0 (arg1); } @@ -2080,7 +2080,7 @@ static void _call_cbs_flags_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QFlags)((QAbstractProxyModel_Adaptor *)cls)->cbs_flags_c2395_0 (arg1)); } @@ -2103,7 +2103,7 @@ static void _call_cbs_hasChildren_c2395_1 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QAbstractProxyModel_Adaptor *)cls)->cbs_hasChildren_c2395_1 (arg1)); } @@ -2130,9 +2130,9 @@ static void _call_cbs_headerData_c3231_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QAbstractProxyModel_Adaptor *)cls)->cbs_headerData_c3231_0 (arg1, arg2, arg3)); } @@ -2183,9 +2183,9 @@ static void _call_cbs_index_c3713_1 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((QModelIndex)((QAbstractProxyModel_Adaptor *)cls)->cbs_index_c3713_1 (arg1, arg2, arg3)); } @@ -2212,9 +2212,9 @@ static void _call_cbs_insertColumns_3713_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QAbstractProxyModel_Adaptor *)cls)->cbs_insertColumns_3713_1 (arg1, arg2, arg3)); } @@ -2241,9 +2241,9 @@ static void _call_cbs_insertRows_3713_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QAbstractProxyModel_Adaptor *)cls)->cbs_insertRows_3713_1 (arg1, arg2, arg3)); } @@ -2266,7 +2266,7 @@ static void _call_cbs_itemData_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QMap)((QAbstractProxyModel_Adaptor *)cls)->cbs_itemData_c2395_0 (arg1)); } @@ -2317,7 +2317,7 @@ static void _call_cbs_mapFromSource_c2395_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QAbstractProxyModel_Adaptor *)cls)->cbs_mapFromSource_c2395_0 (arg1)); } @@ -2340,7 +2340,7 @@ static void _call_cbs_mapSelectionFromSource_c2727_0 (const qt_gsi::GenericMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QItemSelection &arg1 = args.read (heap); + const QItemSelection &arg1 = gsi::arg_reader() (args, heap); ret.write ((QItemSelection)((QAbstractProxyModel_Adaptor *)cls)->cbs_mapSelectionFromSource_c2727_0 (arg1)); } @@ -2363,7 +2363,7 @@ static void _call_cbs_mapSelectionToSource_c2727_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QItemSelection &arg1 = args.read (heap); + const QItemSelection &arg1 = gsi::arg_reader() (args, heap); ret.write ((QItemSelection)((QAbstractProxyModel_Adaptor *)cls)->cbs_mapSelectionToSource_c2727_0 (arg1)); } @@ -2386,7 +2386,7 @@ static void _call_cbs_mapToSource_c2395_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QAbstractProxyModel_Adaptor *)cls)->cbs_mapToSource_c2395_0 (arg1)); } @@ -2417,11 +2417,11 @@ static void _call_cbs_match_c7932_2 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - const QVariant &arg3 = args.read (heap); - int arg4 = args.read (heap); - QFlags arg5 = args.read > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QVariant &arg3 = gsi::arg_reader() (args, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (1, heap); + QFlags arg5 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (Qt::MatchFlags(Qt::MatchStartsWith|Qt::MatchWrap), heap); ret.write > ((QList)((QAbstractProxyModel_Adaptor *)cls)->cbs_match_c7932_2 (arg1, arg2, arg3, arg4, arg5)); } @@ -2444,7 +2444,7 @@ static void _call_cbs_mimeData_c3010_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); ret.write ((QMimeData *)((QAbstractProxyModel_Adaptor *)cls)->cbs_mimeData_c3010_0 (arg1)); } @@ -2486,7 +2486,7 @@ static void _call_cbs_parent_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QAbstractProxyModel_Adaptor *)cls)->cbs_parent_c2395_0 (arg1)); } @@ -2545,9 +2545,9 @@ static void _call_cbs_removeColumns_3713_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QAbstractProxyModel_Adaptor *)cls)->cbs_removeColumns_3713_1 (arg1, arg2, arg3)); } @@ -2574,9 +2574,9 @@ static void _call_cbs_removeRows_3713_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QAbstractProxyModel_Adaptor *)cls)->cbs_removeRows_3713_1 (arg1, arg2, arg3)); } @@ -2634,7 +2634,7 @@ static void _call_cbs_rowCount_c2395_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((int)((QAbstractProxyModel_Adaptor *)cls)->cbs_rowCount_c2395_1 (arg1)); } @@ -2675,9 +2675,9 @@ static void _call_cbs_setData_5065_1 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::EditRole, heap); ret.write ((bool)((QAbstractProxyModel_Adaptor *)cls)->cbs_setData_5065_1 (arg1, arg2, arg3)); } @@ -2706,10 +2706,10 @@ static void _call_cbs_setHeaderData_5242_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - const QVariant &arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + const QVariant &arg3 = gsi::arg_reader() (args, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::EditRole, heap); ret.write ((bool)((QAbstractProxyModel_Adaptor *)cls)->cbs_setHeaderData_5242_1 (arg1, arg2, arg3, arg4)); } @@ -2734,8 +2734,8 @@ static void _call_cbs_setItemData_5414_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QMap &arg2 = args.read & > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QMap &arg2 = gsi::arg_reader & >() (args, heap); ret.write ((bool)((QAbstractProxyModel_Adaptor *)cls)->cbs_setItemData_5414_0 (arg1, arg2)); } @@ -2777,7 +2777,7 @@ static void _call_cbs_setSourceModel_2419_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractItemModel *arg1 = args.read (heap); + QAbstractItemModel *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractProxyModel_Adaptor *)cls)->cbs_setSourceModel_2419_0 (arg1); } @@ -2803,8 +2803,8 @@ static void _call_cbs_sort_2340_1 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::AscendingOrder), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractProxyModel_Adaptor *)cls)->cbs_sort_2340_1 (arg1, arg2); } @@ -2828,7 +2828,7 @@ static void _call_cbs_span_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QSize)((QAbstractProxyModel_Adaptor *)cls)->cbs_span_c2395_0 (arg1)); } @@ -2889,7 +2889,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractProxyModel_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQAbstractScrollArea.cc b/src/gsiqt/qt4/QtGui/gsiDeclQAbstractScrollArea.cc index bcdef073b..01842e2bb 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQAbstractScrollArea.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQAbstractScrollArea.cc @@ -1424,7 +1424,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1448,7 +1448,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1472,7 +1472,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1496,7 +1496,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1520,7 +1520,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1587,7 +1587,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1651,7 +1651,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -1675,7 +1675,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1699,7 +1699,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1723,7 +1723,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1766,7 +1766,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1790,7 +1790,7 @@ static void _call_cbs_enabledChange_864_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea_Adaptor *)cls)->cbs_enabledChange_864_0 (arg1); } @@ -1814,7 +1814,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -1838,7 +1838,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractScrollArea_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1863,8 +1863,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractScrollArea_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1887,7 +1887,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1925,7 +1925,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractScrollArea_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -1948,7 +1948,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -1986,7 +1986,7 @@ static void _call_cbs_fontChange_1801_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea_Adaptor *)cls)->cbs_fontChange_1801_0 (arg1); } @@ -2010,7 +2010,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QAbstractScrollArea_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -2033,7 +2033,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -2057,7 +2057,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2081,7 +2081,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QAbstractScrollArea_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2104,7 +2104,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2128,7 +2128,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2172,7 +2172,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2196,7 +2196,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QAbstractScrollArea_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2238,7 +2238,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2262,7 +2262,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2286,7 +2286,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2310,7 +2310,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2334,7 +2334,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2377,7 +2377,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2401,7 +2401,7 @@ static void _call_cbs_paletteChange_2113_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPalette &arg1 = args.read (heap); + const QPalette &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea_Adaptor *)cls)->cbs_paletteChange_2113_0 (arg1); } @@ -2458,7 +2458,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2484,8 +2484,8 @@ static void _call_cbs_scrollContentsBy_1426_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea_Adaptor *)cls)->cbs_scrollContentsBy_1426_0 (arg1, arg2); } @@ -2570,7 +2570,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2613,7 +2613,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2656,7 +2656,7 @@ static void _call_cbs_styleChange_1228_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyle &arg1 = args.read (heap); + QStyle &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea_Adaptor *)cls)->cbs_styleChange_1228_0 (arg1); } @@ -2680,7 +2680,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2704,7 +2704,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2743,7 +2743,7 @@ static void _call_cbs_viewportEvent_1217_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractScrollArea_Adaptor *)cls)->cbs_viewportEvent_1217_0 (arg1)); } @@ -2766,7 +2766,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } @@ -2790,7 +2790,7 @@ static void _call_cbs_windowActivationChange_864_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea_Adaptor *)cls)->cbs_windowActivationChange_864_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQAbstractSlider.cc b/src/gsiqt/qt4/QtGui/gsiDeclQAbstractSlider.cc index 964ced1f5..295d44991 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQAbstractSlider.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQAbstractSlider.cc @@ -1577,7 +1577,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1619,7 +1619,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1643,7 +1643,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1667,7 +1667,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1691,7 +1691,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1758,7 +1758,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1822,7 +1822,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -1846,7 +1846,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1870,7 +1870,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1894,7 +1894,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1918,7 +1918,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1942,7 +1942,7 @@ static void _call_cbs_enabledChange_864_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider_Adaptor *)cls)->cbs_enabledChange_864_0 (arg1); } @@ -1966,7 +1966,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -1990,7 +1990,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractSlider_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -2015,8 +2015,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractSlider_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -2039,7 +2039,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -2077,7 +2077,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractSlider_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -2100,7 +2100,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -2138,7 +2138,7 @@ static void _call_cbs_fontChange_1801_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider_Adaptor *)cls)->cbs_fontChange_1801_0 (arg1); } @@ -2162,7 +2162,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QAbstractSlider_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -2185,7 +2185,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -2209,7 +2209,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2233,7 +2233,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QAbstractSlider_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2256,7 +2256,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2280,7 +2280,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2324,7 +2324,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2348,7 +2348,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QAbstractSlider_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2390,7 +2390,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2414,7 +2414,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2438,7 +2438,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2462,7 +2462,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2486,7 +2486,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2529,7 +2529,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2553,7 +2553,7 @@ static void _call_cbs_paletteChange_2113_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPalette &arg1 = args.read (heap); + const QPalette &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider_Adaptor *)cls)->cbs_paletteChange_2113_0 (arg1); } @@ -2645,7 +2645,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2708,7 +2708,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2732,7 +2732,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2775,7 +2775,7 @@ static void _call_cbs_sliderChange_3257_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider_Adaptor *)cls)->cbs_sliderChange_3257_0 (arg1); } @@ -2845,7 +2845,7 @@ static void _call_cbs_styleChange_1228_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyle &arg1 = args.read (heap); + QStyle &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider_Adaptor *)cls)->cbs_styleChange_1228_0 (arg1); } @@ -2869,7 +2869,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2893,7 +2893,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2950,7 +2950,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } @@ -2974,7 +2974,7 @@ static void _call_cbs_windowActivationChange_864_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider_Adaptor *)cls)->cbs_windowActivationChange_864_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQAbstractSpinBox.cc b/src/gsiqt/qt4/QtGui/gsiDeclQAbstractSpinBox.cc index be75ff9f4..e7b864b80 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQAbstractSpinBox.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQAbstractSpinBox.cc @@ -1748,7 +1748,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1772,7 +1772,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1796,7 +1796,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1840,7 +1840,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1864,7 +1864,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1931,7 +1931,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1995,7 +1995,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -2019,7 +2019,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -2043,7 +2043,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -2067,7 +2067,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -2091,7 +2091,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -2129,7 +2129,7 @@ static void _call_cbs_enabledChange_864_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox_Adaptor *)cls)->cbs_enabledChange_864_0 (arg1); } @@ -2153,7 +2153,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -2177,7 +2177,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractSpinBox_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -2202,8 +2202,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractSpinBox_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -2226,7 +2226,7 @@ static void _call_cbs_fixup_c1330_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QString &arg1 = args.read (heap); + QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox_Adaptor *)cls)->cbs_fixup_c1330_0 (arg1); } @@ -2250,7 +2250,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -2288,7 +2288,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractSpinBox_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -2311,7 +2311,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -2349,7 +2349,7 @@ static void _call_cbs_fontChange_1801_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox_Adaptor *)cls)->cbs_fontChange_1801_0 (arg1); } @@ -2373,7 +2373,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QAbstractSpinBox_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -2396,7 +2396,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -2439,7 +2439,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2463,7 +2463,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QAbstractSpinBox_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2486,7 +2486,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2510,7 +2510,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2554,7 +2554,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2592,7 +2592,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QAbstractSpinBox_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2634,7 +2634,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2658,7 +2658,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2682,7 +2682,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2706,7 +2706,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2730,7 +2730,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2773,7 +2773,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2797,7 +2797,7 @@ static void _call_cbs_paletteChange_2113_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPalette &arg1 = args.read (heap); + const QPalette &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox_Adaptor *)cls)->cbs_paletteChange_2113_0 (arg1); } @@ -2854,7 +2854,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2911,7 +2911,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2935,7 +2935,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2978,7 +2978,7 @@ static void _call_cbs_stepBy_767_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox_Adaptor *)cls)->cbs_stepBy_767_0 (arg1); } @@ -3021,7 +3021,7 @@ static void _call_cbs_styleChange_1228_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyle &arg1 = args.read (heap); + QStyle &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox_Adaptor *)cls)->cbs_styleChange_1228_0 (arg1); } @@ -3045,7 +3045,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -3069,7 +3069,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -3110,8 +3110,8 @@ static void _call_cbs_validate_c2171_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QString &arg1 = args.read (heap); - int &arg2 = args.read (heap); + QString &arg1 = gsi::arg_reader() (args, heap); + int &arg2 = gsi::arg_reader() (args, heap); ret.write::target_type > ((qt_gsi::Converter::target_type)((QAbstractSpinBox_Adaptor *)cls)->cbs_validate_c2171_0 (arg1, arg2)); } @@ -3134,7 +3134,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } @@ -3158,7 +3158,7 @@ static void _call_cbs_windowActivationChange_864_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox_Adaptor *)cls)->cbs_windowActivationChange_864_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQAbstractTextDocumentLayout.cc b/src/gsiqt/qt4/QtGui/gsiDeclQAbstractTextDocumentLayout.cc index f6ef52596..4b66f7da0 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQAbstractTextDocumentLayout.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQAbstractTextDocumentLayout.cc @@ -786,7 +786,7 @@ static void _call_cbs_blockBoundingRect_c2306_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextBlock &arg1 = args.read (heap); + const QTextBlock &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRectF)((QAbstractTextDocumentLayout_Adaptor *)cls)->cbs_blockBoundingRect_c2306_0 (arg1)); } @@ -809,7 +809,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractTextDocumentLayout_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -833,7 +833,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractTextDocumentLayout_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -875,7 +875,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractTextDocumentLayout_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -903,9 +903,9 @@ static void _call_cbs_documentChanged_2085_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractTextDocumentLayout_Adaptor *)cls)->cbs_documentChanged_2085_0 (arg1, arg2, arg3); } @@ -968,8 +968,8 @@ static void _call_cbs_draw_6787_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QAbstractTextDocumentLayout::PaintContext &arg2 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QAbstractTextDocumentLayout::PaintContext &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractTextDocumentLayout_Adaptor *)cls)->cbs_draw_6787_0 (arg1, arg2); } @@ -1001,11 +1001,11 @@ static void _call_cbs_drawInlineObject_8199_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QRectF &arg2 = args.read (heap); - QTextInlineObject arg3 = args.read (heap); - int arg4 = args.read (heap); - const QTextFormat &arg5 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QRectF &arg2 = gsi::arg_reader() (args, heap); + QTextInlineObject arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + const QTextFormat &arg5 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractTextDocumentLayout_Adaptor *)cls)->cbs_drawInlineObject_8199_0 (arg1, arg2, arg3, arg4, arg5); } @@ -1029,7 +1029,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractTextDocumentLayout_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1054,8 +1054,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractTextDocumentLayout_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1114,7 +1114,7 @@ static void _call_cbs_frameBoundingRect_c1615_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTextFrame *arg1 = args.read (heap); + QTextFrame *arg1 = gsi::arg_reader() (args, heap); ret.write ((QRectF)((QAbstractTextDocumentLayout_Adaptor *)cls)->cbs_frameBoundingRect_c1615_0 (arg1)); } @@ -1139,8 +1139,8 @@ static void _call_cbs_hitTest_c4147_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QAbstractTextDocumentLayout_Adaptor *)cls)->cbs_hitTest_c4147_0 (arg1, arg2)); } @@ -1204,9 +1204,9 @@ static void _call_cbs_positionInlineObject_5127_0 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTextInlineObject arg1 = args.read (heap); - int arg2 = args.read (heap); - const QTextFormat &arg3 = args.read (heap); + QTextInlineObject arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QTextFormat &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractTextDocumentLayout_Adaptor *)cls)->cbs_positionInlineObject_5127_0 (arg1, arg2, arg3); } @@ -1252,9 +1252,9 @@ static void _call_cbs_resizeInlineObject_5127_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTextInlineObject arg1 = args.read (heap); - int arg2 = args.read (heap); - const QTextFormat &arg3 = args.read (heap); + QTextInlineObject arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QTextFormat &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractTextDocumentLayout_Adaptor *)cls)->cbs_resizeInlineObject_5127_0 (arg1, arg2, arg3); } @@ -1292,7 +1292,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractTextDocumentLayout_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQAccessibleApplication.cc b/src/gsiqt/qt4/QtGui/gsiDeclQAccessibleApplication.cc index d05865716..c81d42787 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQAccessibleApplication.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQAccessibleApplication.cc @@ -549,9 +549,9 @@ static void _call_cbs_actionText_c3378_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)((QAccessibleApplication_Adaptor *)cls)->cbs_actionText_c3378_0 (arg1, arg2, arg3)); } @@ -576,8 +576,8 @@ static void _call_cbs_childAt_c1426_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write ((int)((QAccessibleApplication_Adaptor *)cls)->cbs_childAt_c1426_0 (arg1, arg2)); } @@ -623,9 +623,9 @@ static void _call_cbs_doAction_4052_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QList &arg3 = args.read & > (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QList &arg3 = gsi::arg_reader & >() (args, heap); ret.write ((bool)((QAccessibleApplication_Adaptor *)cls)->cbs_doAction_4052_0 (arg1, arg2, arg3)); } @@ -648,7 +648,7 @@ static void _call_cbs_indexOfChild_c3317_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QAccessibleInterface *arg1 = args.read (heap); + const QAccessibleInterface *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QAccessibleApplication_Adaptor *)cls)->cbs_indexOfChild_c3317_0 (arg1)); } @@ -709,7 +709,7 @@ static void _call_cbs_rect_c767_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QAccessibleApplication_Adaptor *)cls)->cbs_rect_c767_0 (arg1)); } @@ -736,9 +736,9 @@ static void _call_cbs_relationTo_c4635_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QAccessibleInterface *arg2 = args.read (heap); - int arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QAccessibleInterface *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write > ((QFlags)((QAccessibleApplication_Adaptor *)cls)->cbs_relationTo_c4635_0 (arg1, arg2, arg3)); } @@ -761,7 +761,7 @@ static void _call_cbs_role_c767_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write::target_type > ((qt_gsi::Converter::target_type)((QAccessibleApplication_Adaptor *)cls)->cbs_role_c767_0 (arg1)); } @@ -788,9 +788,9 @@ static void _call_cbs_setText_4636_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - int arg2 = args.read (heap); - const QString &arg3 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAccessibleApplication_Adaptor *)cls)->cbs_setText_4636_0 (arg1, arg2, arg3); } @@ -814,7 +814,7 @@ static void _call_cbs_state_c767_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write > ((QFlags)((QAccessibleApplication_Adaptor *)cls)->cbs_state_c767_0 (arg1)); } @@ -839,8 +839,8 @@ static void _call_cbs_text_c2719_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - int arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write ((QString)((QAccessibleApplication_Adaptor *)cls)->cbs_text_c2719_0 (arg1, arg2)); } @@ -863,7 +863,7 @@ static void _call_cbs_userActionCount_c767_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QAccessibleApplication_Adaptor *)cls)->cbs_userActionCount_c767_0 (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQAction.cc b/src/gsiqt/qt4/QtGui/gsiDeclQAction.cc index e9ec4894d..21b88ec9a 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQAction.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQAction.cc @@ -1460,7 +1460,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAction_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1484,7 +1484,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAction_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1526,7 +1526,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAction_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -1550,7 +1550,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAction_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1575,8 +1575,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAction_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1645,7 +1645,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAction_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQActionGroup.cc b/src/gsiqt/qt4/QtGui/gsiDeclQActionGroup.cc index 1b0d8206b..530bba9b9 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQActionGroup.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQActionGroup.cc @@ -602,7 +602,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QActionGroup_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -626,7 +626,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QActionGroup_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -668,7 +668,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QActionGroup_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -692,7 +692,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QActionGroup_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -717,8 +717,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QActionGroup_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -809,7 +809,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QActionGroup_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQApplication.cc b/src/gsiqt/qt4/QtGui/gsiDeclQApplication.cc index 3ef807a8c..948f29051 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQApplication.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQApplication.cc @@ -1810,7 +1810,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QApplication_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1834,7 +1834,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QApplication_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1876,7 +1876,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QApplication_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -1900,7 +1900,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QApplication_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1925,8 +1925,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QApplication_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -2030,7 +2030,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QApplication_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQBitmap.cc b/src/gsiqt/qt4/QtGui/gsiDeclQBitmap.cc index 32c3a79b9..b1115cf71 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQBitmap.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQBitmap.cc @@ -375,7 +375,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QBitmap_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQBoxLayout.cc b/src/gsiqt/qt4/QtGui/gsiDeclQBoxLayout.cc index 4dcc9dd2b..095ba2d7e 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQBoxLayout.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQBoxLayout.cc @@ -1385,7 +1385,8 @@ static void _call_cbs_addItem_1740_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QLayoutItem *arg1 = args.read (heap); + QLayoutItem *arg1 = gsi::arg_reader() (args, heap); + qt_gsi::qt_keep (arg1); __SUPPRESS_UNUSED_WARNING(ret); ((QBoxLayout_Adaptor *)cls)->cbs_addItem_1740_0 (arg1); } @@ -1427,7 +1428,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QBoxLayout_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1470,7 +1471,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QBoxLayout_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1512,7 +1513,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QBoxLayout_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -1536,7 +1537,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QBoxLayout_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1561,8 +1562,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QBoxLayout_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1642,7 +1643,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QBoxLayout_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -1665,7 +1666,7 @@ static void _call_cbs_indexOf_c1315_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QBoxLayout_Adaptor *)cls)->cbs_indexOf_c1315_0 (arg1)); } @@ -1750,7 +1751,7 @@ static void _call_cbs_itemAt_c767_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QLayoutItem *)((QBoxLayout_Adaptor *)cls)->cbs_itemAt_c767_0 (arg1)); } @@ -1811,7 +1812,7 @@ static void _call_cbs_minimumHeightForWidth_c767_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QBoxLayout_Adaptor *)cls)->cbs_minimumHeightForWidth_c767_0 (arg1)); } @@ -1885,7 +1886,7 @@ static void _call_cbs_setGeometry_1792_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QBoxLayout_Adaptor *)cls)->cbs_setGeometry_1792_0 (arg1); } @@ -1947,7 +1948,7 @@ static void _call_cbs_takeAt_767_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QLayoutItem *)((QBoxLayout_Adaptor *)cls)->cbs_takeAt_767_0 (arg1)); } @@ -1970,7 +1971,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QBoxLayout_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQButtonGroup.cc b/src/gsiqt/qt4/QtGui/gsiDeclQButtonGroup.cc index c3cbc05aa..ca3a41d15 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQButtonGroup.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQButtonGroup.cc @@ -703,7 +703,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QButtonGroup_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -727,7 +727,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QButtonGroup_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -769,7 +769,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QButtonGroup_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -793,7 +793,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QButtonGroup_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -818,8 +818,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QButtonGroup_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -874,7 +874,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QButtonGroup_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQCDEStyle.cc b/src/gsiqt/qt4/QtGui/gsiDeclQCDEStyle.cc index acf014b5b..c28b1c6bd 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQCDEStyle.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQCDEStyle.cc @@ -799,7 +799,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCDEStyle_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -823,7 +823,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCDEStyle_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -865,7 +865,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCDEStyle_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -895,10 +895,10 @@ static void _call_cbs_drawComplexControl_c9027_1 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOptionComplex *arg2 = args.read (heap); - QPainter *arg3 = args.read (heap); - const QWidget *arg4 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOptionComplex *arg2 = gsi::arg_reader() (args, heap); + QPainter *arg3 = gsi::arg_reader() (args, heap); + const QWidget *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCDEStyle_Adaptor *)cls)->cbs_drawComplexControl_c9027_1 (arg1, arg2, arg3, arg4); } @@ -928,10 +928,10 @@ static void _call_cbs_drawControl_c8285_1 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args.read (heap); - QPainter *arg3 = args.read (heap); - const QWidget *arg4 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = gsi::arg_reader() (args, heap); + QPainter *arg3 = gsi::arg_reader() (args, heap); + const QWidget *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCDEStyle_Adaptor *)cls)->cbs_drawControl_c8285_1 (arg1, arg2, arg3, arg4); } @@ -961,10 +961,10 @@ static void _call_cbs_drawItemPixmap_c5678_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QRect &arg2 = args.read (heap); - int arg3 = args.read (heap); - const QPixmap &arg4 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QRect &arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QPixmap &arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCDEStyle_Adaptor *)cls)->cbs_drawItemPixmap_c5678_0 (arg1, arg2, arg3, arg4); } @@ -1000,13 +1000,13 @@ static void _call_cbs_drawItemText_c10604_1 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QRect &arg2 = args.read (heap); - int arg3 = args.read (heap); - const QPalette &arg4 = args.read (heap); - bool arg5 = args.read (heap); - const QString &arg6 = args.read (heap); - const qt_gsi::Converter::target_type & arg7 = args.read::target_type & > (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QRect &arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QPalette &arg4 = gsi::arg_reader() (args, heap); + bool arg5 = gsi::arg_reader() (args, heap); + const QString &arg6 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg7 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QPalette::NoRole), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCDEStyle_Adaptor *)cls)->cbs_drawItemText_c10604_1 (arg1, arg2, arg3, arg4, arg5, arg6, arg7); } @@ -1036,10 +1036,10 @@ static void _call_cbs_drawPrimitive_c8501_1 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args.read (heap); - QPainter *arg3 = args.read (heap); - const QWidget *arg4 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = gsi::arg_reader() (args, heap); + QPainter *arg3 = gsi::arg_reader() (args, heap); + const QWidget *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCDEStyle_Adaptor *)cls)->cbs_drawPrimitive_c8501_1 (arg1, arg2, arg3, arg4); } @@ -1063,7 +1063,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCDEStyle_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1088,8 +1088,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCDEStyle_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1116,9 +1116,9 @@ static void _call_cbs_generatedIconPixmap_c5776_0 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QPixmap &arg2 = args.read (heap); - const QStyleOption *arg3 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QPixmap &arg2 = gsi::arg_reader() (args, heap); + const QStyleOption *arg3 = gsi::arg_reader() (args, heap); ret.write ((QPixmap)((QCDEStyle_Adaptor *)cls)->cbs_generatedIconPixmap_c5776_0 (arg1, arg2, arg3)); } @@ -1147,10 +1147,10 @@ static void _call_cbs_hitTestComplexControl_c9517_1 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOptionComplex *arg2 = args.read (heap); - const QPoint &arg3 = args.read (heap); - const QWidget *arg4 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOptionComplex *arg2 = gsi::arg_reader() (args, heap); + const QPoint &arg3 = gsi::arg_reader() (args, heap); + const QWidget *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write::target_type > ((qt_gsi::Converter::target_type)((QCDEStyle_Adaptor *)cls)->cbs_hitTestComplexControl_c9517_1 (arg1, arg2, arg3, arg4)); } @@ -1177,9 +1177,9 @@ static void _call_cbs_itemPixmapRect_c4360_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); - int arg2 = args.read (heap); - const QPixmap &arg3 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QPixmap &arg3 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QCDEStyle_Adaptor *)cls)->cbs_itemPixmapRect_c4360_0 (arg1, arg2, arg3)); } @@ -1210,11 +1210,11 @@ static void _call_cbs_itemTextRect_c7544_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFontMetrics &arg1 = args.read (heap); - const QRect &arg2 = args.read (heap); - int arg3 = args.read (heap); - bool arg4 = args.read (heap); - const QString &arg5 = args.read (heap); + const QFontMetrics &arg1 = gsi::arg_reader() (args, heap); + const QRect &arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + bool arg4 = gsi::arg_reader() (args, heap); + const QString &arg5 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QCDEStyle_Adaptor *)cls)->cbs_itemTextRect_c7544_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -1271,9 +1271,9 @@ static void _call_cbs_pixelMetric_c6642_2 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args.read (heap); - const QWidget *arg3 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + const QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((int)((QCDEStyle_Adaptor *)cls)->cbs_pixelMetric_c6642_2 (arg1, arg2, arg3)); } @@ -1296,7 +1296,7 @@ static void _call_cbs_polish_1418_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPalette &arg1 = args.read (heap); + QPalette &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCDEStyle_Adaptor *)cls)->cbs_polish_1418_0 (arg1); } @@ -1320,7 +1320,7 @@ static void _call_cbs_polish_1315_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCDEStyle_Adaptor *)cls)->cbs_polish_1315_0 (arg1); } @@ -1344,7 +1344,7 @@ static void _call_cbs_polish_1843_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QApplication *arg1 = args.read (heap); + QApplication *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCDEStyle_Adaptor *)cls)->cbs_polish_1843_0 (arg1); } @@ -1406,10 +1406,10 @@ static void _call_cbs_sizeFromContents_c8477_1 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args.read (heap); - const QSize &arg3 = args.read (heap); - const QWidget *arg4 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = gsi::arg_reader() (args, heap); + const QSize &arg3 = gsi::arg_reader() (args, heap); + const QWidget *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QSize)((QCDEStyle_Adaptor *)cls)->cbs_sizeFromContents_c8477_1 (arg1, arg2, arg3, arg4)); } @@ -1479,9 +1479,9 @@ static void _call_cbs_standardPixmap_c6956_1 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args.read (heap); - const QWidget *arg3 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = gsi::arg_reader() (args, heap); + const QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QPixmap)((QCDEStyle_Adaptor *)cls)->cbs_standardPixmap_c6956_1 (arg1, arg2, arg3)); } @@ -1510,10 +1510,10 @@ static void _call_cbs_styleHint_c8615_3 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args.read (heap); - const QWidget *arg3 = args.read (heap); - QStyleHintReturn *arg4 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + const QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + QStyleHintReturn *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((int)((QCDEStyle_Adaptor *)cls)->cbs_styleHint_c8615_3 (arg1, arg2, arg3, arg4)); } @@ -1542,10 +1542,10 @@ static void _call_cbs_subControlRect_c9798_1 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOptionComplex *arg2 = args.read (heap); - const qt_gsi::Converter::target_type & arg3 = args.read::target_type & > (heap); - const QWidget *arg4 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOptionComplex *arg2 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg3 = gsi::arg_reader::target_type & >() (args, heap); + const QWidget *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QRect)((QCDEStyle_Adaptor *)cls)->cbs_subControlRect_c9798_1 (arg1, arg2, arg3, arg4)); } @@ -1572,9 +1572,9 @@ static void _call_cbs_subElementRect_c6528_1 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args.read (heap); - const QWidget *arg3 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = gsi::arg_reader() (args, heap); + const QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QRect)((QCDEStyle_Adaptor *)cls)->cbs_subElementRect_c6528_1 (arg1, arg2, arg3)); } @@ -1597,7 +1597,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCDEStyle_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -1621,7 +1621,7 @@ static void _call_cbs_unpolish_1315_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCDEStyle_Adaptor *)cls)->cbs_unpolish_1315_0 (arg1); } @@ -1645,7 +1645,7 @@ static void _call_cbs_unpolish_1843_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QApplication *arg1 = args.read (heap); + QApplication *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCDEStyle_Adaptor *)cls)->cbs_unpolish_1843_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQCalendarWidget.cc b/src/gsiqt/qt4/QtGui/gsiDeclQCalendarWidget.cc index 7f5f3a341..c21f7ede3 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQCalendarWidget.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQCalendarWidget.cc @@ -1912,7 +1912,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1954,7 +1954,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1978,7 +1978,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -2020,7 +2020,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -2044,7 +2044,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -2132,7 +2132,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -2196,7 +2196,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -2220,7 +2220,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -2244,7 +2244,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -2268,7 +2268,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -2292,7 +2292,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -2316,7 +2316,7 @@ static void _call_cbs_enabledChange_864_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget_Adaptor *)cls)->cbs_enabledChange_864_0 (arg1); } @@ -2340,7 +2340,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -2364,7 +2364,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCalendarWidget_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -2389,8 +2389,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCalendarWidget_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -2413,7 +2413,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -2451,7 +2451,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCalendarWidget_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -2474,7 +2474,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -2512,7 +2512,7 @@ static void _call_cbs_fontChange_1801_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget_Adaptor *)cls)->cbs_fontChange_1801_0 (arg1); } @@ -2536,7 +2536,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QCalendarWidget_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -2559,7 +2559,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -2583,7 +2583,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2607,7 +2607,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QCalendarWidget_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2630,7 +2630,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2654,7 +2654,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2698,7 +2698,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2722,7 +2722,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QCalendarWidget_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2764,7 +2764,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2788,7 +2788,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2812,7 +2812,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2836,7 +2836,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2860,7 +2860,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2888,9 +2888,9 @@ static void _call_cbs_paintCell_c4778_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QRect &arg2 = args.read (heap); - const QDate &arg3 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QRect &arg2 = gsi::arg_reader() (args, heap); + const QDate &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget_Adaptor *)cls)->cbs_paintCell_c4778_0 (arg1, arg2, arg3); } @@ -2933,7 +2933,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2957,7 +2957,7 @@ static void _call_cbs_paletteChange_2113_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPalette &arg1 = args.read (heap); + const QPalette &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget_Adaptor *)cls)->cbs_paletteChange_2113_0 (arg1); } @@ -3014,7 +3014,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -3066,7 +3066,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -3090,7 +3090,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -3133,7 +3133,7 @@ static void _call_cbs_styleChange_1228_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyle &arg1 = args.read (heap); + QStyle &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget_Adaptor *)cls)->cbs_styleChange_1228_0 (arg1); } @@ -3157,7 +3157,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -3181,7 +3181,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -3254,7 +3254,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } @@ -3278,7 +3278,7 @@ static void _call_cbs_windowActivationChange_864_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget_Adaptor *)cls)->cbs_windowActivationChange_864_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQCheckBox.cc b/src/gsiqt/qt4/QtGui/gsiDeclQCheckBox.cc index 2ac088eed..09f40ea12 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQCheckBox.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQCheckBox.cc @@ -1270,7 +1270,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCheckBox_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1294,7 +1294,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCheckBox_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1338,7 +1338,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCheckBox_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1380,7 +1380,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCheckBox_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1404,7 +1404,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCheckBox_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1471,7 +1471,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCheckBox_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1535,7 +1535,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCheckBox_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -1559,7 +1559,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCheckBox_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1583,7 +1583,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCheckBox_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1607,7 +1607,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCheckBox_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1631,7 +1631,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCheckBox_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1655,7 +1655,7 @@ static void _call_cbs_enabledChange_864_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCheckBox_Adaptor *)cls)->cbs_enabledChange_864_0 (arg1); } @@ -1679,7 +1679,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCheckBox_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -1703,7 +1703,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCheckBox_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1728,8 +1728,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCheckBox_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1752,7 +1752,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCheckBox_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1790,7 +1790,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCheckBox_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -1813,7 +1813,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCheckBox_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -1851,7 +1851,7 @@ static void _call_cbs_fontChange_1801_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCheckBox_Adaptor *)cls)->cbs_fontChange_1801_0 (arg1); } @@ -1875,7 +1875,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QCheckBox_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -1898,7 +1898,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCheckBox_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -1922,7 +1922,7 @@ static void _call_cbs_hitButton_c1916_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCheckBox_Adaptor *)cls)->cbs_hitButton_c1916_0 (arg1)); } @@ -1964,7 +1964,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCheckBox_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -1988,7 +1988,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QCheckBox_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2011,7 +2011,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCheckBox_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2035,7 +2035,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCheckBox_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2079,7 +2079,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCheckBox_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2103,7 +2103,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QCheckBox_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2145,7 +2145,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCheckBox_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2169,7 +2169,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCheckBox_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2193,7 +2193,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCheckBox_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2217,7 +2217,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCheckBox_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2241,7 +2241,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCheckBox_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2304,7 +2304,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCheckBox_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2328,7 +2328,7 @@ static void _call_cbs_paletteChange_2113_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPalette &arg1 = args.read (heap); + const QPalette &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCheckBox_Adaptor *)cls)->cbs_paletteChange_2113_0 (arg1); } @@ -2413,7 +2413,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCheckBox_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2451,7 +2451,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCheckBox_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2475,7 +2475,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCheckBox_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2536,7 +2536,7 @@ static void _call_cbs_styleChange_1228_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyle &arg1 = args.read (heap); + QStyle &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCheckBox_Adaptor *)cls)->cbs_styleChange_1228_0 (arg1); } @@ -2560,7 +2560,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCheckBox_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2584,7 +2584,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCheckBox_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2641,7 +2641,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCheckBox_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } @@ -2665,7 +2665,7 @@ static void _call_cbs_windowActivationChange_864_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCheckBox_Adaptor *)cls)->cbs_windowActivationChange_864_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQCleanlooksStyle.cc b/src/gsiqt/qt4/QtGui/gsiDeclQCleanlooksStyle.cc index a7c76d75a..e068f56d7 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQCleanlooksStyle.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQCleanlooksStyle.cc @@ -1213,7 +1213,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCleanlooksStyle_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1237,7 +1237,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCleanlooksStyle_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1279,7 +1279,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCleanlooksStyle_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -1309,10 +1309,10 @@ static void _call_cbs_drawComplexControl_c9027_0 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOptionComplex *arg2 = args.read (heap); - QPainter *arg3 = args.read (heap); - const QWidget *arg4 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOptionComplex *arg2 = gsi::arg_reader() (args, heap); + QPainter *arg3 = gsi::arg_reader() (args, heap); + const QWidget *arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCleanlooksStyle_Adaptor *)cls)->cbs_drawComplexControl_c9027_0 (arg1, arg2, arg3, arg4); } @@ -1342,10 +1342,10 @@ static void _call_cbs_drawControl_c8285_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args.read (heap); - QPainter *arg3 = args.read (heap); - const QWidget *arg4 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = gsi::arg_reader() (args, heap); + QPainter *arg3 = gsi::arg_reader() (args, heap); + const QWidget *arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCleanlooksStyle_Adaptor *)cls)->cbs_drawControl_c8285_0 (arg1, arg2, arg3, arg4); } @@ -1375,10 +1375,10 @@ static void _call_cbs_drawItemPixmap_c5678_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QRect &arg2 = args.read (heap); - int arg3 = args.read (heap); - const QPixmap &arg4 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QRect &arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QPixmap &arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCleanlooksStyle_Adaptor *)cls)->cbs_drawItemPixmap_c5678_0 (arg1, arg2, arg3, arg4); } @@ -1414,13 +1414,13 @@ static void _call_cbs_drawItemText_c10604_1 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QRect &arg2 = args.read (heap); - int arg3 = args.read (heap); - const QPalette &arg4 = args.read (heap); - bool arg5 = args.read (heap); - const QString &arg6 = args.read (heap); - const qt_gsi::Converter::target_type & arg7 = args.read::target_type & > (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QRect &arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QPalette &arg4 = gsi::arg_reader() (args, heap); + bool arg5 = gsi::arg_reader() (args, heap); + const QString &arg6 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg7 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QPalette::NoRole), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCleanlooksStyle_Adaptor *)cls)->cbs_drawItemText_c10604_1 (arg1, arg2, arg3, arg4, arg5, arg6, arg7); } @@ -1450,10 +1450,10 @@ static void _call_cbs_drawPrimitive_c8501_1 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args.read (heap); - QPainter *arg3 = args.read (heap); - const QWidget *arg4 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = gsi::arg_reader() (args, heap); + QPainter *arg3 = gsi::arg_reader() (args, heap); + const QWidget *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCleanlooksStyle_Adaptor *)cls)->cbs_drawPrimitive_c8501_1 (arg1, arg2, arg3, arg4); } @@ -1477,7 +1477,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCleanlooksStyle_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1502,8 +1502,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCleanlooksStyle_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1530,9 +1530,9 @@ static void _call_cbs_generatedIconPixmap_c5776_0 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QPixmap &arg2 = args.read (heap); - const QStyleOption *arg3 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QPixmap &arg2 = gsi::arg_reader() (args, heap); + const QStyleOption *arg3 = gsi::arg_reader() (args, heap); ret.write ((QPixmap)((QCleanlooksStyle_Adaptor *)cls)->cbs_generatedIconPixmap_c5776_0 (arg1, arg2, arg3)); } @@ -1561,10 +1561,10 @@ static void _call_cbs_hitTestComplexControl_c9517_1 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOptionComplex *arg2 = args.read (heap); - const QPoint &arg3 = args.read (heap); - const QWidget *arg4 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOptionComplex *arg2 = gsi::arg_reader() (args, heap); + const QPoint &arg3 = gsi::arg_reader() (args, heap); + const QWidget *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write::target_type > ((qt_gsi::Converter::target_type)((QCleanlooksStyle_Adaptor *)cls)->cbs_hitTestComplexControl_c9517_1 (arg1, arg2, arg3, arg4)); } @@ -1591,9 +1591,9 @@ static void _call_cbs_itemPixmapRect_c4360_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); - int arg2 = args.read (heap); - const QPixmap &arg3 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QPixmap &arg3 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QCleanlooksStyle_Adaptor *)cls)->cbs_itemPixmapRect_c4360_0 (arg1, arg2, arg3)); } @@ -1624,11 +1624,11 @@ static void _call_cbs_itemTextRect_c7544_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFontMetrics &arg1 = args.read (heap); - const QRect &arg2 = args.read (heap); - int arg3 = args.read (heap); - bool arg4 = args.read (heap); - const QString &arg5 = args.read (heap); + const QFontMetrics &arg1 = gsi::arg_reader() (args, heap); + const QRect &arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + bool arg4 = gsi::arg_reader() (args, heap); + const QString &arg5 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QCleanlooksStyle_Adaptor *)cls)->cbs_itemTextRect_c7544_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -1685,9 +1685,9 @@ static void _call_cbs_pixelMetric_c6642_2 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args.read (heap); - const QWidget *arg3 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + const QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((int)((QCleanlooksStyle_Adaptor *)cls)->cbs_pixelMetric_c6642_2 (arg1, arg2, arg3)); } @@ -1710,7 +1710,7 @@ static void _call_cbs_polish_1315_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCleanlooksStyle_Adaptor *)cls)->cbs_polish_1315_0 (arg1); } @@ -1734,7 +1734,7 @@ static void _call_cbs_polish_1843_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QApplication *arg1 = args.read (heap); + QApplication *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCleanlooksStyle_Adaptor *)cls)->cbs_polish_1843_0 (arg1); } @@ -1758,7 +1758,7 @@ static void _call_cbs_polish_1418_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPalette &arg1 = args.read (heap); + QPalette &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCleanlooksStyle_Adaptor *)cls)->cbs_polish_1418_0 (arg1); } @@ -1820,10 +1820,10 @@ static void _call_cbs_sizeFromContents_c8477_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args.read (heap); - const QSize &arg3 = args.read (heap); - const QWidget *arg4 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = gsi::arg_reader() (args, heap); + const QSize &arg3 = gsi::arg_reader() (args, heap); + const QWidget *arg4 = gsi::arg_reader() (args, heap); ret.write ((QSize)((QCleanlooksStyle_Adaptor *)cls)->cbs_sizeFromContents_c8477_0 (arg1, arg2, arg3, arg4)); } @@ -1893,9 +1893,9 @@ static void _call_cbs_standardPixmap_c6956_1 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args.read (heap); - const QWidget *arg3 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = gsi::arg_reader() (args, heap); + const QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QPixmap)((QCleanlooksStyle_Adaptor *)cls)->cbs_standardPixmap_c6956_1 (arg1, arg2, arg3)); } @@ -1924,10 +1924,10 @@ static void _call_cbs_styleHint_c8615_3 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args.read (heap); - const QWidget *arg3 = args.read (heap); - QStyleHintReturn *arg4 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + const QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + QStyleHintReturn *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((int)((QCleanlooksStyle_Adaptor *)cls)->cbs_styleHint_c8615_3 (arg1, arg2, arg3, arg4)); } @@ -1956,10 +1956,10 @@ static void _call_cbs_subControlRect_c9798_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOptionComplex *arg2 = args.read (heap); - const qt_gsi::Converter::target_type & arg3 = args.read::target_type & > (heap); - const QWidget *arg4 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOptionComplex *arg2 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg3 = gsi::arg_reader::target_type & >() (args, heap); + const QWidget *arg4 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QCleanlooksStyle_Adaptor *)cls)->cbs_subControlRect_c9798_0 (arg1, arg2, arg3, arg4)); } @@ -1986,9 +1986,9 @@ static void _call_cbs_subElementRect_c6528_1 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args.read (heap); - const QWidget *arg3 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = gsi::arg_reader() (args, heap); + const QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QRect)((QCleanlooksStyle_Adaptor *)cls)->cbs_subElementRect_c6528_1 (arg1, arg2, arg3)); } @@ -2011,7 +2011,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCleanlooksStyle_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2035,7 +2035,7 @@ static void _call_cbs_unpolish_1315_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCleanlooksStyle_Adaptor *)cls)->cbs_unpolish_1315_0 (arg1); } @@ -2059,7 +2059,7 @@ static void _call_cbs_unpolish_1843_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QApplication *arg1 = args.read (heap); + QApplication *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCleanlooksStyle_Adaptor *)cls)->cbs_unpolish_1843_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQColorDialog.cc b/src/gsiqt/qt4/QtGui/gsiDeclQColorDialog.cc index b59ce5713..fbf9a6be1 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQColorDialog.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQColorDialog.cc @@ -1571,7 +1571,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColorDialog_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1614,7 +1614,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColorDialog_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1638,7 +1638,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColorDialog_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1662,7 +1662,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColorDialog_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1704,7 +1704,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColorDialog_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1789,7 +1789,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColorDialog_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1853,7 +1853,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColorDialog_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -1877,7 +1877,7 @@ static void _call_cbs_done_767_0 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColorDialog_Adaptor *)cls)->cbs_done_767_0 (arg1); } @@ -1901,7 +1901,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColorDialog_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1925,7 +1925,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColorDialog_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1949,7 +1949,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColorDialog_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1973,7 +1973,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColorDialog_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1997,7 +1997,7 @@ static void _call_cbs_enabledChange_864_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColorDialog_Adaptor *)cls)->cbs_enabledChange_864_0 (arg1); } @@ -2021,7 +2021,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColorDialog_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -2045,7 +2045,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QColorDialog_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -2070,8 +2070,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QColorDialog_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -2112,7 +2112,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColorDialog_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -2150,7 +2150,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QColorDialog_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -2173,7 +2173,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColorDialog_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -2211,7 +2211,7 @@ static void _call_cbs_fontChange_1801_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColorDialog_Adaptor *)cls)->cbs_fontChange_1801_0 (arg1); } @@ -2235,7 +2235,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QColorDialog_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -2258,7 +2258,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColorDialog_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -2282,7 +2282,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColorDialog_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2306,7 +2306,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QColorDialog_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2329,7 +2329,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColorDialog_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2353,7 +2353,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColorDialog_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2397,7 +2397,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColorDialog_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2421,7 +2421,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QColorDialog_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2463,7 +2463,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColorDialog_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2487,7 +2487,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColorDialog_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2511,7 +2511,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColorDialog_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2535,7 +2535,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColorDialog_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2559,7 +2559,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColorDialog_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2602,7 +2602,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColorDialog_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2626,7 +2626,7 @@ static void _call_cbs_paletteChange_2113_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPalette &arg1 = args.read (heap); + const QPalette &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColorDialog_Adaptor *)cls)->cbs_paletteChange_2113_0 (arg1); } @@ -2717,7 +2717,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColorDialog_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2755,7 +2755,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColorDialog_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2779,7 +2779,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColorDialog_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2822,7 +2822,7 @@ static void _call_cbs_styleChange_1228_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyle &arg1 = args.read (heap); + QStyle &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColorDialog_Adaptor *)cls)->cbs_styleChange_1228_0 (arg1); } @@ -2846,7 +2846,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColorDialog_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2870,7 +2870,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColorDialog_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2909,7 +2909,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColorDialog_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } @@ -2933,7 +2933,7 @@ static void _call_cbs_windowActivationChange_864_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColorDialog_Adaptor *)cls)->cbs_windowActivationChange_864_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQColumnView.cc b/src/gsiqt/qt4/QtGui/gsiDeclQColumnView.cc index ceca17ca4..7faca5012 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQColumnView.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQColumnView.cc @@ -2141,7 +2141,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -2183,7 +2183,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -2207,7 +2207,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -2251,8 +2251,8 @@ static void _call_cbs_closeEditor_4926_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_closeEditor_4926_0 (arg1, arg2); } @@ -2276,7 +2276,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -2300,7 +2300,7 @@ static void _call_cbs_commitData_1315_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_commitData_1315_0 (arg1); } @@ -2324,7 +2324,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -2373,7 +2373,7 @@ static void _call_cbs_createColumn_2395_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QAbstractItemView *)((QColumnView_Adaptor *)cls)->cbs_createColumn_2395_0 (arg1)); } @@ -2398,8 +2398,8 @@ static void _call_cbs_currentChanged_4682_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_currentChanged_4682_0 (arg1, arg2); } @@ -2441,7 +2441,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -2467,8 +2467,8 @@ static void _call_cbs_dataChanged_4682_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_dataChanged_4682_0 (arg1, arg2); } @@ -2546,7 +2546,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -2623,7 +2623,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -2647,7 +2647,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -2671,7 +2671,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -2714,7 +2714,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -2756,9 +2756,9 @@ static void _call_cbs_edit_6773_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - QEvent *arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + QEvent *arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QColumnView_Adaptor *)cls)->cbs_edit_6773_0 (arg1, arg2, arg3)); } @@ -2781,7 +2781,7 @@ static void _call_cbs_editorDestroyed_1302_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_editorDestroyed_1302_0 (arg1); } @@ -2805,7 +2805,7 @@ static void _call_cbs_enabledChange_864_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_enabledChange_864_0 (arg1); } @@ -2829,7 +2829,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -2871,7 +2871,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QColumnView_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -2896,8 +2896,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QColumnView_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -2935,7 +2935,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -2973,7 +2973,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QColumnView_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -2996,7 +2996,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -3034,7 +3034,7 @@ static void _call_cbs_fontChange_1801_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_fontChange_1801_0 (arg1); } @@ -3058,7 +3058,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QColumnView_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -3081,7 +3081,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -3124,7 +3124,7 @@ static void _call_cbs_horizontalScrollbarAction_767_0 (const qt_gsi::GenericMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_horizontalScrollbarAction_767_0 (arg1); } @@ -3148,7 +3148,7 @@ static void _call_cbs_horizontalScrollbarValueChanged_767_0 (const qt_gsi::Gener { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_horizontalScrollbarValueChanged_767_0 (arg1); } @@ -3186,7 +3186,7 @@ static void _call_cbs_indexAt_c1916_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QColumnView_Adaptor *)cls)->cbs_indexAt_c1916_0 (arg1)); } @@ -3228,7 +3228,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -3252,7 +3252,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QColumnView_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -3275,7 +3275,7 @@ static void _call_cbs_isIndexHidden_c2395_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QColumnView_Adaptor *)cls)->cbs_isIndexHidden_c2395_0 (arg1)); } @@ -3298,7 +3298,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -3322,7 +3322,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -3346,7 +3346,7 @@ static void _call_cbs_keyboardSearch_2025_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_keyboardSearch_2025_0 (arg1); } @@ -3390,7 +3390,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -3414,7 +3414,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QColumnView_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -3456,7 +3456,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -3480,7 +3480,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -3504,7 +3504,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -3528,7 +3528,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -3554,8 +3554,8 @@ static void _call_cbs_moveCursor_6476_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); - QFlags arg2 = args.read > (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); ret.write ((QModelIndex)((QColumnView_Adaptor *)cls)->cbs_moveCursor_6476_0 (arg1, arg2)); } @@ -3578,7 +3578,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -3621,7 +3621,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -3645,7 +3645,7 @@ static void _call_cbs_paletteChange_2113_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPalette &arg1 = args.read (heap); + const QPalette &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_paletteChange_2113_0 (arg1); } @@ -3740,7 +3740,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -3768,9 +3768,9 @@ static void _call_cbs_rowsAboutToBeRemoved_3713_0 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_rowsAboutToBeRemoved_3713_0 (arg1, arg2, arg3); } @@ -3798,9 +3798,9 @@ static void _call_cbs_rowsInserted_3713_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_rowsInserted_3713_0 (arg1, arg2, arg3); } @@ -3841,8 +3841,8 @@ static void _call_cbs_scrollContentsBy_1426_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_scrollContentsBy_1426_0 (arg1, arg2); } @@ -3890,8 +3890,8 @@ static void _call_cbs_scrollTo_5576_1 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QAbstractItemView::EnsureVisible), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_scrollTo_5576_1 (arg1, arg2); } @@ -3956,8 +3956,8 @@ static void _call_cbs_selectionChanged_5346_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QItemSelection &arg1 = args.read (heap); - const QItemSelection &arg2 = args.read (heap); + const QItemSelection &arg1 = gsi::arg_reader() (args, heap); + const QItemSelection &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_selectionChanged_5346_0 (arg1, arg2); } @@ -3983,8 +3983,8 @@ static void _call_cbs_selectionCommand_c4199_1 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QEvent *arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QEvent *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write > ((QFlags)((QColumnView_Adaptor *)cls)->cbs_selectionCommand_c4199_1 (arg1, arg2)); } @@ -4059,7 +4059,7 @@ static void _call_cbs_setModel_2419_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractItemModel *arg1 = args.read (heap); + QAbstractItemModel *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_setModel_2419_0 (arg1); } @@ -4083,7 +4083,7 @@ static void _call_cbs_setRootIndex_2395_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_setRootIndex_2395_0 (arg1); } @@ -4109,8 +4109,8 @@ static void _call_cbs_setSelection_6155_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); - QFlags arg2 = args.read > (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_setSelection_6155_0 (arg1, arg2); } @@ -4134,7 +4134,7 @@ static void _call_cbs_setSelectionModel_2533_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QItemSelectionModel *arg1 = args.read (heap); + QItemSelectionModel *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_setSelectionModel_2533_0 (arg1); } @@ -4243,7 +4243,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -4286,7 +4286,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -4329,7 +4329,7 @@ static void _call_cbs_sizeHintForColumn_c767_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QColumnView_Adaptor *)cls)->cbs_sizeHintForColumn_c767_0 (arg1)); } @@ -4352,7 +4352,7 @@ static void _call_cbs_sizeHintForRow_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QColumnView_Adaptor *)cls)->cbs_sizeHintForRow_c767_0 (arg1)); } @@ -4390,7 +4390,7 @@ static void _call_cbs_startDrag_2456_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_startDrag_2456_0 (arg1); } @@ -4443,7 +4443,7 @@ static void _call_cbs_styleChange_1228_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyle &arg1 = args.read (heap); + QStyle &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_styleChange_1228_0 (arg1); } @@ -4467,7 +4467,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -4491,7 +4491,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -4627,7 +4627,7 @@ static void _call_cbs_verticalScrollbarAction_767_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_verticalScrollbarAction_767_0 (arg1); } @@ -4651,7 +4651,7 @@ static void _call_cbs_verticalScrollbarValueChanged_767_0 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_verticalScrollbarValueChanged_767_0 (arg1); } @@ -4722,7 +4722,7 @@ static void _call_cbs_viewportEvent_1217_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QColumnView_Adaptor *)cls)->cbs_viewportEvent_1217_0 (arg1)); } @@ -4745,7 +4745,7 @@ static void _call_cbs_visualRect_c2395_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QColumnView_Adaptor *)cls)->cbs_visualRect_c2395_0 (arg1)); } @@ -4768,7 +4768,7 @@ static void _call_cbs_visualRegionForSelection_c2727_0 (const qt_gsi::GenericMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QItemSelection &arg1 = args.read (heap); + const QItemSelection &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRegion)((QColumnView_Adaptor *)cls)->cbs_visualRegionForSelection_c2727_0 (arg1)); } @@ -4791,7 +4791,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } @@ -4815,7 +4815,7 @@ static void _call_cbs_windowActivationChange_864_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_windowActivationChange_864_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQComboBox.cc b/src/gsiqt/qt4/QtGui/gsiDeclQComboBox.cc index 486902b6c..56d94192f 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQComboBox.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQComboBox.cc @@ -2446,7 +2446,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -2506,7 +2506,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -2530,7 +2530,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -2554,7 +2554,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -2578,7 +2578,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -2681,7 +2681,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -2745,7 +2745,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -2769,7 +2769,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -2793,7 +2793,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -2817,7 +2817,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -2841,7 +2841,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -2883,7 +2883,7 @@ static void _call_cbs_enabledChange_864_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox_Adaptor *)cls)->cbs_enabledChange_864_0 (arg1); } @@ -2907,7 +2907,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -2931,7 +2931,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QComboBox_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -2956,8 +2956,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QComboBox_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -2980,7 +2980,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -3018,7 +3018,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QComboBox_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -3041,7 +3041,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -3079,7 +3079,7 @@ static void _call_cbs_fontChange_1801_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox_Adaptor *)cls)->cbs_fontChange_1801_0 (arg1); } @@ -3103,7 +3103,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QComboBox_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -3126,7 +3126,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -3225,7 +3225,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -3249,7 +3249,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QComboBox_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -3272,7 +3272,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -3296,7 +3296,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -3340,7 +3340,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -3364,7 +3364,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QComboBox_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -3406,7 +3406,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -3430,7 +3430,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -3454,7 +3454,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -3478,7 +3478,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -3502,7 +3502,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -3545,7 +3545,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -3569,7 +3569,7 @@ static void _call_cbs_paletteChange_2113_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPalette &arg1 = args.read (heap); + const QPalette &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox_Adaptor *)cls)->cbs_paletteChange_2113_0 (arg1); } @@ -3626,7 +3626,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -3664,7 +3664,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -3688,7 +3688,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -3751,7 +3751,7 @@ static void _call_cbs_styleChange_1228_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyle &arg1 = args.read (heap); + QStyle &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox_Adaptor *)cls)->cbs_styleChange_1228_0 (arg1); } @@ -3775,7 +3775,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -3799,7 +3799,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -3838,7 +3838,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } @@ -3862,7 +3862,7 @@ static void _call_cbs_windowActivationChange_864_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox_Adaptor *)cls)->cbs_windowActivationChange_864_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQCommandLinkButton.cc b/src/gsiqt/qt4/QtGui/gsiDeclQCommandLinkButton.cc index e404c82c1..0758dcb3b 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQCommandLinkButton.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQCommandLinkButton.cc @@ -1247,7 +1247,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommandLinkButton_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1271,7 +1271,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommandLinkButton_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1315,7 +1315,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommandLinkButton_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1357,7 +1357,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommandLinkButton_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1381,7 +1381,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommandLinkButton_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1448,7 +1448,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommandLinkButton_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1512,7 +1512,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommandLinkButton_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -1536,7 +1536,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommandLinkButton_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1560,7 +1560,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommandLinkButton_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1584,7 +1584,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommandLinkButton_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1608,7 +1608,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommandLinkButton_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1632,7 +1632,7 @@ static void _call_cbs_enabledChange_864_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommandLinkButton_Adaptor *)cls)->cbs_enabledChange_864_0 (arg1); } @@ -1656,7 +1656,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommandLinkButton_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -1680,7 +1680,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCommandLinkButton_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1705,8 +1705,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCommandLinkButton_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1729,7 +1729,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommandLinkButton_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1767,7 +1767,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCommandLinkButton_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -1790,7 +1790,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommandLinkButton_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -1828,7 +1828,7 @@ static void _call_cbs_fontChange_1801_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommandLinkButton_Adaptor *)cls)->cbs_fontChange_1801_0 (arg1); } @@ -1852,7 +1852,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QCommandLinkButton_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -1875,7 +1875,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommandLinkButton_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -1899,7 +1899,7 @@ static void _call_cbs_hitButton_c1916_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCommandLinkButton_Adaptor *)cls)->cbs_hitButton_c1916_0 (arg1)); } @@ -1941,7 +1941,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommandLinkButton_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -1965,7 +1965,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QCommandLinkButton_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -1988,7 +1988,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommandLinkButton_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2012,7 +2012,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommandLinkButton_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2056,7 +2056,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommandLinkButton_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2080,7 +2080,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QCommandLinkButton_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2122,7 +2122,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommandLinkButton_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2146,7 +2146,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommandLinkButton_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2170,7 +2170,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommandLinkButton_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2194,7 +2194,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommandLinkButton_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2218,7 +2218,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommandLinkButton_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2281,7 +2281,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommandLinkButton_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2305,7 +2305,7 @@ static void _call_cbs_paletteChange_2113_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPalette &arg1 = args.read (heap); + const QPalette &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommandLinkButton_Adaptor *)cls)->cbs_paletteChange_2113_0 (arg1); } @@ -2390,7 +2390,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommandLinkButton_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2428,7 +2428,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommandLinkButton_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2452,7 +2452,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommandLinkButton_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2495,7 +2495,7 @@ static void _call_cbs_styleChange_1228_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyle &arg1 = args.read (heap); + QStyle &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommandLinkButton_Adaptor *)cls)->cbs_styleChange_1228_0 (arg1); } @@ -2519,7 +2519,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommandLinkButton_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2543,7 +2543,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommandLinkButton_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2600,7 +2600,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommandLinkButton_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } @@ -2624,7 +2624,7 @@ static void _call_cbs_windowActivationChange_864_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommandLinkButton_Adaptor *)cls)->cbs_windowActivationChange_864_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQCommonStyle.cc b/src/gsiqt/qt4/QtGui/gsiDeclQCommonStyle.cc index 2ab13c131..d08ebd645 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQCommonStyle.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQCommonStyle.cc @@ -1102,7 +1102,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommonStyle_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1126,7 +1126,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommonStyle_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1168,7 +1168,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommonStyle_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -1198,10 +1198,10 @@ static void _call_cbs_drawComplexControl_c9027_1 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOptionComplex *arg2 = args.read (heap); - QPainter *arg3 = args.read (heap); - const QWidget *arg4 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOptionComplex *arg2 = gsi::arg_reader() (args, heap); + QPainter *arg3 = gsi::arg_reader() (args, heap); + const QWidget *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommonStyle_Adaptor *)cls)->cbs_drawComplexControl_c9027_1 (arg1, arg2, arg3, arg4); } @@ -1231,10 +1231,10 @@ static void _call_cbs_drawControl_c8285_1 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args.read (heap); - QPainter *arg3 = args.read (heap); - const QWidget *arg4 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = gsi::arg_reader() (args, heap); + QPainter *arg3 = gsi::arg_reader() (args, heap); + const QWidget *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommonStyle_Adaptor *)cls)->cbs_drawControl_c8285_1 (arg1, arg2, arg3, arg4); } @@ -1264,10 +1264,10 @@ static void _call_cbs_drawItemPixmap_c5678_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QRect &arg2 = args.read (heap); - int arg3 = args.read (heap); - const QPixmap &arg4 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QRect &arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QPixmap &arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommonStyle_Adaptor *)cls)->cbs_drawItemPixmap_c5678_0 (arg1, arg2, arg3, arg4); } @@ -1303,13 +1303,13 @@ static void _call_cbs_drawItemText_c10604_1 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QRect &arg2 = args.read (heap); - int arg3 = args.read (heap); - const QPalette &arg4 = args.read (heap); - bool arg5 = args.read (heap); - const QString &arg6 = args.read (heap); - const qt_gsi::Converter::target_type & arg7 = args.read::target_type & > (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QRect &arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QPalette &arg4 = gsi::arg_reader() (args, heap); + bool arg5 = gsi::arg_reader() (args, heap); + const QString &arg6 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg7 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QPalette::NoRole), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommonStyle_Adaptor *)cls)->cbs_drawItemText_c10604_1 (arg1, arg2, arg3, arg4, arg5, arg6, arg7); } @@ -1339,10 +1339,10 @@ static void _call_cbs_drawPrimitive_c8501_1 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args.read (heap); - QPainter *arg3 = args.read (heap); - const QWidget *arg4 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = gsi::arg_reader() (args, heap); + QPainter *arg3 = gsi::arg_reader() (args, heap); + const QWidget *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommonStyle_Adaptor *)cls)->cbs_drawPrimitive_c8501_1 (arg1, arg2, arg3, arg4); } @@ -1366,7 +1366,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCommonStyle_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1391,8 +1391,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCommonStyle_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1419,9 +1419,9 @@ static void _call_cbs_generatedIconPixmap_c5776_0 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QPixmap &arg2 = args.read (heap); - const QStyleOption *arg3 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QPixmap &arg2 = gsi::arg_reader() (args, heap); + const QStyleOption *arg3 = gsi::arg_reader() (args, heap); ret.write ((QPixmap)((QCommonStyle_Adaptor *)cls)->cbs_generatedIconPixmap_c5776_0 (arg1, arg2, arg3)); } @@ -1450,10 +1450,10 @@ static void _call_cbs_hitTestComplexControl_c9517_1 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOptionComplex *arg2 = args.read (heap); - const QPoint &arg3 = args.read (heap); - const QWidget *arg4 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOptionComplex *arg2 = gsi::arg_reader() (args, heap); + const QPoint &arg3 = gsi::arg_reader() (args, heap); + const QWidget *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write::target_type > ((qt_gsi::Converter::target_type)((QCommonStyle_Adaptor *)cls)->cbs_hitTestComplexControl_c9517_1 (arg1, arg2, arg3, arg4)); } @@ -1480,9 +1480,9 @@ static void _call_cbs_itemPixmapRect_c4360_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); - int arg2 = args.read (heap); - const QPixmap &arg3 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QPixmap &arg3 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QCommonStyle_Adaptor *)cls)->cbs_itemPixmapRect_c4360_0 (arg1, arg2, arg3)); } @@ -1513,11 +1513,11 @@ static void _call_cbs_itemTextRect_c7544_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFontMetrics &arg1 = args.read (heap); - const QRect &arg2 = args.read (heap); - int arg3 = args.read (heap); - bool arg4 = args.read (heap); - const QString &arg5 = args.read (heap); + const QFontMetrics &arg1 = gsi::arg_reader() (args, heap); + const QRect &arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + bool arg4 = gsi::arg_reader() (args, heap); + const QString &arg5 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QCommonStyle_Adaptor *)cls)->cbs_itemTextRect_c7544_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -1574,9 +1574,9 @@ static void _call_cbs_pixelMetric_c6642_2 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args.read (heap); - const QWidget *arg3 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + const QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((int)((QCommonStyle_Adaptor *)cls)->cbs_pixelMetric_c6642_2 (arg1, arg2, arg3)); } @@ -1599,7 +1599,7 @@ static void _call_cbs_polish_1418_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPalette &arg1 = args.read (heap); + QPalette &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommonStyle_Adaptor *)cls)->cbs_polish_1418_0 (arg1); } @@ -1623,7 +1623,7 @@ static void _call_cbs_polish_1843_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QApplication *arg1 = args.read (heap); + QApplication *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommonStyle_Adaptor *)cls)->cbs_polish_1843_0 (arg1); } @@ -1647,7 +1647,7 @@ static void _call_cbs_polish_1315_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommonStyle_Adaptor *)cls)->cbs_polish_1315_0 (arg1); } @@ -1709,10 +1709,10 @@ static void _call_cbs_sizeFromContents_c8477_1 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args.read (heap); - const QSize &arg3 = args.read (heap); - const QWidget *arg4 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = gsi::arg_reader() (args, heap); + const QSize &arg3 = gsi::arg_reader() (args, heap); + const QWidget *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QSize)((QCommonStyle_Adaptor *)cls)->cbs_sizeFromContents_c8477_1 (arg1, arg2, arg3, arg4)); } @@ -1782,9 +1782,9 @@ static void _call_cbs_standardPixmap_c6956_2 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args.read (heap); - const QWidget *arg3 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + const QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QPixmap)((QCommonStyle_Adaptor *)cls)->cbs_standardPixmap_c6956_2 (arg1, arg2, arg3)); } @@ -1813,10 +1813,10 @@ static void _call_cbs_styleHint_c8615_3 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args.read (heap); - const QWidget *arg3 = args.read (heap); - QStyleHintReturn *arg4 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + const QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + QStyleHintReturn *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((int)((QCommonStyle_Adaptor *)cls)->cbs_styleHint_c8615_3 (arg1, arg2, arg3, arg4)); } @@ -1845,10 +1845,10 @@ static void _call_cbs_subControlRect_c9798_1 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOptionComplex *arg2 = args.read (heap); - const qt_gsi::Converter::target_type & arg3 = args.read::target_type & > (heap); - const QWidget *arg4 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOptionComplex *arg2 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg3 = gsi::arg_reader::target_type & >() (args, heap); + const QWidget *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QRect)((QCommonStyle_Adaptor *)cls)->cbs_subControlRect_c9798_1 (arg1, arg2, arg3, arg4)); } @@ -1875,9 +1875,9 @@ static void _call_cbs_subElementRect_c6528_1 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args.read (heap); - const QWidget *arg3 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = gsi::arg_reader() (args, heap); + const QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QRect)((QCommonStyle_Adaptor *)cls)->cbs_subElementRect_c6528_1 (arg1, arg2, arg3)); } @@ -1900,7 +1900,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommonStyle_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -1924,7 +1924,7 @@ static void _call_cbs_unpolish_1315_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommonStyle_Adaptor *)cls)->cbs_unpolish_1315_0 (arg1); } @@ -1948,7 +1948,7 @@ static void _call_cbs_unpolish_1843_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QApplication *arg1 = args.read (heap); + QApplication *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommonStyle_Adaptor *)cls)->cbs_unpolish_1843_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQCompleter.cc b/src/gsiqt/qt4/QtGui/gsiDeclQCompleter.cc index 21e93adb5..553a15b3d 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQCompleter.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQCompleter.cc @@ -1072,7 +1072,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCompleter_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1096,7 +1096,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCompleter_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1138,7 +1138,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCompleter_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -1162,7 +1162,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCompleter_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1187,8 +1187,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCompleter_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1247,7 +1247,7 @@ static void _call_cbs_pathFromIndex_c2395_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QCompleter_Adaptor *)cls)->cbs_pathFromIndex_c2395_0 (arg1)); } @@ -1302,7 +1302,7 @@ static void _call_cbs_splitPath_c2025_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QStringList)((QCompleter_Adaptor *)cls)->cbs_splitPath_c2025_0 (arg1)); } @@ -1325,7 +1325,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCompleter_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQDataWidgetMapper.cc b/src/gsiqt/qt4/QtGui/gsiDeclQDataWidgetMapper.cc index 86703ffbd..bf89ec4fc 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQDataWidgetMapper.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQDataWidgetMapper.cc @@ -857,7 +857,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDataWidgetMapper_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -899,7 +899,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDataWidgetMapper_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -941,7 +941,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDataWidgetMapper_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -965,7 +965,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDataWidgetMapper_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -990,8 +990,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDataWidgetMapper_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1046,7 +1046,7 @@ static void _call_cbs_setCurrentIndex_767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDataWidgetMapper_Adaptor *)cls)->cbs_setCurrentIndex_767_0 (arg1); } @@ -1070,7 +1070,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDataWidgetMapper_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQDateEdit.cc b/src/gsiqt/qt4/QtGui/gsiDeclQDateEdit.cc index c8034d6ce..23bd47bb8 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQDateEdit.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQDateEdit.cc @@ -1251,7 +1251,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateEdit_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1275,7 +1275,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateEdit_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1299,7 +1299,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateEdit_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1343,7 +1343,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateEdit_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1367,7 +1367,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateEdit_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1434,7 +1434,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateEdit_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1494,7 +1494,7 @@ static void _call_cbs_dateTimeFromText_c2025_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QDateTime)((QDateEdit_Adaptor *)cls)->cbs_dateTimeFromText_c2025_0 (arg1)); } @@ -1557,7 +1557,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateEdit_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -1581,7 +1581,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateEdit_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1605,7 +1605,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateEdit_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1629,7 +1629,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateEdit_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1653,7 +1653,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateEdit_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1691,7 +1691,7 @@ static void _call_cbs_enabledChange_864_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateEdit_Adaptor *)cls)->cbs_enabledChange_864_0 (arg1); } @@ -1715,7 +1715,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateEdit_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -1739,7 +1739,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDateEdit_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1764,8 +1764,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDateEdit_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1788,7 +1788,7 @@ static void _call_cbs_fixup_c1330_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QString &arg1 = args.read (heap); + QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateEdit_Adaptor *)cls)->cbs_fixup_c1330_0 (arg1); } @@ -1812,7 +1812,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateEdit_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1850,7 +1850,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDateEdit_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -1873,7 +1873,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateEdit_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -1911,7 +1911,7 @@ static void _call_cbs_fontChange_1801_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateEdit_Adaptor *)cls)->cbs_fontChange_1801_0 (arg1); } @@ -1935,7 +1935,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QDateEdit_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -1958,7 +1958,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateEdit_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -2001,7 +2001,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateEdit_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2025,7 +2025,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QDateEdit_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2048,7 +2048,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateEdit_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2072,7 +2072,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateEdit_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2116,7 +2116,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateEdit_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2154,7 +2154,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QDateEdit_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2196,7 +2196,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateEdit_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2220,7 +2220,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateEdit_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2244,7 +2244,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateEdit_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2268,7 +2268,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateEdit_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2292,7 +2292,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateEdit_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2335,7 +2335,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateEdit_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2359,7 +2359,7 @@ static void _call_cbs_paletteChange_2113_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPalette &arg1 = args.read (heap); + const QPalette &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateEdit_Adaptor *)cls)->cbs_paletteChange_2113_0 (arg1); } @@ -2416,7 +2416,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateEdit_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2473,7 +2473,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateEdit_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2497,7 +2497,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateEdit_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2540,7 +2540,7 @@ static void _call_cbs_stepBy_767_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateEdit_Adaptor *)cls)->cbs_stepBy_767_0 (arg1); } @@ -2583,7 +2583,7 @@ static void _call_cbs_styleChange_1228_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyle &arg1 = args.read (heap); + QStyle &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateEdit_Adaptor *)cls)->cbs_styleChange_1228_0 (arg1); } @@ -2607,7 +2607,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateEdit_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2631,7 +2631,7 @@ static void _call_cbs_textFromDateTime_c2175_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDateTime &arg1 = args.read (heap); + const QDateTime &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QDateEdit_Adaptor *)cls)->cbs_textFromDateTime_c2175_0 (arg1)); } @@ -2672,7 +2672,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateEdit_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2713,8 +2713,8 @@ static void _call_cbs_validate_c2171_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QString &arg1 = args.read (heap); - int &arg2 = args.read (heap); + QString &arg1 = gsi::arg_reader() (args, heap); + int &arg2 = gsi::arg_reader() (args, heap); ret.write::target_type > ((qt_gsi::Converter::target_type)((QDateEdit_Adaptor *)cls)->cbs_validate_c2171_0 (arg1, arg2)); } @@ -2737,7 +2737,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateEdit_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } @@ -2761,7 +2761,7 @@ static void _call_cbs_windowActivationChange_864_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateEdit_Adaptor *)cls)->cbs_windowActivationChange_864_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQDateTimeEdit.cc b/src/gsiqt/qt4/QtGui/gsiDeclQDateTimeEdit.cc index c365dc2ef..88d4f8879 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQDateTimeEdit.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQDateTimeEdit.cc @@ -2213,7 +2213,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -2237,7 +2237,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -2261,7 +2261,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -2305,7 +2305,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -2329,7 +2329,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -2396,7 +2396,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -2456,7 +2456,7 @@ static void _call_cbs_dateTimeFromText_c2025_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QDateTime)((QDateTimeEdit_Adaptor *)cls)->cbs_dateTimeFromText_c2025_0 (arg1)); } @@ -2519,7 +2519,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -2543,7 +2543,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -2567,7 +2567,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -2591,7 +2591,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -2615,7 +2615,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -2653,7 +2653,7 @@ static void _call_cbs_enabledChange_864_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit_Adaptor *)cls)->cbs_enabledChange_864_0 (arg1); } @@ -2677,7 +2677,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -2701,7 +2701,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDateTimeEdit_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -2726,8 +2726,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDateTimeEdit_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -2750,7 +2750,7 @@ static void _call_cbs_fixup_c1330_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QString &arg1 = args.read (heap); + QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit_Adaptor *)cls)->cbs_fixup_c1330_0 (arg1); } @@ -2774,7 +2774,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -2812,7 +2812,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDateTimeEdit_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -2835,7 +2835,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -2873,7 +2873,7 @@ static void _call_cbs_fontChange_1801_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit_Adaptor *)cls)->cbs_fontChange_1801_0 (arg1); } @@ -2897,7 +2897,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QDateTimeEdit_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -2920,7 +2920,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -2963,7 +2963,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2987,7 +2987,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QDateTimeEdit_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -3010,7 +3010,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -3034,7 +3034,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -3078,7 +3078,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -3116,7 +3116,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QDateTimeEdit_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -3158,7 +3158,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -3182,7 +3182,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -3206,7 +3206,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -3230,7 +3230,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -3254,7 +3254,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -3297,7 +3297,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -3321,7 +3321,7 @@ static void _call_cbs_paletteChange_2113_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPalette &arg1 = args.read (heap); + const QPalette &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit_Adaptor *)cls)->cbs_paletteChange_2113_0 (arg1); } @@ -3378,7 +3378,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -3435,7 +3435,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -3459,7 +3459,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -3502,7 +3502,7 @@ static void _call_cbs_stepBy_767_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit_Adaptor *)cls)->cbs_stepBy_767_0 (arg1); } @@ -3545,7 +3545,7 @@ static void _call_cbs_styleChange_1228_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyle &arg1 = args.read (heap); + QStyle &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit_Adaptor *)cls)->cbs_styleChange_1228_0 (arg1); } @@ -3569,7 +3569,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -3593,7 +3593,7 @@ static void _call_cbs_textFromDateTime_c2175_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDateTime &arg1 = args.read (heap); + const QDateTime &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QDateTimeEdit_Adaptor *)cls)->cbs_textFromDateTime_c2175_0 (arg1)); } @@ -3634,7 +3634,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -3675,8 +3675,8 @@ static void _call_cbs_validate_c2171_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QString &arg1 = args.read (heap); - int &arg2 = args.read (heap); + QString &arg1 = gsi::arg_reader() (args, heap); + int &arg2 = gsi::arg_reader() (args, heap); ret.write::target_type > ((qt_gsi::Converter::target_type)((QDateTimeEdit_Adaptor *)cls)->cbs_validate_c2171_0 (arg1, arg2)); } @@ -3699,7 +3699,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } @@ -3723,7 +3723,7 @@ static void _call_cbs_windowActivationChange_864_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit_Adaptor *)cls)->cbs_windowActivationChange_864_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQDesktopWidget.cc b/src/gsiqt/qt4/QtGui/gsiDeclQDesktopWidget.cc index 52ebd49de..f510a4d22 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQDesktopWidget.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQDesktopWidget.cc @@ -1312,7 +1312,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDesktopWidget_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1336,7 +1336,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDesktopWidget_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1360,7 +1360,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDesktopWidget_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1384,7 +1384,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDesktopWidget_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1408,7 +1408,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDesktopWidget_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1475,7 +1475,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDesktopWidget_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1539,7 +1539,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDesktopWidget_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -1563,7 +1563,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDesktopWidget_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1587,7 +1587,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDesktopWidget_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1611,7 +1611,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDesktopWidget_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1635,7 +1635,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDesktopWidget_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1659,7 +1659,7 @@ static void _call_cbs_enabledChange_864_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDesktopWidget_Adaptor *)cls)->cbs_enabledChange_864_0 (arg1); } @@ -1683,7 +1683,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDesktopWidget_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -1707,7 +1707,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDesktopWidget_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1732,8 +1732,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDesktopWidget_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1756,7 +1756,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDesktopWidget_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1794,7 +1794,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDesktopWidget_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -1817,7 +1817,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDesktopWidget_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -1855,7 +1855,7 @@ static void _call_cbs_fontChange_1801_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDesktopWidget_Adaptor *)cls)->cbs_fontChange_1801_0 (arg1); } @@ -1879,7 +1879,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QDesktopWidget_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -1902,7 +1902,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDesktopWidget_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -1926,7 +1926,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDesktopWidget_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -1950,7 +1950,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QDesktopWidget_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -1973,7 +1973,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDesktopWidget_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -1997,7 +1997,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDesktopWidget_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2041,7 +2041,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDesktopWidget_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2065,7 +2065,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QDesktopWidget_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2107,7 +2107,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDesktopWidget_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2131,7 +2131,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDesktopWidget_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2155,7 +2155,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDesktopWidget_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2179,7 +2179,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDesktopWidget_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2203,7 +2203,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDesktopWidget_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2246,7 +2246,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDesktopWidget_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2270,7 +2270,7 @@ static void _call_cbs_paletteChange_2113_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPalette &arg1 = args.read (heap); + const QPalette &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDesktopWidget_Adaptor *)cls)->cbs_paletteChange_2113_0 (arg1); } @@ -2327,7 +2327,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDesktopWidget_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2401,7 +2401,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDesktopWidget_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2425,7 +2425,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDesktopWidget_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2468,7 +2468,7 @@ static void _call_cbs_styleChange_1228_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyle &arg1 = args.read (heap); + QStyle &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDesktopWidget_Adaptor *)cls)->cbs_styleChange_1228_0 (arg1); } @@ -2492,7 +2492,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDesktopWidget_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2516,7 +2516,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDesktopWidget_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2555,7 +2555,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDesktopWidget_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } @@ -2579,7 +2579,7 @@ static void _call_cbs_windowActivationChange_864_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDesktopWidget_Adaptor *)cls)->cbs_windowActivationChange_864_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQDial.cc b/src/gsiqt/qt4/QtGui/gsiDeclQDial.cc index 1be4a2540..fca934a24 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQDial.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQDial.cc @@ -1290,7 +1290,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDial_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1332,7 +1332,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDial_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1356,7 +1356,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDial_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1380,7 +1380,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDial_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1404,7 +1404,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDial_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1471,7 +1471,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDial_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1535,7 +1535,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDial_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -1559,7 +1559,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDial_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1583,7 +1583,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDial_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1607,7 +1607,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDial_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1631,7 +1631,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDial_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1655,7 +1655,7 @@ static void _call_cbs_enabledChange_864_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDial_Adaptor *)cls)->cbs_enabledChange_864_0 (arg1); } @@ -1679,7 +1679,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDial_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -1703,7 +1703,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDial_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1728,8 +1728,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDial_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1752,7 +1752,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDial_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1790,7 +1790,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDial_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -1813,7 +1813,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDial_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -1851,7 +1851,7 @@ static void _call_cbs_fontChange_1801_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDial_Adaptor *)cls)->cbs_fontChange_1801_0 (arg1); } @@ -1875,7 +1875,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QDial_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -1898,7 +1898,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDial_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -1941,7 +1941,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDial_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -1965,7 +1965,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QDial_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -1988,7 +1988,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDial_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2012,7 +2012,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDial_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2056,7 +2056,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDial_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2080,7 +2080,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QDial_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2122,7 +2122,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDial_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2146,7 +2146,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDial_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2170,7 +2170,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDial_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2194,7 +2194,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDial_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2218,7 +2218,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDial_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2261,7 +2261,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDial_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2285,7 +2285,7 @@ static void _call_cbs_paletteChange_2113_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPalette &arg1 = args.read (heap); + const QPalette &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDial_Adaptor *)cls)->cbs_paletteChange_2113_0 (arg1); } @@ -2377,7 +2377,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDial_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2440,7 +2440,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDial_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2464,7 +2464,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDial_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2507,7 +2507,7 @@ static void _call_cbs_sliderChange_3257_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDial_Adaptor *)cls)->cbs_sliderChange_3257_0 (arg1); } @@ -2577,7 +2577,7 @@ static void _call_cbs_styleChange_1228_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyle &arg1 = args.read (heap); + QStyle &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDial_Adaptor *)cls)->cbs_styleChange_1228_0 (arg1); } @@ -2601,7 +2601,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDial_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2625,7 +2625,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDial_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2682,7 +2682,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDial_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } @@ -2706,7 +2706,7 @@ static void _call_cbs_windowActivationChange_864_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDial_Adaptor *)cls)->cbs_windowActivationChange_864_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQDialog.cc b/src/gsiqt/qt4/QtGui/gsiDeclQDialog.cc index 28b7e2cfe..62800fc51 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQDialog.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQDialog.cc @@ -1505,7 +1505,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialog_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1548,7 +1548,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialog_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1572,7 +1572,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialog_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1596,7 +1596,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialog_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1620,7 +1620,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialog_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1687,7 +1687,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialog_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1751,7 +1751,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialog_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -1775,7 +1775,7 @@ static void _call_cbs_done_767_0 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialog_Adaptor *)cls)->cbs_done_767_0 (arg1); } @@ -1799,7 +1799,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialog_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1823,7 +1823,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialog_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1847,7 +1847,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialog_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1871,7 +1871,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialog_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1895,7 +1895,7 @@ static void _call_cbs_enabledChange_864_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialog_Adaptor *)cls)->cbs_enabledChange_864_0 (arg1); } @@ -1919,7 +1919,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialog_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -1943,7 +1943,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDialog_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1968,8 +1968,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDialog_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -2010,7 +2010,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialog_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -2048,7 +2048,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDialog_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -2071,7 +2071,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialog_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -2109,7 +2109,7 @@ static void _call_cbs_fontChange_1801_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialog_Adaptor *)cls)->cbs_fontChange_1801_0 (arg1); } @@ -2133,7 +2133,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QDialog_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -2156,7 +2156,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialog_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -2180,7 +2180,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialog_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2204,7 +2204,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QDialog_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2227,7 +2227,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialog_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2251,7 +2251,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialog_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2295,7 +2295,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialog_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2319,7 +2319,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QDialog_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2361,7 +2361,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialog_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2385,7 +2385,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialog_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2409,7 +2409,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialog_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2433,7 +2433,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialog_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2457,7 +2457,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialog_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2500,7 +2500,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialog_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2524,7 +2524,7 @@ static void _call_cbs_paletteChange_2113_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPalette &arg1 = args.read (heap); + const QPalette &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialog_Adaptor *)cls)->cbs_paletteChange_2113_0 (arg1); } @@ -2615,7 +2615,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialog_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2653,7 +2653,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialog_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2677,7 +2677,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialog_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2720,7 +2720,7 @@ static void _call_cbs_styleChange_1228_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyle &arg1 = args.read (heap); + QStyle &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialog_Adaptor *)cls)->cbs_styleChange_1228_0 (arg1); } @@ -2744,7 +2744,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialog_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2768,7 +2768,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialog_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2807,7 +2807,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialog_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } @@ -2831,7 +2831,7 @@ static void _call_cbs_windowActivationChange_864_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialog_Adaptor *)cls)->cbs_windowActivationChange_864_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQDialogButtonBox.cc b/src/gsiqt/qt4/QtGui/gsiDeclQDialogButtonBox.cc index 4a2a54b11..bc28bfff4 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQDialogButtonBox.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQDialogButtonBox.cc @@ -1468,7 +1468,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialogButtonBox_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1492,7 +1492,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialogButtonBox_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1516,7 +1516,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialogButtonBox_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1558,7 +1558,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialogButtonBox_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1582,7 +1582,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialogButtonBox_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1649,7 +1649,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialogButtonBox_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1713,7 +1713,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialogButtonBox_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -1737,7 +1737,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialogButtonBox_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1761,7 +1761,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialogButtonBox_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1785,7 +1785,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialogButtonBox_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1809,7 +1809,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialogButtonBox_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1833,7 +1833,7 @@ static void _call_cbs_enabledChange_864_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialogButtonBox_Adaptor *)cls)->cbs_enabledChange_864_0 (arg1); } @@ -1857,7 +1857,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialogButtonBox_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -1881,7 +1881,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDialogButtonBox_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1906,8 +1906,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDialogButtonBox_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1930,7 +1930,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialogButtonBox_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1968,7 +1968,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDialogButtonBox_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -1991,7 +1991,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialogButtonBox_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -2029,7 +2029,7 @@ static void _call_cbs_fontChange_1801_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialogButtonBox_Adaptor *)cls)->cbs_fontChange_1801_0 (arg1); } @@ -2053,7 +2053,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QDialogButtonBox_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -2090,7 +2090,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialogButtonBox_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -2114,7 +2114,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialogButtonBox_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2138,7 +2138,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QDialogButtonBox_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2161,7 +2161,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialogButtonBox_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2185,7 +2185,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialogButtonBox_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2229,7 +2229,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialogButtonBox_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2253,7 +2253,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QDialogButtonBox_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2295,7 +2295,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialogButtonBox_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2319,7 +2319,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialogButtonBox_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2343,7 +2343,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialogButtonBox_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2367,7 +2367,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialogButtonBox_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2391,7 +2391,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialogButtonBox_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2434,7 +2434,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialogButtonBox_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2458,7 +2458,7 @@ static void _call_cbs_paletteChange_2113_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPalette &arg1 = args.read (heap); + const QPalette &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialogButtonBox_Adaptor *)cls)->cbs_paletteChange_2113_0 (arg1); } @@ -2529,7 +2529,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialogButtonBox_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2567,7 +2567,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialogButtonBox_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2591,7 +2591,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialogButtonBox_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2634,7 +2634,7 @@ static void _call_cbs_styleChange_1228_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyle &arg1 = args.read (heap); + QStyle &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialogButtonBox_Adaptor *)cls)->cbs_styleChange_1228_0 (arg1); } @@ -2658,7 +2658,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialogButtonBox_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2682,7 +2682,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialogButtonBox_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2721,7 +2721,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialogButtonBox_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } @@ -2745,7 +2745,7 @@ static void _call_cbs_windowActivationChange_864_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialogButtonBox_Adaptor *)cls)->cbs_windowActivationChange_864_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQDirModel.cc b/src/gsiqt/qt4/QtGui/gsiDeclQDirModel.cc index c98445551..846801e8d 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQDirModel.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQDirModel.cc @@ -1945,7 +1945,7 @@ static void _call_cbs_buddy_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QDirModel_Adaptor *)cls)->cbs_buddy_c2395_0 (arg1)); } @@ -1968,7 +1968,7 @@ static void _call_cbs_canFetchMore_c2395_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDirModel_Adaptor *)cls)->cbs_canFetchMore_c2395_0 (arg1)); } @@ -2035,7 +2035,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDirModel_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -2059,7 +2059,7 @@ static void _call_cbs_columnCount_c2395_1 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((int)((QDirModel_Adaptor *)cls)->cbs_columnCount_c2395_1 (arg1)); } @@ -2154,7 +2154,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDirModel_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -2180,8 +2180,8 @@ static void _call_cbs_data_c3054_1 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::DisplayRole, heap); ret.write ((QVariant)((QDirModel_Adaptor *)cls)->cbs_data_c3054_1 (arg1, arg2)); } @@ -2270,7 +2270,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDirModel_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -2302,11 +2302,11 @@ static void _call_cbs_dropMimeData_7425_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMimeData *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - const QModelIndex &arg5 = args.read (heap); + const QMimeData *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + const QModelIndex &arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDirModel_Adaptor *)cls)->cbs_dropMimeData_7425_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -2456,7 +2456,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDirModel_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -2481,8 +2481,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDirModel_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -2505,7 +2505,7 @@ static void _call_cbs_fetchMore_2395_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDirModel_Adaptor *)cls)->cbs_fetchMore_2395_0 (arg1); } @@ -2529,7 +2529,7 @@ static void _call_cbs_flags_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QFlags)((QDirModel_Adaptor *)cls)->cbs_flags_c2395_0 (arg1)); } @@ -2552,7 +2552,7 @@ static void _call_cbs_hasChildren_c2395_1 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QDirModel_Adaptor *)cls)->cbs_hasChildren_c2395_1 (arg1)); } @@ -2579,9 +2579,9 @@ static void _call_cbs_headerData_c3231_1 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::DisplayRole, heap); ret.write ((QVariant)((QDirModel_Adaptor *)cls)->cbs_headerData_c3231_1 (arg1, arg2, arg3)); } @@ -2632,9 +2632,9 @@ static void _call_cbs_index_c3713_1 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((QModelIndex)((QDirModel_Adaptor *)cls)->cbs_index_c3713_1 (arg1, arg2, arg3)); } @@ -2661,9 +2661,9 @@ static void _call_cbs_insertColumns_3713_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QDirModel_Adaptor *)cls)->cbs_insertColumns_3713_1 (arg1, arg2, arg3)); } @@ -2690,9 +2690,9 @@ static void _call_cbs_insertRows_3713_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QDirModel_Adaptor *)cls)->cbs_insertRows_3713_1 (arg1, arg2, arg3)); } @@ -2715,7 +2715,7 @@ static void _call_cbs_itemData_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QMap)((QDirModel_Adaptor *)cls)->cbs_itemData_c2395_0 (arg1)); } @@ -2774,11 +2774,11 @@ static void _call_cbs_match_c7932_2 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - const QVariant &arg3 = args.read (heap); - int arg4 = args.read (heap); - QFlags arg5 = args.read > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QVariant &arg3 = gsi::arg_reader() (args, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (1, heap); + QFlags arg5 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (Qt::MatchFlags(Qt::MatchStartsWith|Qt::MatchWrap), heap); ret.write > ((QList)((QDirModel_Adaptor *)cls)->cbs_match_c7932_2 (arg1, arg2, arg3, arg4, arg5)); } @@ -2801,7 +2801,7 @@ static void _call_cbs_mimeData_c3010_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); ret.write ((QMimeData *)((QDirModel_Adaptor *)cls)->cbs_mimeData_c3010_0 (arg1)); } @@ -2843,7 +2843,7 @@ static void _call_cbs_parent_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QDirModel_Adaptor *)cls)->cbs_parent_c2395_0 (arg1)); } @@ -2902,9 +2902,9 @@ static void _call_cbs_removeColumns_3713_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QDirModel_Adaptor *)cls)->cbs_removeColumns_3713_1 (arg1, arg2, arg3)); } @@ -2931,9 +2931,9 @@ static void _call_cbs_removeRows_3713_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QDirModel_Adaptor *)cls)->cbs_removeRows_3713_1 (arg1, arg2, arg3)); } @@ -2991,7 +2991,7 @@ static void _call_cbs_rowCount_c2395_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((int)((QDirModel_Adaptor *)cls)->cbs_rowCount_c2395_1 (arg1)); } @@ -3032,9 +3032,9 @@ static void _call_cbs_setData_5065_1 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::EditRole, heap); ret.write ((bool)((QDirModel_Adaptor *)cls)->cbs_setData_5065_1 (arg1, arg2, arg3)); } @@ -3063,10 +3063,10 @@ static void _call_cbs_setHeaderData_5242_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - const QVariant &arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + const QVariant &arg3 = gsi::arg_reader() (args, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::EditRole, heap); ret.write ((bool)((QDirModel_Adaptor *)cls)->cbs_setHeaderData_5242_1 (arg1, arg2, arg3, arg4)); } @@ -3091,8 +3091,8 @@ static void _call_cbs_setItemData_5414_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QMap &arg2 = args.read & > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QMap &arg2 = gsi::arg_reader & >() (args, heap); ret.write ((bool)((QDirModel_Adaptor *)cls)->cbs_setItemData_5414_0 (arg1, arg2)); } @@ -3136,8 +3136,8 @@ static void _call_cbs_sort_2340_1 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::AscendingOrder), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDirModel_Adaptor *)cls)->cbs_sort_2340_1 (arg1, arg2); } @@ -3161,7 +3161,7 @@ static void _call_cbs_span_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QSize)((QDirModel_Adaptor *)cls)->cbs_span_c2395_0 (arg1)); } @@ -3222,7 +3222,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDirModel_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQDockWidget.cc b/src/gsiqt/qt4/QtGui/gsiDeclQDockWidget.cc index 3983160b1..205acd2f7 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQDockWidget.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQDockWidget.cc @@ -1370,7 +1370,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDockWidget_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1412,7 +1412,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDockWidget_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1436,7 +1436,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDockWidget_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1460,7 +1460,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDockWidget_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1484,7 +1484,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDockWidget_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1551,7 +1551,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDockWidget_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1615,7 +1615,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDockWidget_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -1657,7 +1657,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDockWidget_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1681,7 +1681,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDockWidget_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1705,7 +1705,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDockWidget_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1729,7 +1729,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDockWidget_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1753,7 +1753,7 @@ static void _call_cbs_enabledChange_864_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDockWidget_Adaptor *)cls)->cbs_enabledChange_864_0 (arg1); } @@ -1777,7 +1777,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDockWidget_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -1801,7 +1801,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDockWidget_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1826,8 +1826,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDockWidget_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1868,7 +1868,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDockWidget_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1906,7 +1906,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDockWidget_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -1929,7 +1929,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDockWidget_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -1967,7 +1967,7 @@ static void _call_cbs_fontChange_1801_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDockWidget_Adaptor *)cls)->cbs_fontChange_1801_0 (arg1); } @@ -1991,7 +1991,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QDockWidget_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -2014,7 +2014,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDockWidget_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -2057,7 +2057,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDockWidget_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2081,7 +2081,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QDockWidget_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2104,7 +2104,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDockWidget_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2128,7 +2128,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDockWidget_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2172,7 +2172,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDockWidget_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2196,7 +2196,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QDockWidget_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2238,7 +2238,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDockWidget_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2262,7 +2262,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDockWidget_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2286,7 +2286,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDockWidget_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2310,7 +2310,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDockWidget_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2334,7 +2334,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDockWidget_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2377,7 +2377,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDockWidget_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2401,7 +2401,7 @@ static void _call_cbs_paletteChange_2113_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPalette &arg1 = args.read (heap); + const QPalette &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDockWidget_Adaptor *)cls)->cbs_paletteChange_2113_0 (arg1); } @@ -2458,7 +2458,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDockWidget_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2496,7 +2496,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDockWidget_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2520,7 +2520,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDockWidget_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2563,7 +2563,7 @@ static void _call_cbs_styleChange_1228_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyle &arg1 = args.read (heap); + QStyle &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDockWidget_Adaptor *)cls)->cbs_styleChange_1228_0 (arg1); } @@ -2587,7 +2587,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDockWidget_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2611,7 +2611,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDockWidget_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2686,7 +2686,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDockWidget_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } @@ -2710,7 +2710,7 @@ static void _call_cbs_windowActivationChange_864_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDockWidget_Adaptor *)cls)->cbs_windowActivationChange_864_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQDoubleSpinBox.cc b/src/gsiqt/qt4/QtGui/gsiDeclQDoubleSpinBox.cc index 6a5b7a03c..d2577111c 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQDoubleSpinBox.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQDoubleSpinBox.cc @@ -1590,7 +1590,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1614,7 +1614,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1638,7 +1638,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1682,7 +1682,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1706,7 +1706,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1773,7 +1773,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1837,7 +1837,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -1861,7 +1861,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1885,7 +1885,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1909,7 +1909,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1933,7 +1933,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1971,7 +1971,7 @@ static void _call_cbs_enabledChange_864_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox_Adaptor *)cls)->cbs_enabledChange_864_0 (arg1); } @@ -1995,7 +1995,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -2019,7 +2019,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDoubleSpinBox_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -2044,8 +2044,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDoubleSpinBox_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -2068,7 +2068,7 @@ static void _call_cbs_fixup_c1330_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QString &arg1 = args.read (heap); + QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox_Adaptor *)cls)->cbs_fixup_c1330_0 (arg1); } @@ -2092,7 +2092,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -2130,7 +2130,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDoubleSpinBox_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -2153,7 +2153,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -2191,7 +2191,7 @@ static void _call_cbs_fontChange_1801_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox_Adaptor *)cls)->cbs_fontChange_1801_0 (arg1); } @@ -2215,7 +2215,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QDoubleSpinBox_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -2238,7 +2238,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -2281,7 +2281,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2305,7 +2305,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QDoubleSpinBox_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2328,7 +2328,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2352,7 +2352,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2396,7 +2396,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2434,7 +2434,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QDoubleSpinBox_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2476,7 +2476,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2500,7 +2500,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2524,7 +2524,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2548,7 +2548,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2572,7 +2572,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2615,7 +2615,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2639,7 +2639,7 @@ static void _call_cbs_paletteChange_2113_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPalette &arg1 = args.read (heap); + const QPalette &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox_Adaptor *)cls)->cbs_paletteChange_2113_0 (arg1); } @@ -2696,7 +2696,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2753,7 +2753,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2777,7 +2777,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2820,7 +2820,7 @@ static void _call_cbs_stepBy_767_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox_Adaptor *)cls)->cbs_stepBy_767_0 (arg1); } @@ -2863,7 +2863,7 @@ static void _call_cbs_styleChange_1228_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyle &arg1 = args.read (heap); + QStyle &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox_Adaptor *)cls)->cbs_styleChange_1228_0 (arg1); } @@ -2887,7 +2887,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2911,7 +2911,7 @@ static void _call_cbs_textFromValue_c1071_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QDoubleSpinBox_Adaptor *)cls)->cbs_textFromValue_c1071_0 (arg1)); } @@ -2934,7 +2934,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2975,8 +2975,8 @@ static void _call_cbs_validate_c2171_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QString &arg1 = args.read (heap); - int &arg2 = args.read (heap); + QString &arg1 = gsi::arg_reader() (args, heap); + int &arg2 = gsi::arg_reader() (args, heap); ret.write::target_type > ((qt_gsi::Converter::target_type)((QDoubleSpinBox_Adaptor *)cls)->cbs_validate_c2171_0 (arg1, arg2)); } @@ -3035,7 +3035,7 @@ static void _call_cbs_valueFromText_c2025_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((double)((QDoubleSpinBox_Adaptor *)cls)->cbs_valueFromText_c2025_0 (arg1)); } @@ -3058,7 +3058,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } @@ -3082,7 +3082,7 @@ static void _call_cbs_windowActivationChange_864_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox_Adaptor *)cls)->cbs_windowActivationChange_864_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQDoubleValidator.cc b/src/gsiqt/qt4/QtGui/gsiDeclQDoubleValidator.cc index eb0dbfafb..0d636bc86 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQDoubleValidator.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQDoubleValidator.cc @@ -611,7 +611,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleValidator_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -635,7 +635,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleValidator_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -677,7 +677,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleValidator_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -701,7 +701,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDoubleValidator_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -726,8 +726,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDoubleValidator_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -750,7 +750,7 @@ static void _call_cbs_fixup_c1330_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QString &arg1 = args.read (heap); + QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleValidator_Adaptor *)cls)->cbs_fixup_c1330_0 (arg1); } @@ -810,9 +810,9 @@ static void _call_cbs_setRange_2693_1 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - int arg3 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleValidator_Adaptor *)cls)->cbs_setRange_2693_1 (arg1, arg2, arg3); } @@ -836,7 +836,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleValidator_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -862,8 +862,8 @@ static void _call_cbs_validate_c2171_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QString &arg1 = args.read (heap); - int &arg2 = args.read (heap); + QString &arg1 = gsi::arg_reader() (args, heap); + int &arg2 = gsi::arg_reader() (args, heap); ret.write::target_type > ((qt_gsi::Converter::target_type)((QDoubleValidator_Adaptor *)cls)->cbs_validate_c2171_0 (arg1, arg2)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQDrag.cc b/src/gsiqt/qt4/QtGui/gsiDeclQDrag.cc index 950a02227..ca7311f76 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQDrag.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQDrag.cc @@ -597,7 +597,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDrag_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -621,7 +621,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDrag_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -663,7 +663,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDrag_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -687,7 +687,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDrag_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -712,8 +712,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDrag_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -786,7 +786,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDrag_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQDragEnterEvent.cc b/src/gsiqt/qt4/QtGui/gsiDeclQDragEnterEvent.cc index eeeea8ffa..b23c1d924 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQDragEnterEvent.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQDragEnterEvent.cc @@ -165,7 +165,7 @@ static void _call_cbs_encodedData_c1731_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((QByteArray)((QDragEnterEvent_Adaptor *)cls)->cbs_encodedData_c1731_0 (arg1)); } @@ -188,7 +188,7 @@ static void _call_cbs_format_c767_1 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((const char *)((QDragEnterEvent_Adaptor *)cls)->cbs_format_c767_1 (arg1)); } @@ -211,7 +211,7 @@ static void _call_cbs_provides_c1731_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDragEnterEvent_Adaptor *)cls)->cbs_provides_c1731_0 (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQDragMoveEvent.cc b/src/gsiqt/qt4/QtGui/gsiDeclQDragMoveEvent.cc index 29eda01ac..a09287c47 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQDragMoveEvent.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQDragMoveEvent.cc @@ -266,7 +266,7 @@ static void _call_cbs_encodedData_c1731_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((QByteArray)((QDragMoveEvent_Adaptor *)cls)->cbs_encodedData_c1731_0 (arg1)); } @@ -289,7 +289,7 @@ static void _call_cbs_format_c767_1 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((const char *)((QDragMoveEvent_Adaptor *)cls)->cbs_format_c767_1 (arg1)); } @@ -312,7 +312,7 @@ static void _call_cbs_provides_c1731_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDragMoveEvent_Adaptor *)cls)->cbs_provides_c1731_0 (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQDropEvent.cc b/src/gsiqt/qt4/QtGui/gsiDeclQDropEvent.cc index 7c74d3353..123b8260f 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQDropEvent.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQDropEvent.cc @@ -454,7 +454,7 @@ static void _call_cbs_encodedData_c1731_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((QByteArray)((QDropEvent_Adaptor *)cls)->cbs_encodedData_c1731_0 (arg1)); } @@ -477,7 +477,7 @@ static void _call_cbs_format_c767_1 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((const char *)((QDropEvent_Adaptor *)cls)->cbs_format_c767_1 (arg1)); } @@ -500,7 +500,7 @@ static void _call_cbs_provides_c1731_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDropEvent_Adaptor *)cls)->cbs_provides_c1731_0 (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQErrorMessage.cc b/src/gsiqt/qt4/QtGui/gsiDeclQErrorMessage.cc index 3f589c0a1..30389c904 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQErrorMessage.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQErrorMessage.cc @@ -1226,7 +1226,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QErrorMessage_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1269,7 +1269,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QErrorMessage_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1293,7 +1293,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QErrorMessage_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1317,7 +1317,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QErrorMessage_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1341,7 +1341,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QErrorMessage_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1408,7 +1408,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QErrorMessage_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1472,7 +1472,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QErrorMessage_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -1496,7 +1496,7 @@ static void _call_cbs_done_767_0 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QErrorMessage_Adaptor *)cls)->cbs_done_767_0 (arg1); } @@ -1520,7 +1520,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QErrorMessage_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1544,7 +1544,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QErrorMessage_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1568,7 +1568,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QErrorMessage_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1592,7 +1592,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QErrorMessage_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1616,7 +1616,7 @@ static void _call_cbs_enabledChange_864_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QErrorMessage_Adaptor *)cls)->cbs_enabledChange_864_0 (arg1); } @@ -1640,7 +1640,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QErrorMessage_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -1664,7 +1664,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QErrorMessage_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1689,8 +1689,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QErrorMessage_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1731,7 +1731,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QErrorMessage_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1769,7 +1769,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QErrorMessage_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -1792,7 +1792,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QErrorMessage_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -1830,7 +1830,7 @@ static void _call_cbs_fontChange_1801_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QErrorMessage_Adaptor *)cls)->cbs_fontChange_1801_0 (arg1); } @@ -1854,7 +1854,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QErrorMessage_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -1877,7 +1877,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QErrorMessage_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -1901,7 +1901,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QErrorMessage_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -1925,7 +1925,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QErrorMessage_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -1948,7 +1948,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QErrorMessage_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -1972,7 +1972,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QErrorMessage_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2016,7 +2016,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QErrorMessage_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2040,7 +2040,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QErrorMessage_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2082,7 +2082,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QErrorMessage_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2106,7 +2106,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QErrorMessage_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2130,7 +2130,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QErrorMessage_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2154,7 +2154,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QErrorMessage_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2178,7 +2178,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QErrorMessage_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2221,7 +2221,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QErrorMessage_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2245,7 +2245,7 @@ static void _call_cbs_paletteChange_2113_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPalette &arg1 = args.read (heap); + const QPalette &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QErrorMessage_Adaptor *)cls)->cbs_paletteChange_2113_0 (arg1); } @@ -2336,7 +2336,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QErrorMessage_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2374,7 +2374,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QErrorMessage_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2398,7 +2398,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QErrorMessage_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2441,7 +2441,7 @@ static void _call_cbs_styleChange_1228_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyle &arg1 = args.read (heap); + QStyle &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QErrorMessage_Adaptor *)cls)->cbs_styleChange_1228_0 (arg1); } @@ -2465,7 +2465,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QErrorMessage_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2489,7 +2489,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QErrorMessage_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2528,7 +2528,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QErrorMessage_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } @@ -2552,7 +2552,7 @@ static void _call_cbs_windowActivationChange_864_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QErrorMessage_Adaptor *)cls)->cbs_windowActivationChange_864_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQFileDialog.cc b/src/gsiqt/qt4/QtGui/gsiDeclQFileDialog.cc index 9adcbcd83..61b779863 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQFileDialog.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQFileDialog.cc @@ -2419,7 +2419,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -2462,7 +2462,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -2486,7 +2486,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -2510,7 +2510,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -2534,7 +2534,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -2619,7 +2619,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -2701,7 +2701,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -2725,7 +2725,7 @@ static void _call_cbs_done_767_0 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog_Adaptor *)cls)->cbs_done_767_0 (arg1); } @@ -2749,7 +2749,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -2773,7 +2773,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -2797,7 +2797,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -2821,7 +2821,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -2845,7 +2845,7 @@ static void _call_cbs_enabledChange_864_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog_Adaptor *)cls)->cbs_enabledChange_864_0 (arg1); } @@ -2869,7 +2869,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -2893,7 +2893,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFileDialog_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -2918,8 +2918,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFileDialog_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -3014,7 +3014,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -3052,7 +3052,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFileDialog_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -3075,7 +3075,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -3113,7 +3113,7 @@ static void _call_cbs_fontChange_1801_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog_Adaptor *)cls)->cbs_fontChange_1801_0 (arg1); } @@ -3137,7 +3137,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QFileDialog_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -3160,7 +3160,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -3184,7 +3184,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -3208,7 +3208,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QFileDialog_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -3231,7 +3231,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -3255,7 +3255,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -3299,7 +3299,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -3323,7 +3323,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QFileDialog_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -3365,7 +3365,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -3389,7 +3389,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -3413,7 +3413,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -3437,7 +3437,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -3461,7 +3461,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -3504,7 +3504,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -3528,7 +3528,7 @@ static void _call_cbs_paletteChange_2113_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPalette &arg1 = args.read (heap); + const QPalette &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog_Adaptor *)cls)->cbs_paletteChange_2113_0 (arg1); } @@ -3619,7 +3619,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -3657,7 +3657,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -3681,7 +3681,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -3724,7 +3724,7 @@ static void _call_cbs_styleChange_1228_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyle &arg1 = args.read (heap); + QStyle &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog_Adaptor *)cls)->cbs_styleChange_1228_0 (arg1); } @@ -3748,7 +3748,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -3772,7 +3772,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -3811,7 +3811,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } @@ -3835,7 +3835,7 @@ static void _call_cbs_windowActivationChange_864_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog_Adaptor *)cls)->cbs_windowActivationChange_864_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQFileIconProvider.cc b/src/gsiqt/qt4/QtGui/gsiDeclQFileIconProvider.cc index 31c724c64..97a368a8c 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQFileIconProvider.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQFileIconProvider.cc @@ -205,7 +205,7 @@ static void _call_cbs_icon_c3064_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QIcon)((QFileIconProvider_Adaptor *)cls)->cbs_icon_c3064_0 (arg1)); } @@ -228,7 +228,7 @@ static void _call_cbs_icon_c2174_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFileInfo &arg1 = args.read (heap); + const QFileInfo &arg1 = gsi::arg_reader() (args, heap); ret.write ((QIcon)((QFileIconProvider_Adaptor *)cls)->cbs_icon_c2174_0 (arg1)); } @@ -251,7 +251,7 @@ static void _call_cbs_type_c2174_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFileInfo &arg1 = args.read (heap); + const QFileInfo &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QFileIconProvider_Adaptor *)cls)->cbs_type_c2174_0 (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQFileSystemModel.cc b/src/gsiqt/qt4/QtGui/gsiDeclQFileSystemModel.cc index 0fed39501..6e11ec382 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQFileSystemModel.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQFileSystemModel.cc @@ -2041,7 +2041,7 @@ static void _call_cbs_buddy_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QFileSystemModel_Adaptor *)cls)->cbs_buddy_c2395_0 (arg1)); } @@ -2064,7 +2064,7 @@ static void _call_cbs_canFetchMore_c2395_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFileSystemModel_Adaptor *)cls)->cbs_canFetchMore_c2395_0 (arg1)); } @@ -2131,7 +2131,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileSystemModel_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -2155,7 +2155,7 @@ static void _call_cbs_columnCount_c2395_1 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((int)((QFileSystemModel_Adaptor *)cls)->cbs_columnCount_c2395_1 (arg1)); } @@ -2250,7 +2250,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileSystemModel_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -2276,8 +2276,8 @@ static void _call_cbs_data_c3054_1 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::DisplayRole, heap); ret.write ((QVariant)((QFileSystemModel_Adaptor *)cls)->cbs_data_c3054_1 (arg1, arg2)); } @@ -2366,7 +2366,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileSystemModel_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -2398,11 +2398,11 @@ static void _call_cbs_dropMimeData_7425_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMimeData *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - const QModelIndex &arg5 = args.read (heap); + const QMimeData *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + const QModelIndex &arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFileSystemModel_Adaptor *)cls)->cbs_dropMimeData_7425_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -2552,7 +2552,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFileSystemModel_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -2577,8 +2577,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFileSystemModel_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -2601,7 +2601,7 @@ static void _call_cbs_fetchMore_2395_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileSystemModel_Adaptor *)cls)->cbs_fetchMore_2395_0 (arg1); } @@ -2649,7 +2649,7 @@ static void _call_cbs_flags_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QFlags)((QFileSystemModel_Adaptor *)cls)->cbs_flags_c2395_0 (arg1)); } @@ -2672,7 +2672,7 @@ static void _call_cbs_hasChildren_c2395_1 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QFileSystemModel_Adaptor *)cls)->cbs_hasChildren_c2395_1 (arg1)); } @@ -2699,9 +2699,9 @@ static void _call_cbs_headerData_c3231_1 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::DisplayRole, heap); ret.write ((QVariant)((QFileSystemModel_Adaptor *)cls)->cbs_headerData_c3231_1 (arg1, arg2, arg3)); } @@ -2752,9 +2752,9 @@ static void _call_cbs_index_c3713_1 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((QModelIndex)((QFileSystemModel_Adaptor *)cls)->cbs_index_c3713_1 (arg1, arg2, arg3)); } @@ -2781,9 +2781,9 @@ static void _call_cbs_insertColumns_3713_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QFileSystemModel_Adaptor *)cls)->cbs_insertColumns_3713_1 (arg1, arg2, arg3)); } @@ -2810,9 +2810,9 @@ static void _call_cbs_insertRows_3713_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QFileSystemModel_Adaptor *)cls)->cbs_insertRows_3713_1 (arg1, arg2, arg3)); } @@ -2835,7 +2835,7 @@ static void _call_cbs_itemData_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QMap)((QFileSystemModel_Adaptor *)cls)->cbs_itemData_c2395_0 (arg1)); } @@ -2894,11 +2894,11 @@ static void _call_cbs_match_c7932_2 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - const QVariant &arg3 = args.read (heap); - int arg4 = args.read (heap); - QFlags arg5 = args.read > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QVariant &arg3 = gsi::arg_reader() (args, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (1, heap); + QFlags arg5 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (Qt::MatchFlags(Qt::MatchStartsWith|Qt::MatchWrap), heap); ret.write > ((QList)((QFileSystemModel_Adaptor *)cls)->cbs_match_c7932_2 (arg1, arg2, arg3, arg4, arg5)); } @@ -2921,7 +2921,7 @@ static void _call_cbs_mimeData_c3010_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); ret.write ((QMimeData *)((QFileSystemModel_Adaptor *)cls)->cbs_mimeData_c3010_0 (arg1)); } @@ -2963,7 +2963,7 @@ static void _call_cbs_parent_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QFileSystemModel_Adaptor *)cls)->cbs_parent_c2395_0 (arg1)); } @@ -3022,9 +3022,9 @@ static void _call_cbs_removeColumns_3713_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QFileSystemModel_Adaptor *)cls)->cbs_removeColumns_3713_1 (arg1, arg2, arg3)); } @@ -3051,9 +3051,9 @@ static void _call_cbs_removeRows_3713_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QFileSystemModel_Adaptor *)cls)->cbs_removeRows_3713_1 (arg1, arg2, arg3)); } @@ -3129,7 +3129,7 @@ static void _call_cbs_rowCount_c2395_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((int)((QFileSystemModel_Adaptor *)cls)->cbs_rowCount_c2395_1 (arg1)); } @@ -3170,9 +3170,9 @@ static void _call_cbs_setData_5065_1 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::EditRole, heap); ret.write ((bool)((QFileSystemModel_Adaptor *)cls)->cbs_setData_5065_1 (arg1, arg2, arg3)); } @@ -3201,10 +3201,10 @@ static void _call_cbs_setHeaderData_5242_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - const QVariant &arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + const QVariant &arg3 = gsi::arg_reader() (args, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::EditRole, heap); ret.write ((bool)((QFileSystemModel_Adaptor *)cls)->cbs_setHeaderData_5242_1 (arg1, arg2, arg3, arg4)); } @@ -3229,8 +3229,8 @@ static void _call_cbs_setItemData_5414_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QMap &arg2 = args.read & > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QMap &arg2 = gsi::arg_reader & >() (args, heap); ret.write ((bool)((QFileSystemModel_Adaptor *)cls)->cbs_setItemData_5414_0 (arg1, arg2)); } @@ -3274,8 +3274,8 @@ static void _call_cbs_sort_2340_1 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::AscendingOrder), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileSystemModel_Adaptor *)cls)->cbs_sort_2340_1 (arg1, arg2); } @@ -3299,7 +3299,7 @@ static void _call_cbs_span_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QSize)((QFileSystemModel_Adaptor *)cls)->cbs_span_c2395_0 (arg1)); } @@ -3360,7 +3360,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileSystemModel_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQFocusFrame.cc b/src/gsiqt/qt4/QtGui/gsiDeclQFocusFrame.cc index 2fbd7a7d8..f9cadb4a6 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQFocusFrame.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQFocusFrame.cc @@ -1100,7 +1100,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFocusFrame_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1124,7 +1124,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFocusFrame_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1148,7 +1148,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFocusFrame_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1172,7 +1172,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFocusFrame_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1196,7 +1196,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFocusFrame_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1263,7 +1263,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFocusFrame_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1327,7 +1327,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFocusFrame_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -1351,7 +1351,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFocusFrame_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1375,7 +1375,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFocusFrame_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1399,7 +1399,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFocusFrame_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1423,7 +1423,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFocusFrame_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1447,7 +1447,7 @@ static void _call_cbs_enabledChange_864_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFocusFrame_Adaptor *)cls)->cbs_enabledChange_864_0 (arg1); } @@ -1471,7 +1471,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFocusFrame_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -1495,7 +1495,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFocusFrame_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1520,8 +1520,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFocusFrame_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1544,7 +1544,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFocusFrame_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1582,7 +1582,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFocusFrame_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -1605,7 +1605,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFocusFrame_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -1643,7 +1643,7 @@ static void _call_cbs_fontChange_1801_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFocusFrame_Adaptor *)cls)->cbs_fontChange_1801_0 (arg1); } @@ -1667,7 +1667,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QFocusFrame_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -1690,7 +1690,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFocusFrame_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -1733,7 +1733,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFocusFrame_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -1757,7 +1757,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QFocusFrame_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -1780,7 +1780,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFocusFrame_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -1804,7 +1804,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFocusFrame_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -1848,7 +1848,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFocusFrame_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -1872,7 +1872,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QFocusFrame_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -1914,7 +1914,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFocusFrame_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -1938,7 +1938,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFocusFrame_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -1962,7 +1962,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFocusFrame_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -1986,7 +1986,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFocusFrame_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2010,7 +2010,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFocusFrame_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2053,7 +2053,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFocusFrame_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2077,7 +2077,7 @@ static void _call_cbs_paletteChange_2113_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPalette &arg1 = args.read (heap); + const QPalette &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFocusFrame_Adaptor *)cls)->cbs_paletteChange_2113_0 (arg1); } @@ -2134,7 +2134,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFocusFrame_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2172,7 +2172,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFocusFrame_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2196,7 +2196,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFocusFrame_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2239,7 +2239,7 @@ static void _call_cbs_styleChange_1228_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyle &arg1 = args.read (heap); + QStyle &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFocusFrame_Adaptor *)cls)->cbs_styleChange_1228_0 (arg1); } @@ -2263,7 +2263,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFocusFrame_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2287,7 +2287,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFocusFrame_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2326,7 +2326,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFocusFrame_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } @@ -2350,7 +2350,7 @@ static void _call_cbs_windowActivationChange_864_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFocusFrame_Adaptor *)cls)->cbs_windowActivationChange_864_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQFontComboBox.cc b/src/gsiqt/qt4/QtGui/gsiDeclQFontComboBox.cc index 2bb19aade..2a8c1b9a6 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQFontComboBox.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQFontComboBox.cc @@ -1285,7 +1285,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontComboBox_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1345,7 +1345,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontComboBox_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1369,7 +1369,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontComboBox_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1393,7 +1393,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontComboBox_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1417,7 +1417,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontComboBox_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1538,7 +1538,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontComboBox_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1602,7 +1602,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontComboBox_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -1626,7 +1626,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontComboBox_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1650,7 +1650,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontComboBox_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1674,7 +1674,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontComboBox_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1698,7 +1698,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontComboBox_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1740,7 +1740,7 @@ static void _call_cbs_enabledChange_864_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontComboBox_Adaptor *)cls)->cbs_enabledChange_864_0 (arg1); } @@ -1764,7 +1764,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontComboBox_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -1788,7 +1788,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFontComboBox_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1813,8 +1813,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFontComboBox_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1837,7 +1837,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontComboBox_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1875,7 +1875,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFontComboBox_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -1898,7 +1898,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontComboBox_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -1936,7 +1936,7 @@ static void _call_cbs_fontChange_1801_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontComboBox_Adaptor *)cls)->cbs_fontChange_1801_0 (arg1); } @@ -1960,7 +1960,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QFontComboBox_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -1983,7 +1983,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontComboBox_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -2082,7 +2082,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontComboBox_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2106,7 +2106,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QFontComboBox_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2129,7 +2129,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontComboBox_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2153,7 +2153,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontComboBox_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2197,7 +2197,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontComboBox_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2221,7 +2221,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QFontComboBox_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2263,7 +2263,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontComboBox_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2287,7 +2287,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontComboBox_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2311,7 +2311,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontComboBox_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2335,7 +2335,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontComboBox_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2359,7 +2359,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontComboBox_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2402,7 +2402,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontComboBox_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2426,7 +2426,7 @@ static void _call_cbs_paletteChange_2113_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPalette &arg1 = args.read (heap); + const QPalette &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontComboBox_Adaptor *)cls)->cbs_paletteChange_2113_0 (arg1); } @@ -2483,7 +2483,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontComboBox_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2521,7 +2521,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontComboBox_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2545,7 +2545,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontComboBox_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2608,7 +2608,7 @@ static void _call_cbs_styleChange_1228_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyle &arg1 = args.read (heap); + QStyle &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontComboBox_Adaptor *)cls)->cbs_styleChange_1228_0 (arg1); } @@ -2632,7 +2632,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontComboBox_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2656,7 +2656,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontComboBox_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2695,7 +2695,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontComboBox_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } @@ -2719,7 +2719,7 @@ static void _call_cbs_windowActivationChange_864_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontComboBox_Adaptor *)cls)->cbs_windowActivationChange_864_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQFontDialog.cc b/src/gsiqt/qt4/QtGui/gsiDeclQFontDialog.cc index 12940bc49..b1d85196a 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQFontDialog.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQFontDialog.cc @@ -1502,7 +1502,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontDialog_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1545,7 +1545,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontDialog_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1569,7 +1569,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontDialog_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1593,7 +1593,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontDialog_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1617,7 +1617,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontDialog_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1702,7 +1702,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontDialog_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1766,7 +1766,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontDialog_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -1790,7 +1790,7 @@ static void _call_cbs_done_767_0 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontDialog_Adaptor *)cls)->cbs_done_767_0 (arg1); } @@ -1814,7 +1814,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontDialog_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1838,7 +1838,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontDialog_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1862,7 +1862,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontDialog_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1886,7 +1886,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontDialog_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1910,7 +1910,7 @@ static void _call_cbs_enabledChange_864_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontDialog_Adaptor *)cls)->cbs_enabledChange_864_0 (arg1); } @@ -1934,7 +1934,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontDialog_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -1958,7 +1958,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFontDialog_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1999,7 +1999,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontDialog_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -2037,7 +2037,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFontDialog_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -2060,7 +2060,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontDialog_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -2098,7 +2098,7 @@ static void _call_cbs_fontChange_1801_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontDialog_Adaptor *)cls)->cbs_fontChange_1801_0 (arg1); } @@ -2140,7 +2140,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QFontDialog_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -2163,7 +2163,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontDialog_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -2187,7 +2187,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontDialog_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2211,7 +2211,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QFontDialog_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2234,7 +2234,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontDialog_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2258,7 +2258,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontDialog_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2302,7 +2302,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontDialog_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2326,7 +2326,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QFontDialog_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2368,7 +2368,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontDialog_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2392,7 +2392,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontDialog_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2416,7 +2416,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontDialog_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2440,7 +2440,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontDialog_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2464,7 +2464,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontDialog_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2507,7 +2507,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontDialog_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2531,7 +2531,7 @@ static void _call_cbs_paletteChange_2113_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPalette &arg1 = args.read (heap); + const QPalette &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontDialog_Adaptor *)cls)->cbs_paletteChange_2113_0 (arg1); } @@ -2622,7 +2622,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontDialog_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2660,7 +2660,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontDialog_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2684,7 +2684,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontDialog_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2727,7 +2727,7 @@ static void _call_cbs_styleChange_1228_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyle &arg1 = args.read (heap); + QStyle &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontDialog_Adaptor *)cls)->cbs_styleChange_1228_0 (arg1); } @@ -2751,7 +2751,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontDialog_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2775,7 +2775,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontDialog_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2814,7 +2814,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontDialog_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } @@ -2838,7 +2838,7 @@ static void _call_cbs_windowActivationChange_864_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontDialog_Adaptor *)cls)->cbs_windowActivationChange_864_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQFormLayout.cc b/src/gsiqt/qt4/QtGui/gsiDeclQFormLayout.cc index afe1b8c62..9eba1febb 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQFormLayout.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQFormLayout.cc @@ -1701,7 +1701,8 @@ static void _call_cbs_addItem_1740_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QLayoutItem *arg1 = args.read (heap); + QLayoutItem *arg1 = gsi::arg_reader() (args, heap); + qt_gsi::qt_keep (arg1); __SUPPRESS_UNUSED_WARNING(ret); ((QFormLayout_Adaptor *)cls)->cbs_addItem_1740_0 (arg1); } @@ -1743,7 +1744,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFormLayout_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1786,7 +1787,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFormLayout_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1828,7 +1829,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFormLayout_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -1852,7 +1853,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFormLayout_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1877,8 +1878,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFormLayout_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1958,7 +1959,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QFormLayout_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -1981,7 +1982,7 @@ static void _call_cbs_indexOf_c1315_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QFormLayout_Adaptor *)cls)->cbs_indexOf_c1315_0 (arg1)); } @@ -2043,7 +2044,7 @@ static void _call_cbs_itemAt_c767_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QLayoutItem *)((QFormLayout_Adaptor *)cls)->cbs_itemAt_c767_0 (arg1)); } @@ -2104,7 +2105,7 @@ static void _call_cbs_minimumHeightForWidth_c767_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QFormLayout_Adaptor *)cls)->cbs_minimumHeightForWidth_c767_0 (arg1)); } @@ -2178,7 +2179,7 @@ static void _call_cbs_setGeometry_1792_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFormLayout_Adaptor *)cls)->cbs_setGeometry_1792_0 (arg1); } @@ -2240,7 +2241,7 @@ static void _call_cbs_takeAt_767_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QLayoutItem *)((QFormLayout_Adaptor *)cls)->cbs_takeAt_767_0 (arg1)); } @@ -2263,7 +2264,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFormLayout_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQFrame.cc b/src/gsiqt/qt4/QtGui/gsiDeclQFrame.cc index ebb362d5b..31990c7a9 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQFrame.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQFrame.cc @@ -1325,7 +1325,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFrame_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1349,7 +1349,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFrame_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1373,7 +1373,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFrame_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1397,7 +1397,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFrame_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1421,7 +1421,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFrame_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1488,7 +1488,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFrame_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1552,7 +1552,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFrame_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -1576,7 +1576,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFrame_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1600,7 +1600,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFrame_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1624,7 +1624,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFrame_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1667,7 +1667,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFrame_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1691,7 +1691,7 @@ static void _call_cbs_enabledChange_864_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFrame_Adaptor *)cls)->cbs_enabledChange_864_0 (arg1); } @@ -1715,7 +1715,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFrame_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -1739,7 +1739,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFrame_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1764,8 +1764,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFrame_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1788,7 +1788,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFrame_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1826,7 +1826,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFrame_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -1849,7 +1849,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFrame_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -1887,7 +1887,7 @@ static void _call_cbs_fontChange_1801_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFrame_Adaptor *)cls)->cbs_fontChange_1801_0 (arg1); } @@ -1911,7 +1911,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QFrame_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -1934,7 +1934,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFrame_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -1958,7 +1958,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFrame_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -1982,7 +1982,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QFrame_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2005,7 +2005,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFrame_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2029,7 +2029,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFrame_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2073,7 +2073,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFrame_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2097,7 +2097,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QFrame_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2139,7 +2139,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFrame_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2163,7 +2163,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFrame_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2187,7 +2187,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFrame_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2211,7 +2211,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFrame_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2235,7 +2235,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFrame_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2278,7 +2278,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFrame_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2302,7 +2302,7 @@ static void _call_cbs_paletteChange_2113_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPalette &arg1 = args.read (heap); + const QPalette &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFrame_Adaptor *)cls)->cbs_paletteChange_2113_0 (arg1); } @@ -2359,7 +2359,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFrame_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2397,7 +2397,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFrame_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2421,7 +2421,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFrame_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2464,7 +2464,7 @@ static void _call_cbs_styleChange_1228_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyle &arg1 = args.read (heap); + QStyle &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFrame_Adaptor *)cls)->cbs_styleChange_1228_0 (arg1); } @@ -2488,7 +2488,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFrame_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2512,7 +2512,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFrame_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2551,7 +2551,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFrame_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } @@ -2575,7 +2575,7 @@ static void _call_cbs_windowActivationChange_864_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFrame_Adaptor *)cls)->cbs_windowActivationChange_864_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQGesture.cc b/src/gsiqt/qt4/QtGui/gsiDeclQGesture.cc index 8d25749f0..ad0460acb 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQGesture.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQGesture.cc @@ -477,7 +477,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGesture_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -501,7 +501,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGesture_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -543,7 +543,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGesture_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -567,7 +567,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGesture_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -592,8 +592,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGesture_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -648,7 +648,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGesture_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQGestureRecognizer.cc b/src/gsiqt/qt4/QtGui/gsiDeclQGestureRecognizer.cc index b9840565e..21f4bbdc8 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQGestureRecognizer.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQGestureRecognizer.cc @@ -257,7 +257,7 @@ static void _call_cbs_create_1302_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); ret.write ((QGesture *)((QGestureRecognizer_Adaptor *)cls)->cbs_create_1302_0 (arg1)); } @@ -284,9 +284,9 @@ static void _call_cbs_recognize_3741_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGesture *arg1 = args.read (heap); - QObject *arg2 = args.read (heap); - QEvent *arg3 = args.read (heap); + QGesture *arg1 = gsi::arg_reader() (args, heap); + QObject *arg2 = gsi::arg_reader() (args, heap); + QEvent *arg3 = gsi::arg_reader() (args, heap); ret.write > ((QFlags)((QGestureRecognizer_Adaptor *)cls)->cbs_recognize_3741_0 (arg1, arg2, arg3)); } @@ -309,7 +309,7 @@ static void _call_cbs_reset_1438_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGesture *arg1 = args.read (heap); + QGesture *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGestureRecognizer_Adaptor *)cls)->cbs_reset_1438_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsAnchor.cc b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsAnchor.cc index c05a8a28c..dc16cb116 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsAnchor.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsAnchor.cc @@ -398,7 +398,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsAnchor_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -422,7 +422,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsAnchor_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -464,7 +464,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsAnchor_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -488,7 +488,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsAnchor_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -513,8 +513,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsAnchor_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -569,7 +569,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsAnchor_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsAnchorLayout.cc b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsAnchorLayout.cc index e035d3a8b..8ff774b2c 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsAnchorLayout.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsAnchorLayout.cc @@ -622,10 +622,10 @@ static void _call_cbs_getContentsMargins_c4704_0 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double *arg1 = args.read (heap); - double *arg2 = args.read (heap); - double *arg3 = args.read (heap); - double *arg4 = args.read (heap); + double *arg1 = gsi::arg_reader() (args, heap); + double *arg2 = gsi::arg_reader() (args, heap); + double *arg3 = gsi::arg_reader() (args, heap); + double *arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsAnchorLayout_Adaptor *)cls)->cbs_getContentsMargins_c4704_0 (arg1, arg2, arg3, arg4); } @@ -669,7 +669,7 @@ static void _call_cbs_itemAt_c767_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QGraphicsLayoutItem *)((QGraphicsAnchorLayout_Adaptor *)cls)->cbs_itemAt_c767_0 (arg1)); } @@ -692,7 +692,7 @@ static void _call_cbs_removeAt_767_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsAnchorLayout_Adaptor *)cls)->cbs_removeAt_767_0 (arg1); } @@ -716,7 +716,7 @@ static void _call_cbs_setGeometry_1862_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsAnchorLayout_Adaptor *)cls)->cbs_setGeometry_1862_0 (arg1); } @@ -780,8 +780,8 @@ static void _call_cbs_sizeHint_c3330_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QSizeF &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QSizeF &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QSizeF(), heap); ret.write ((QSizeF)((QGraphicsAnchorLayout_Adaptor *)cls)->cbs_sizeHint_c3330_1 (arg1, arg2)); } @@ -824,7 +824,7 @@ static void _call_cbs_widgetEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsAnchorLayout_Adaptor *)cls)->cbs_widgetEvent_1217_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsBlurEffect.cc b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsBlurEffect.cc index c7e5fe989..ae3db41ca 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsBlurEffect.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsBlurEffect.cc @@ -565,7 +565,7 @@ static void _call_cbs_boundingRectFor_c1862_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRectF)((QGraphicsBlurEffect_Adaptor *)cls)->cbs_boundingRectFor_c1862_0 (arg1)); } @@ -588,7 +588,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsBlurEffect_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -612,7 +612,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsBlurEffect_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -654,7 +654,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsBlurEffect_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -678,7 +678,7 @@ static void _call_cbs_draw_1426_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsBlurEffect_Adaptor *)cls)->cbs_draw_1426_0 (arg1); } @@ -739,7 +739,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsBlurEffect_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -764,8 +764,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsBlurEffect_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -838,7 +838,7 @@ static void _call_cbs_sourceChanged_3695_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsBlurEffect_Adaptor *)cls)->cbs_sourceChanged_3695_0 (arg1); } @@ -900,7 +900,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsBlurEffect_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsColorizeEffect.cc b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsColorizeEffect.cc index a175da34a..794df4ad8 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsColorizeEffect.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsColorizeEffect.cc @@ -510,7 +510,7 @@ static void _call_cbs_boundingRectFor_c1862_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRectF)((QGraphicsColorizeEffect_Adaptor *)cls)->cbs_boundingRectFor_c1862_0 (arg1)); } @@ -533,7 +533,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsColorizeEffect_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -575,7 +575,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsColorizeEffect_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -617,7 +617,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsColorizeEffect_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -641,7 +641,7 @@ static void _call_cbs_draw_1426_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsColorizeEffect_Adaptor *)cls)->cbs_draw_1426_0 (arg1); } @@ -702,7 +702,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsColorizeEffect_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -727,8 +727,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsColorizeEffect_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -801,7 +801,7 @@ static void _call_cbs_sourceChanged_3695_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsColorizeEffect_Adaptor *)cls)->cbs_sourceChanged_3695_0 (arg1); } @@ -881,7 +881,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsColorizeEffect_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsDropShadowEffect.cc b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsDropShadowEffect.cc index b0994ae76..df12361b6 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsDropShadowEffect.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsDropShadowEffect.cc @@ -712,7 +712,7 @@ static void _call_cbs_boundingRectFor_c1862_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRectF)((QGraphicsDropShadowEffect_Adaptor *)cls)->cbs_boundingRectFor_c1862_0 (arg1)); } @@ -735,7 +735,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsDropShadowEffect_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -777,7 +777,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsDropShadowEffect_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -819,7 +819,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsDropShadowEffect_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -843,7 +843,7 @@ static void _call_cbs_draw_1426_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsDropShadowEffect_Adaptor *)cls)->cbs_draw_1426_0 (arg1); } @@ -904,7 +904,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsDropShadowEffect_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -929,8 +929,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsDropShadowEffect_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1021,7 +1021,7 @@ static void _call_cbs_sourceChanged_3695_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsDropShadowEffect_Adaptor *)cls)->cbs_sourceChanged_3695_0 (arg1); } @@ -1083,7 +1083,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsDropShadowEffect_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsEffect.cc b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsEffect.cc index 41c528bb3..7d87898a6 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsEffect.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsEffect.cc @@ -512,7 +512,7 @@ static void _call_cbs_boundingRectFor_c1862_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRectF)((QGraphicsEffect_Adaptor *)cls)->cbs_boundingRectFor_c1862_0 (arg1)); } @@ -535,7 +535,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsEffect_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -559,7 +559,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsEffect_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -601,7 +601,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsEffect_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -625,7 +625,7 @@ static void _call_cbs_draw_1426_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsEffect_Adaptor *)cls)->cbs_draw_1426_0 (arg1); } @@ -686,7 +686,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsEffect_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -711,8 +711,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsEffect_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -785,7 +785,7 @@ static void _call_cbs_sourceChanged_3695_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsEffect_Adaptor *)cls)->cbs_sourceChanged_3695_0 (arg1); } @@ -847,7 +847,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsEffect_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsEllipseItem.cc b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsEllipseItem.cc index 0c6f09f80..6b33f0110 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsEllipseItem.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsEllipseItem.cc @@ -1100,7 +1100,7 @@ static void _call_cbs_advance_767_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsEllipseItem_Adaptor *)cls)->cbs_advance_767_0 (arg1); } @@ -1145,8 +1145,8 @@ static void _call_cbs_collidesWithItem_c4977_1 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape), heap); ret.write ((bool)((QGraphicsEllipseItem_Adaptor *)cls)->cbs_collidesWithItem_c4977_1 (arg1, arg2)); } @@ -1171,8 +1171,8 @@ static void _call_cbs_collidesWithPath_c4877_1 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape), heap); ret.write ((bool)((QGraphicsEllipseItem_Adaptor *)cls)->cbs_collidesWithPath_c4877_1 (arg1, arg2)); } @@ -1195,7 +1195,7 @@ static void _call_cbs_contains_c1986_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsEllipseItem_Adaptor *)cls)->cbs_contains_c1986_0 (arg1)); } @@ -1218,7 +1218,7 @@ static void _call_cbs_contextMenuEvent_3674_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneContextMenuEvent *arg1 = args.read (heap); + QGraphicsSceneContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsEllipseItem_Adaptor *)cls)->cbs_contextMenuEvent_3674_0 (arg1); } @@ -1242,7 +1242,7 @@ static void _call_cbs_dragEnterEvent_3315_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsEllipseItem_Adaptor *)cls)->cbs_dragEnterEvent_3315_0 (arg1); } @@ -1266,7 +1266,7 @@ static void _call_cbs_dragLeaveEvent_3315_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsEllipseItem_Adaptor *)cls)->cbs_dragLeaveEvent_3315_0 (arg1); } @@ -1290,7 +1290,7 @@ static void _call_cbs_dragMoveEvent_3315_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsEllipseItem_Adaptor *)cls)->cbs_dragMoveEvent_3315_0 (arg1); } @@ -1314,7 +1314,7 @@ static void _call_cbs_dropEvent_3315_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsEllipseItem_Adaptor *)cls)->cbs_dropEvent_3315_0 (arg1); } @@ -1338,7 +1338,7 @@ static void _call_cbs_extension_c2119_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVariant &arg1 = args.read (heap); + const QVariant &arg1 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QGraphicsEllipseItem_Adaptor *)cls)->cbs_extension_c2119_0 (arg1)); } @@ -1361,7 +1361,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsEllipseItem_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1385,7 +1385,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsEllipseItem_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -1409,7 +1409,7 @@ static void _call_cbs_hoverEnterEvent_3044_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsEllipseItem_Adaptor *)cls)->cbs_hoverEnterEvent_3044_0 (arg1); } @@ -1433,7 +1433,7 @@ static void _call_cbs_hoverLeaveEvent_3044_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsEllipseItem_Adaptor *)cls)->cbs_hoverLeaveEvent_3044_0 (arg1); } @@ -1457,7 +1457,7 @@ static void _call_cbs_hoverMoveEvent_3044_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsEllipseItem_Adaptor *)cls)->cbs_hoverMoveEvent_3044_0 (arg1); } @@ -1481,7 +1481,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsEllipseItem_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -1505,7 +1505,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QGraphicsEllipseItem_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -1528,7 +1528,7 @@ static void _call_cbs_isObscuredBy_c2614_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsEllipseItem_Adaptor *)cls)->cbs_isObscuredBy_c2614_0 (arg1)); } @@ -1553,8 +1553,8 @@ static void _call_cbs_itemChange_5658_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QVariant &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QGraphicsEllipseItem_Adaptor *)cls)->cbs_itemChange_5658_0 (arg1, arg2)); } @@ -1577,7 +1577,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsEllipseItem_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -1601,7 +1601,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsEllipseItem_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -1625,7 +1625,7 @@ static void _call_cbs_mouseDoubleClickEvent_3049_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsEllipseItem_Adaptor *)cls)->cbs_mouseDoubleClickEvent_3049_0 (arg1); } @@ -1649,7 +1649,7 @@ static void _call_cbs_mouseMoveEvent_3049_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsEllipseItem_Adaptor *)cls)->cbs_mouseMoveEvent_3049_0 (arg1); } @@ -1673,7 +1673,7 @@ static void _call_cbs_mousePressEvent_3049_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsEllipseItem_Adaptor *)cls)->cbs_mousePressEvent_3049_0 (arg1); } @@ -1697,7 +1697,7 @@ static void _call_cbs_mouseReleaseEvent_3049_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsEllipseItem_Adaptor *)cls)->cbs_mouseReleaseEvent_3049_0 (arg1); } @@ -1744,9 +1744,9 @@ static void _call_cbs_paint_6301_1 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QStyleOptionGraphicsItem *arg2 = args.read (heap); - QWidget *arg3 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionGraphicsItem *arg2 = gsi::arg_reader() (args, heap); + QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsEllipseItem_Adaptor *)cls)->cbs_paint_6301_1 (arg1, arg2, arg3); } @@ -1800,7 +1800,7 @@ static void _call_cbs_sceneEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsEllipseItem_Adaptor *)cls)->cbs_sceneEvent_1217_0 (arg1)); } @@ -1825,8 +1825,8 @@ static void _call_cbs_sceneEventFilter_3028_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsItem *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsEllipseItem_Adaptor *)cls)->cbs_sceneEventFilter_3028_0 (arg1, arg2)); } @@ -1851,8 +1851,8 @@ static void _call_cbs_setExtension_4817_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsEllipseItem_Adaptor *)cls)->cbs_setExtension_4817_0 (arg1, arg2); } @@ -1895,7 +1895,7 @@ static void _call_cbs_supportsExtension_c2806_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsEllipseItem_Adaptor *)cls)->cbs_supportsExtension_c2806_0 (arg1)); } @@ -1937,7 +1937,7 @@ static void _call_cbs_wheelEvent_3029_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneWheelEvent *arg1 = args.read (heap); + QGraphicsSceneWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsEllipseItem_Adaptor *)cls)->cbs_wheelEvent_3029_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsGridLayout.cc b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsGridLayout.cc index 97a5c8f8d..d1e949c66 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsGridLayout.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsGridLayout.cc @@ -1270,10 +1270,10 @@ static void _call_cbs_getContentsMargins_c4704_0 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double *arg1 = args.read (heap); - double *arg2 = args.read (heap); - double *arg3 = args.read (heap); - double *arg4 = args.read (heap); + double *arg1 = gsi::arg_reader() (args, heap); + double *arg2 = gsi::arg_reader() (args, heap); + double *arg3 = gsi::arg_reader() (args, heap); + double *arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsGridLayout_Adaptor *)cls)->cbs_getContentsMargins_c4704_0 (arg1, arg2, arg3, arg4); } @@ -1317,7 +1317,7 @@ static void _call_cbs_itemAt_c767_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QGraphicsLayoutItem *)((QGraphicsGridLayout_Adaptor *)cls)->cbs_itemAt_c767_0 (arg1)); } @@ -1340,7 +1340,7 @@ static void _call_cbs_removeAt_767_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsGridLayout_Adaptor *)cls)->cbs_removeAt_767_0 (arg1); } @@ -1364,7 +1364,7 @@ static void _call_cbs_setGeometry_1862_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsGridLayout_Adaptor *)cls)->cbs_setGeometry_1862_0 (arg1); } @@ -1428,8 +1428,8 @@ static void _call_cbs_sizeHint_c3330_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QSizeF &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QSizeF &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QSizeF(), heap); ret.write ((QSizeF)((QGraphicsGridLayout_Adaptor *)cls)->cbs_sizeHint_c3330_1 (arg1, arg2)); } @@ -1472,7 +1472,7 @@ static void _call_cbs_widgetEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsGridLayout_Adaptor *)cls)->cbs_widgetEvent_1217_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsItem.cc b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsItem.cc index 7ac48f86e..fb3a24c19 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsItem.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsItem.cc @@ -4548,7 +4548,7 @@ static void _call_cbs_advance_767_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem_Adaptor *)cls)->cbs_advance_767_0 (arg1); } @@ -4593,8 +4593,8 @@ static void _call_cbs_collidesWithItem_c4977_1 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape), heap); ret.write ((bool)((QGraphicsItem_Adaptor *)cls)->cbs_collidesWithItem_c4977_1 (arg1, arg2)); } @@ -4619,8 +4619,8 @@ static void _call_cbs_collidesWithPath_c4877_1 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape), heap); ret.write ((bool)((QGraphicsItem_Adaptor *)cls)->cbs_collidesWithPath_c4877_1 (arg1, arg2)); } @@ -4643,7 +4643,7 @@ static void _call_cbs_contains_c1986_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsItem_Adaptor *)cls)->cbs_contains_c1986_0 (arg1)); } @@ -4666,7 +4666,7 @@ static void _call_cbs_contextMenuEvent_3674_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneContextMenuEvent *arg1 = args.read (heap); + QGraphicsSceneContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem_Adaptor *)cls)->cbs_contextMenuEvent_3674_0 (arg1); } @@ -4690,7 +4690,7 @@ static void _call_cbs_dragEnterEvent_3315_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem_Adaptor *)cls)->cbs_dragEnterEvent_3315_0 (arg1); } @@ -4714,7 +4714,7 @@ static void _call_cbs_dragLeaveEvent_3315_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem_Adaptor *)cls)->cbs_dragLeaveEvent_3315_0 (arg1); } @@ -4738,7 +4738,7 @@ static void _call_cbs_dragMoveEvent_3315_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem_Adaptor *)cls)->cbs_dragMoveEvent_3315_0 (arg1); } @@ -4762,7 +4762,7 @@ static void _call_cbs_dropEvent_3315_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem_Adaptor *)cls)->cbs_dropEvent_3315_0 (arg1); } @@ -4786,7 +4786,7 @@ static void _call_cbs_extension_c2119_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVariant &arg1 = args.read (heap); + const QVariant &arg1 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QGraphicsItem_Adaptor *)cls)->cbs_extension_c2119_0 (arg1)); } @@ -4809,7 +4809,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -4833,7 +4833,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -4857,7 +4857,7 @@ static void _call_cbs_hoverEnterEvent_3044_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem_Adaptor *)cls)->cbs_hoverEnterEvent_3044_0 (arg1); } @@ -4881,7 +4881,7 @@ static void _call_cbs_hoverLeaveEvent_3044_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem_Adaptor *)cls)->cbs_hoverLeaveEvent_3044_0 (arg1); } @@ -4905,7 +4905,7 @@ static void _call_cbs_hoverMoveEvent_3044_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem_Adaptor *)cls)->cbs_hoverMoveEvent_3044_0 (arg1); } @@ -4929,7 +4929,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -4953,7 +4953,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QGraphicsItem_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -4976,7 +4976,7 @@ static void _call_cbs_isObscuredBy_c2614_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsItem_Adaptor *)cls)->cbs_isObscuredBy_c2614_0 (arg1)); } @@ -5001,8 +5001,8 @@ static void _call_cbs_itemChange_5658_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QVariant &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QGraphicsItem_Adaptor *)cls)->cbs_itemChange_5658_0 (arg1, arg2)); } @@ -5025,7 +5025,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -5049,7 +5049,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -5073,7 +5073,7 @@ static void _call_cbs_mouseDoubleClickEvent_3049_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem_Adaptor *)cls)->cbs_mouseDoubleClickEvent_3049_0 (arg1); } @@ -5097,7 +5097,7 @@ static void _call_cbs_mouseMoveEvent_3049_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem_Adaptor *)cls)->cbs_mouseMoveEvent_3049_0 (arg1); } @@ -5121,7 +5121,7 @@ static void _call_cbs_mousePressEvent_3049_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem_Adaptor *)cls)->cbs_mousePressEvent_3049_0 (arg1); } @@ -5145,7 +5145,7 @@ static void _call_cbs_mouseReleaseEvent_3049_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem_Adaptor *)cls)->cbs_mouseReleaseEvent_3049_0 (arg1); } @@ -5192,9 +5192,9 @@ static void _call_cbs_paint_6301_1 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QStyleOptionGraphicsItem *arg2 = args.read (heap); - QWidget *arg3 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionGraphicsItem *arg2 = gsi::arg_reader() (args, heap); + QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem_Adaptor *)cls)->cbs_paint_6301_1 (arg1, arg2, arg3); } @@ -5248,7 +5248,7 @@ static void _call_cbs_sceneEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsItem_Adaptor *)cls)->cbs_sceneEvent_1217_0 (arg1)); } @@ -5273,8 +5273,8 @@ static void _call_cbs_sceneEventFilter_3028_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsItem *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsItem_Adaptor *)cls)->cbs_sceneEventFilter_3028_0 (arg1, arg2)); } @@ -5299,8 +5299,8 @@ static void _call_cbs_setExtension_4817_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem_Adaptor *)cls)->cbs_setExtension_4817_0 (arg1, arg2); } @@ -5343,7 +5343,7 @@ static void _call_cbs_supportsExtension_c2806_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsItem_Adaptor *)cls)->cbs_supportsExtension_c2806_0 (arg1)); } @@ -5385,7 +5385,7 @@ static void _call_cbs_wheelEvent_3029_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneWheelEvent *arg1 = args.read (heap); + QGraphicsSceneWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem_Adaptor *)cls)->cbs_wheelEvent_3029_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsItemAnimation.cc b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsItemAnimation.cc index ea0ac244e..ebebd436c 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsItemAnimation.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsItemAnimation.cc @@ -891,7 +891,7 @@ static void _call_cbs_afterAnimationStep_1071_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItemAnimation_Adaptor *)cls)->cbs_afterAnimationStep_1071_0 (arg1); } @@ -915,7 +915,7 @@ static void _call_cbs_beforeAnimationStep_1071_0 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItemAnimation_Adaptor *)cls)->cbs_beforeAnimationStep_1071_0 (arg1); } @@ -939,7 +939,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItemAnimation_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -963,7 +963,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItemAnimation_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1005,7 +1005,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItemAnimation_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -1029,7 +1029,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsItemAnimation_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1054,8 +1054,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsItemAnimation_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1110,7 +1110,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItemAnimation_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsItemGroup.cc b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsItemGroup.cc index e17ad17b0..d940e2558 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsItemGroup.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsItemGroup.cc @@ -870,7 +870,7 @@ static void _call_cbs_advance_767_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItemGroup_Adaptor *)cls)->cbs_advance_767_0 (arg1); } @@ -915,8 +915,8 @@ static void _call_cbs_collidesWithItem_c4977_1 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape), heap); ret.write ((bool)((QGraphicsItemGroup_Adaptor *)cls)->cbs_collidesWithItem_c4977_1 (arg1, arg2)); } @@ -941,8 +941,8 @@ static void _call_cbs_collidesWithPath_c4877_1 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape), heap); ret.write ((bool)((QGraphicsItemGroup_Adaptor *)cls)->cbs_collidesWithPath_c4877_1 (arg1, arg2)); } @@ -965,7 +965,7 @@ static void _call_cbs_contains_c1986_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsItemGroup_Adaptor *)cls)->cbs_contains_c1986_0 (arg1)); } @@ -988,7 +988,7 @@ static void _call_cbs_contextMenuEvent_3674_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneContextMenuEvent *arg1 = args.read (heap); + QGraphicsSceneContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItemGroup_Adaptor *)cls)->cbs_contextMenuEvent_3674_0 (arg1); } @@ -1012,7 +1012,7 @@ static void _call_cbs_dragEnterEvent_3315_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItemGroup_Adaptor *)cls)->cbs_dragEnterEvent_3315_0 (arg1); } @@ -1036,7 +1036,7 @@ static void _call_cbs_dragLeaveEvent_3315_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItemGroup_Adaptor *)cls)->cbs_dragLeaveEvent_3315_0 (arg1); } @@ -1060,7 +1060,7 @@ static void _call_cbs_dragMoveEvent_3315_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItemGroup_Adaptor *)cls)->cbs_dragMoveEvent_3315_0 (arg1); } @@ -1084,7 +1084,7 @@ static void _call_cbs_dropEvent_3315_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItemGroup_Adaptor *)cls)->cbs_dropEvent_3315_0 (arg1); } @@ -1108,7 +1108,7 @@ static void _call_cbs_extension_c2119_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVariant &arg1 = args.read (heap); + const QVariant &arg1 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QGraphicsItemGroup_Adaptor *)cls)->cbs_extension_c2119_0 (arg1)); } @@ -1131,7 +1131,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItemGroup_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1155,7 +1155,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItemGroup_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -1179,7 +1179,7 @@ static void _call_cbs_hoverEnterEvent_3044_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItemGroup_Adaptor *)cls)->cbs_hoverEnterEvent_3044_0 (arg1); } @@ -1203,7 +1203,7 @@ static void _call_cbs_hoverLeaveEvent_3044_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItemGroup_Adaptor *)cls)->cbs_hoverLeaveEvent_3044_0 (arg1); } @@ -1227,7 +1227,7 @@ static void _call_cbs_hoverMoveEvent_3044_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItemGroup_Adaptor *)cls)->cbs_hoverMoveEvent_3044_0 (arg1); } @@ -1251,7 +1251,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItemGroup_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -1275,7 +1275,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QGraphicsItemGroup_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -1298,7 +1298,7 @@ static void _call_cbs_isObscuredBy_c2614_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsItemGroup_Adaptor *)cls)->cbs_isObscuredBy_c2614_0 (arg1)); } @@ -1323,8 +1323,8 @@ static void _call_cbs_itemChange_5658_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QVariant &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QGraphicsItemGroup_Adaptor *)cls)->cbs_itemChange_5658_0 (arg1, arg2)); } @@ -1347,7 +1347,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItemGroup_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -1371,7 +1371,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItemGroup_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -1395,7 +1395,7 @@ static void _call_cbs_mouseDoubleClickEvent_3049_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItemGroup_Adaptor *)cls)->cbs_mouseDoubleClickEvent_3049_0 (arg1); } @@ -1419,7 +1419,7 @@ static void _call_cbs_mouseMoveEvent_3049_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItemGroup_Adaptor *)cls)->cbs_mouseMoveEvent_3049_0 (arg1); } @@ -1443,7 +1443,7 @@ static void _call_cbs_mousePressEvent_3049_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItemGroup_Adaptor *)cls)->cbs_mousePressEvent_3049_0 (arg1); } @@ -1467,7 +1467,7 @@ static void _call_cbs_mouseReleaseEvent_3049_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItemGroup_Adaptor *)cls)->cbs_mouseReleaseEvent_3049_0 (arg1); } @@ -1514,9 +1514,9 @@ static void _call_cbs_paint_6301_1 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QStyleOptionGraphicsItem *arg2 = args.read (heap); - QWidget *arg3 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionGraphicsItem *arg2 = gsi::arg_reader() (args, heap); + QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItemGroup_Adaptor *)cls)->cbs_paint_6301_1 (arg1, arg2, arg3); } @@ -1570,7 +1570,7 @@ static void _call_cbs_sceneEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsItemGroup_Adaptor *)cls)->cbs_sceneEvent_1217_0 (arg1)); } @@ -1595,8 +1595,8 @@ static void _call_cbs_sceneEventFilter_3028_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsItem *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsItemGroup_Adaptor *)cls)->cbs_sceneEventFilter_3028_0 (arg1, arg2)); } @@ -1621,8 +1621,8 @@ static void _call_cbs_setExtension_4817_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItemGroup_Adaptor *)cls)->cbs_setExtension_4817_0 (arg1, arg2); } @@ -1665,7 +1665,7 @@ static void _call_cbs_supportsExtension_c2806_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsItemGroup_Adaptor *)cls)->cbs_supportsExtension_c2806_0 (arg1)); } @@ -1707,7 +1707,7 @@ static void _call_cbs_wheelEvent_3029_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneWheelEvent *arg1 = args.read (heap); + QGraphicsSceneWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItemGroup_Adaptor *)cls)->cbs_wheelEvent_3029_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsLayout.cc b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsLayout.cc index 0a3888fde..58e65a584 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsLayout.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsLayout.cc @@ -525,10 +525,10 @@ static void _call_cbs_getContentsMargins_c4704_0 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double *arg1 = args.read (heap); - double *arg2 = args.read (heap); - double *arg3 = args.read (heap); - double *arg4 = args.read (heap); + double *arg1 = gsi::arg_reader() (args, heap); + double *arg2 = gsi::arg_reader() (args, heap); + double *arg3 = gsi::arg_reader() (args, heap); + double *arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLayout_Adaptor *)cls)->cbs_getContentsMargins_c4704_0 (arg1, arg2, arg3, arg4); } @@ -572,7 +572,7 @@ static void _call_cbs_itemAt_c767_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QGraphicsLayoutItem *)((QGraphicsLayout_Adaptor *)cls)->cbs_itemAt_c767_0 (arg1)); } @@ -595,7 +595,7 @@ static void _call_cbs_removeAt_767_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLayout_Adaptor *)cls)->cbs_removeAt_767_0 (arg1); } @@ -619,7 +619,7 @@ static void _call_cbs_setGeometry_1862_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLayout_Adaptor *)cls)->cbs_setGeometry_1862_0 (arg1); } @@ -683,8 +683,8 @@ static void _call_cbs_sizeHint_c3330_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QSizeF &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QSizeF &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QSizeF(), heap); ret.write ((QSizeF)((QGraphicsLayout_Adaptor *)cls)->cbs_sizeHint_c3330_1 (arg1, arg2)); } @@ -727,7 +727,7 @@ static void _call_cbs_widgetEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLayout_Adaptor *)cls)->cbs_widgetEvent_1217_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsLayoutItem.cc b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsLayoutItem.cc index 89d0cc96d..a895f5737 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsLayoutItem.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsLayoutItem.cc @@ -877,10 +877,10 @@ static void _call_cbs_getContentsMargins_c4704_0 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double *arg1 = args.read (heap); - double *arg2 = args.read (heap); - double *arg3 = args.read (heap); - double *arg4 = args.read (heap); + double *arg1 = gsi::arg_reader() (args, heap); + double *arg2 = gsi::arg_reader() (args, heap); + double *arg3 = gsi::arg_reader() (args, heap); + double *arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLayoutItem_Adaptor *)cls)->cbs_getContentsMargins_c4704_0 (arg1, arg2, arg3, arg4); } @@ -904,7 +904,7 @@ static void _call_cbs_setGeometry_1862_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLayoutItem_Adaptor *)cls)->cbs_setGeometry_1862_0 (arg1); } @@ -968,8 +968,8 @@ static void _call_cbs_sizeHint_c3330_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QSizeF &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QSizeF &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QSizeF(), heap); ret.write ((QSizeF)((QGraphicsLayoutItem_Adaptor *)cls)->cbs_sizeHint_c3330_1 (arg1, arg2)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsLineItem.cc b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsLineItem.cc index 6da6e2c65..49b678e21 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsLineItem.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsLineItem.cc @@ -1063,7 +1063,7 @@ static void _call_cbs_advance_767_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLineItem_Adaptor *)cls)->cbs_advance_767_0 (arg1); } @@ -1108,8 +1108,8 @@ static void _call_cbs_collidesWithItem_c4977_1 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape), heap); ret.write ((bool)((QGraphicsLineItem_Adaptor *)cls)->cbs_collidesWithItem_c4977_1 (arg1, arg2)); } @@ -1134,8 +1134,8 @@ static void _call_cbs_collidesWithPath_c4877_1 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape), heap); ret.write ((bool)((QGraphicsLineItem_Adaptor *)cls)->cbs_collidesWithPath_c4877_1 (arg1, arg2)); } @@ -1158,7 +1158,7 @@ static void _call_cbs_contains_c1986_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsLineItem_Adaptor *)cls)->cbs_contains_c1986_0 (arg1)); } @@ -1181,7 +1181,7 @@ static void _call_cbs_contextMenuEvent_3674_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneContextMenuEvent *arg1 = args.read (heap); + QGraphicsSceneContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLineItem_Adaptor *)cls)->cbs_contextMenuEvent_3674_0 (arg1); } @@ -1205,7 +1205,7 @@ static void _call_cbs_dragEnterEvent_3315_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLineItem_Adaptor *)cls)->cbs_dragEnterEvent_3315_0 (arg1); } @@ -1229,7 +1229,7 @@ static void _call_cbs_dragLeaveEvent_3315_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLineItem_Adaptor *)cls)->cbs_dragLeaveEvent_3315_0 (arg1); } @@ -1253,7 +1253,7 @@ static void _call_cbs_dragMoveEvent_3315_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLineItem_Adaptor *)cls)->cbs_dragMoveEvent_3315_0 (arg1); } @@ -1277,7 +1277,7 @@ static void _call_cbs_dropEvent_3315_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLineItem_Adaptor *)cls)->cbs_dropEvent_3315_0 (arg1); } @@ -1301,7 +1301,7 @@ static void _call_cbs_extension_c2119_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVariant &arg1 = args.read (heap); + const QVariant &arg1 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QGraphicsLineItem_Adaptor *)cls)->cbs_extension_c2119_0 (arg1)); } @@ -1324,7 +1324,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLineItem_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1348,7 +1348,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLineItem_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -1372,7 +1372,7 @@ static void _call_cbs_hoverEnterEvent_3044_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLineItem_Adaptor *)cls)->cbs_hoverEnterEvent_3044_0 (arg1); } @@ -1396,7 +1396,7 @@ static void _call_cbs_hoverLeaveEvent_3044_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLineItem_Adaptor *)cls)->cbs_hoverLeaveEvent_3044_0 (arg1); } @@ -1420,7 +1420,7 @@ static void _call_cbs_hoverMoveEvent_3044_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLineItem_Adaptor *)cls)->cbs_hoverMoveEvent_3044_0 (arg1); } @@ -1444,7 +1444,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLineItem_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -1468,7 +1468,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QGraphicsLineItem_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -1491,7 +1491,7 @@ static void _call_cbs_isObscuredBy_c2614_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsLineItem_Adaptor *)cls)->cbs_isObscuredBy_c2614_0 (arg1)); } @@ -1516,8 +1516,8 @@ static void _call_cbs_itemChange_5658_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QVariant &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QGraphicsLineItem_Adaptor *)cls)->cbs_itemChange_5658_0 (arg1, arg2)); } @@ -1540,7 +1540,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLineItem_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -1564,7 +1564,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLineItem_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -1588,7 +1588,7 @@ static void _call_cbs_mouseDoubleClickEvent_3049_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLineItem_Adaptor *)cls)->cbs_mouseDoubleClickEvent_3049_0 (arg1); } @@ -1612,7 +1612,7 @@ static void _call_cbs_mouseMoveEvent_3049_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLineItem_Adaptor *)cls)->cbs_mouseMoveEvent_3049_0 (arg1); } @@ -1636,7 +1636,7 @@ static void _call_cbs_mousePressEvent_3049_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLineItem_Adaptor *)cls)->cbs_mousePressEvent_3049_0 (arg1); } @@ -1660,7 +1660,7 @@ static void _call_cbs_mouseReleaseEvent_3049_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLineItem_Adaptor *)cls)->cbs_mouseReleaseEvent_3049_0 (arg1); } @@ -1707,9 +1707,9 @@ static void _call_cbs_paint_6301_1 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QStyleOptionGraphicsItem *arg2 = args.read (heap); - QWidget *arg3 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionGraphicsItem *arg2 = gsi::arg_reader() (args, heap); + QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLineItem_Adaptor *)cls)->cbs_paint_6301_1 (arg1, arg2, arg3); } @@ -1763,7 +1763,7 @@ static void _call_cbs_sceneEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsLineItem_Adaptor *)cls)->cbs_sceneEvent_1217_0 (arg1)); } @@ -1788,8 +1788,8 @@ static void _call_cbs_sceneEventFilter_3028_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsItem *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsLineItem_Adaptor *)cls)->cbs_sceneEventFilter_3028_0 (arg1, arg2)); } @@ -1814,8 +1814,8 @@ static void _call_cbs_setExtension_4817_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLineItem_Adaptor *)cls)->cbs_setExtension_4817_0 (arg1, arg2); } @@ -1858,7 +1858,7 @@ static void _call_cbs_supportsExtension_c2806_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsLineItem_Adaptor *)cls)->cbs_supportsExtension_c2806_0 (arg1)); } @@ -1900,7 +1900,7 @@ static void _call_cbs_wheelEvent_3029_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneWheelEvent *arg1 = args.read (heap); + QGraphicsSceneWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLineItem_Adaptor *)cls)->cbs_wheelEvent_3029_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsLinearLayout.cc b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsLinearLayout.cc index e42dab5de..a637da058 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsLinearLayout.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsLinearLayout.cc @@ -805,10 +805,10 @@ static void _call_cbs_getContentsMargins_c4704_0 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double *arg1 = args.read (heap); - double *arg2 = args.read (heap); - double *arg3 = args.read (heap); - double *arg4 = args.read (heap); + double *arg1 = gsi::arg_reader() (args, heap); + double *arg2 = gsi::arg_reader() (args, heap); + double *arg3 = gsi::arg_reader() (args, heap); + double *arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLinearLayout_Adaptor *)cls)->cbs_getContentsMargins_c4704_0 (arg1, arg2, arg3, arg4); } @@ -852,7 +852,7 @@ static void _call_cbs_itemAt_c767_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QGraphicsLayoutItem *)((QGraphicsLinearLayout_Adaptor *)cls)->cbs_itemAt_c767_0 (arg1)); } @@ -875,7 +875,7 @@ static void _call_cbs_removeAt_767_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLinearLayout_Adaptor *)cls)->cbs_removeAt_767_0 (arg1); } @@ -899,7 +899,7 @@ static void _call_cbs_setGeometry_1862_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLinearLayout_Adaptor *)cls)->cbs_setGeometry_1862_0 (arg1); } @@ -963,8 +963,8 @@ static void _call_cbs_sizeHint_c3330_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QSizeF &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QSizeF &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QSizeF(), heap); ret.write ((QSizeF)((QGraphicsLinearLayout_Adaptor *)cls)->cbs_sizeHint_c3330_1 (arg1, arg2)); } @@ -1007,7 +1007,7 @@ static void _call_cbs_widgetEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLinearLayout_Adaptor *)cls)->cbs_widgetEvent_1217_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsObject.cc b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsObject.cc index 69a77da9e..c6811e31d 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsObject.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsObject.cc @@ -1134,7 +1134,7 @@ static void _call_cbs_advance_767_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsObject_Adaptor *)cls)->cbs_advance_767_0 (arg1); } @@ -1177,7 +1177,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsObject_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1203,8 +1203,8 @@ static void _call_cbs_collidesWithItem_c4977_1 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape), heap); ret.write ((bool)((QGraphicsObject_Adaptor *)cls)->cbs_collidesWithItem_c4977_1 (arg1, arg2)); } @@ -1229,8 +1229,8 @@ static void _call_cbs_collidesWithPath_c4877_1 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape), heap); ret.write ((bool)((QGraphicsObject_Adaptor *)cls)->cbs_collidesWithPath_c4877_1 (arg1, arg2)); } @@ -1253,7 +1253,7 @@ static void _call_cbs_contains_c1986_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsObject_Adaptor *)cls)->cbs_contains_c1986_0 (arg1)); } @@ -1276,7 +1276,7 @@ static void _call_cbs_contextMenuEvent_3674_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneContextMenuEvent *arg1 = args.read (heap); + QGraphicsSceneContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsObject_Adaptor *)cls)->cbs_contextMenuEvent_3674_0 (arg1); } @@ -1300,7 +1300,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsObject_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1342,7 +1342,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsObject_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -1366,7 +1366,7 @@ static void _call_cbs_dragEnterEvent_3315_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsObject_Adaptor *)cls)->cbs_dragEnterEvent_3315_0 (arg1); } @@ -1390,7 +1390,7 @@ static void _call_cbs_dragLeaveEvent_3315_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsObject_Adaptor *)cls)->cbs_dragLeaveEvent_3315_0 (arg1); } @@ -1414,7 +1414,7 @@ static void _call_cbs_dragMoveEvent_3315_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsObject_Adaptor *)cls)->cbs_dragMoveEvent_3315_0 (arg1); } @@ -1438,7 +1438,7 @@ static void _call_cbs_dropEvent_3315_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsObject_Adaptor *)cls)->cbs_dropEvent_3315_0 (arg1); } @@ -1476,7 +1476,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsObject_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1501,8 +1501,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsObject_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1525,7 +1525,7 @@ static void _call_cbs_extension_c2119_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVariant &arg1 = args.read (heap); + const QVariant &arg1 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QGraphicsObject_Adaptor *)cls)->cbs_extension_c2119_0 (arg1)); } @@ -1548,7 +1548,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsObject_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1572,7 +1572,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsObject_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -1596,7 +1596,7 @@ static void _call_cbs_hoverEnterEvent_3044_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsObject_Adaptor *)cls)->cbs_hoverEnterEvent_3044_0 (arg1); } @@ -1620,7 +1620,7 @@ static void _call_cbs_hoverLeaveEvent_3044_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsObject_Adaptor *)cls)->cbs_hoverLeaveEvent_3044_0 (arg1); } @@ -1644,7 +1644,7 @@ static void _call_cbs_hoverMoveEvent_3044_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsObject_Adaptor *)cls)->cbs_hoverMoveEvent_3044_0 (arg1); } @@ -1668,7 +1668,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsObject_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -1692,7 +1692,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QGraphicsObject_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -1715,7 +1715,7 @@ static void _call_cbs_isObscuredBy_c2614_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsObject_Adaptor *)cls)->cbs_isObscuredBy_c2614_0 (arg1)); } @@ -1740,8 +1740,8 @@ static void _call_cbs_itemChange_5658_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QVariant &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QGraphicsObject_Adaptor *)cls)->cbs_itemChange_5658_0 (arg1, arg2)); } @@ -1764,7 +1764,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsObject_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -1788,7 +1788,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsObject_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -1812,7 +1812,7 @@ static void _call_cbs_mouseDoubleClickEvent_3049_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsObject_Adaptor *)cls)->cbs_mouseDoubleClickEvent_3049_0 (arg1); } @@ -1836,7 +1836,7 @@ static void _call_cbs_mouseMoveEvent_3049_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsObject_Adaptor *)cls)->cbs_mouseMoveEvent_3049_0 (arg1); } @@ -1860,7 +1860,7 @@ static void _call_cbs_mousePressEvent_3049_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsObject_Adaptor *)cls)->cbs_mousePressEvent_3049_0 (arg1); } @@ -1884,7 +1884,7 @@ static void _call_cbs_mouseReleaseEvent_3049_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsObject_Adaptor *)cls)->cbs_mouseReleaseEvent_3049_0 (arg1); } @@ -1945,9 +1945,9 @@ static void _call_cbs_paint_6301_1 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QStyleOptionGraphicsItem *arg2 = args.read (heap); - QWidget *arg3 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionGraphicsItem *arg2 = gsi::arg_reader() (args, heap); + QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsObject_Adaptor *)cls)->cbs_paint_6301_1 (arg1, arg2, arg3); } @@ -2061,7 +2061,7 @@ static void _call_cbs_sceneEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsObject_Adaptor *)cls)->cbs_sceneEvent_1217_0 (arg1)); } @@ -2086,8 +2086,8 @@ static void _call_cbs_sceneEventFilter_3028_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsItem *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsObject_Adaptor *)cls)->cbs_sceneEventFilter_3028_0 (arg1, arg2)); } @@ -2126,8 +2126,8 @@ static void _call_cbs_setExtension_4817_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsObject_Adaptor *)cls)->cbs_setExtension_4817_0 (arg1, arg2); } @@ -2170,7 +2170,7 @@ static void _call_cbs_supportsExtension_c2806_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsObject_Adaptor *)cls)->cbs_supportsExtension_c2806_0 (arg1)); } @@ -2193,7 +2193,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsObject_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2250,7 +2250,7 @@ static void _call_cbs_wheelEvent_3029_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneWheelEvent *arg1 = args.read (heap); + QGraphicsSceneWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsObject_Adaptor *)cls)->cbs_wheelEvent_3029_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsOpacityEffect.cc b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsOpacityEffect.cc index a884b89b2..4bbe9a706 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsOpacityEffect.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsOpacityEffect.cc @@ -510,7 +510,7 @@ static void _call_cbs_boundingRectFor_c1862_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRectF)((QGraphicsOpacityEffect_Adaptor *)cls)->cbs_boundingRectFor_c1862_0 (arg1)); } @@ -533,7 +533,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsOpacityEffect_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -557,7 +557,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsOpacityEffect_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -599,7 +599,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsOpacityEffect_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -623,7 +623,7 @@ static void _call_cbs_draw_1426_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsOpacityEffect_Adaptor *)cls)->cbs_draw_1426_0 (arg1); } @@ -684,7 +684,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsOpacityEffect_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -709,8 +709,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsOpacityEffect_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -819,7 +819,7 @@ static void _call_cbs_sourceChanged_3695_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsOpacityEffect_Adaptor *)cls)->cbs_sourceChanged_3695_0 (arg1); } @@ -881,7 +881,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsOpacityEffect_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsPathItem.cc b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsPathItem.cc index 797400a35..bcbb68cbd 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsPathItem.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsPathItem.cc @@ -945,7 +945,7 @@ static void _call_cbs_advance_767_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPathItem_Adaptor *)cls)->cbs_advance_767_0 (arg1); } @@ -990,8 +990,8 @@ static void _call_cbs_collidesWithItem_c4977_1 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape), heap); ret.write ((bool)((QGraphicsPathItem_Adaptor *)cls)->cbs_collidesWithItem_c4977_1 (arg1, arg2)); } @@ -1016,8 +1016,8 @@ static void _call_cbs_collidesWithPath_c4877_1 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape), heap); ret.write ((bool)((QGraphicsPathItem_Adaptor *)cls)->cbs_collidesWithPath_c4877_1 (arg1, arg2)); } @@ -1040,7 +1040,7 @@ static void _call_cbs_contains_c1986_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsPathItem_Adaptor *)cls)->cbs_contains_c1986_0 (arg1)); } @@ -1063,7 +1063,7 @@ static void _call_cbs_contextMenuEvent_3674_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneContextMenuEvent *arg1 = args.read (heap); + QGraphicsSceneContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPathItem_Adaptor *)cls)->cbs_contextMenuEvent_3674_0 (arg1); } @@ -1087,7 +1087,7 @@ static void _call_cbs_dragEnterEvent_3315_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPathItem_Adaptor *)cls)->cbs_dragEnterEvent_3315_0 (arg1); } @@ -1111,7 +1111,7 @@ static void _call_cbs_dragLeaveEvent_3315_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPathItem_Adaptor *)cls)->cbs_dragLeaveEvent_3315_0 (arg1); } @@ -1135,7 +1135,7 @@ static void _call_cbs_dragMoveEvent_3315_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPathItem_Adaptor *)cls)->cbs_dragMoveEvent_3315_0 (arg1); } @@ -1159,7 +1159,7 @@ static void _call_cbs_dropEvent_3315_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPathItem_Adaptor *)cls)->cbs_dropEvent_3315_0 (arg1); } @@ -1183,7 +1183,7 @@ static void _call_cbs_extension_c2119_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVariant &arg1 = args.read (heap); + const QVariant &arg1 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QGraphicsPathItem_Adaptor *)cls)->cbs_extension_c2119_0 (arg1)); } @@ -1206,7 +1206,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPathItem_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1230,7 +1230,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPathItem_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -1254,7 +1254,7 @@ static void _call_cbs_hoverEnterEvent_3044_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPathItem_Adaptor *)cls)->cbs_hoverEnterEvent_3044_0 (arg1); } @@ -1278,7 +1278,7 @@ static void _call_cbs_hoverLeaveEvent_3044_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPathItem_Adaptor *)cls)->cbs_hoverLeaveEvent_3044_0 (arg1); } @@ -1302,7 +1302,7 @@ static void _call_cbs_hoverMoveEvent_3044_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPathItem_Adaptor *)cls)->cbs_hoverMoveEvent_3044_0 (arg1); } @@ -1326,7 +1326,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPathItem_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -1350,7 +1350,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QGraphicsPathItem_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -1373,7 +1373,7 @@ static void _call_cbs_isObscuredBy_c2614_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsPathItem_Adaptor *)cls)->cbs_isObscuredBy_c2614_0 (arg1)); } @@ -1398,8 +1398,8 @@ static void _call_cbs_itemChange_5658_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QVariant &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QGraphicsPathItem_Adaptor *)cls)->cbs_itemChange_5658_0 (arg1, arg2)); } @@ -1422,7 +1422,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPathItem_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -1446,7 +1446,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPathItem_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -1470,7 +1470,7 @@ static void _call_cbs_mouseDoubleClickEvent_3049_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPathItem_Adaptor *)cls)->cbs_mouseDoubleClickEvent_3049_0 (arg1); } @@ -1494,7 +1494,7 @@ static void _call_cbs_mouseMoveEvent_3049_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPathItem_Adaptor *)cls)->cbs_mouseMoveEvent_3049_0 (arg1); } @@ -1518,7 +1518,7 @@ static void _call_cbs_mousePressEvent_3049_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPathItem_Adaptor *)cls)->cbs_mousePressEvent_3049_0 (arg1); } @@ -1542,7 +1542,7 @@ static void _call_cbs_mouseReleaseEvent_3049_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPathItem_Adaptor *)cls)->cbs_mouseReleaseEvent_3049_0 (arg1); } @@ -1589,9 +1589,9 @@ static void _call_cbs_paint_6301_1 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QStyleOptionGraphicsItem *arg2 = args.read (heap); - QWidget *arg3 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionGraphicsItem *arg2 = gsi::arg_reader() (args, heap); + QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPathItem_Adaptor *)cls)->cbs_paint_6301_1 (arg1, arg2, arg3); } @@ -1645,7 +1645,7 @@ static void _call_cbs_sceneEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsPathItem_Adaptor *)cls)->cbs_sceneEvent_1217_0 (arg1)); } @@ -1670,8 +1670,8 @@ static void _call_cbs_sceneEventFilter_3028_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsItem *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsPathItem_Adaptor *)cls)->cbs_sceneEventFilter_3028_0 (arg1, arg2)); } @@ -1696,8 +1696,8 @@ static void _call_cbs_setExtension_4817_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPathItem_Adaptor *)cls)->cbs_setExtension_4817_0 (arg1, arg2); } @@ -1740,7 +1740,7 @@ static void _call_cbs_supportsExtension_c2806_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsPathItem_Adaptor *)cls)->cbs_supportsExtension_c2806_0 (arg1)); } @@ -1782,7 +1782,7 @@ static void _call_cbs_wheelEvent_3029_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneWheelEvent *arg1 = args.read (heap); + QGraphicsSceneWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPathItem_Adaptor *)cls)->cbs_wheelEvent_3029_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsPixmapItem.cc b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsPixmapItem.cc index 5f9cf33c3..b431724a2 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsPixmapItem.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsPixmapItem.cc @@ -1079,7 +1079,7 @@ static void _call_cbs_advance_767_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPixmapItem_Adaptor *)cls)->cbs_advance_767_0 (arg1); } @@ -1124,8 +1124,8 @@ static void _call_cbs_collidesWithItem_c4977_1 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape), heap); ret.write ((bool)((QGraphicsPixmapItem_Adaptor *)cls)->cbs_collidesWithItem_c4977_1 (arg1, arg2)); } @@ -1150,8 +1150,8 @@ static void _call_cbs_collidesWithPath_c4877_1 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape), heap); ret.write ((bool)((QGraphicsPixmapItem_Adaptor *)cls)->cbs_collidesWithPath_c4877_1 (arg1, arg2)); } @@ -1174,7 +1174,7 @@ static void _call_cbs_contains_c1986_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsPixmapItem_Adaptor *)cls)->cbs_contains_c1986_0 (arg1)); } @@ -1197,7 +1197,7 @@ static void _call_cbs_contextMenuEvent_3674_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneContextMenuEvent *arg1 = args.read (heap); + QGraphicsSceneContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPixmapItem_Adaptor *)cls)->cbs_contextMenuEvent_3674_0 (arg1); } @@ -1221,7 +1221,7 @@ static void _call_cbs_dragEnterEvent_3315_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPixmapItem_Adaptor *)cls)->cbs_dragEnterEvent_3315_0 (arg1); } @@ -1245,7 +1245,7 @@ static void _call_cbs_dragLeaveEvent_3315_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPixmapItem_Adaptor *)cls)->cbs_dragLeaveEvent_3315_0 (arg1); } @@ -1269,7 +1269,7 @@ static void _call_cbs_dragMoveEvent_3315_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPixmapItem_Adaptor *)cls)->cbs_dragMoveEvent_3315_0 (arg1); } @@ -1293,7 +1293,7 @@ static void _call_cbs_dropEvent_3315_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPixmapItem_Adaptor *)cls)->cbs_dropEvent_3315_0 (arg1); } @@ -1317,7 +1317,7 @@ static void _call_cbs_extension_c2119_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVariant &arg1 = args.read (heap); + const QVariant &arg1 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QGraphicsPixmapItem_Adaptor *)cls)->cbs_extension_c2119_0 (arg1)); } @@ -1340,7 +1340,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPixmapItem_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1364,7 +1364,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPixmapItem_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -1388,7 +1388,7 @@ static void _call_cbs_hoverEnterEvent_3044_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPixmapItem_Adaptor *)cls)->cbs_hoverEnterEvent_3044_0 (arg1); } @@ -1412,7 +1412,7 @@ static void _call_cbs_hoverLeaveEvent_3044_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPixmapItem_Adaptor *)cls)->cbs_hoverLeaveEvent_3044_0 (arg1); } @@ -1436,7 +1436,7 @@ static void _call_cbs_hoverMoveEvent_3044_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPixmapItem_Adaptor *)cls)->cbs_hoverMoveEvent_3044_0 (arg1); } @@ -1460,7 +1460,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPixmapItem_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -1484,7 +1484,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QGraphicsPixmapItem_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -1507,7 +1507,7 @@ static void _call_cbs_isObscuredBy_c2614_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsPixmapItem_Adaptor *)cls)->cbs_isObscuredBy_c2614_0 (arg1)); } @@ -1532,8 +1532,8 @@ static void _call_cbs_itemChange_5658_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QVariant &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QGraphicsPixmapItem_Adaptor *)cls)->cbs_itemChange_5658_0 (arg1, arg2)); } @@ -1556,7 +1556,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPixmapItem_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -1580,7 +1580,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPixmapItem_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -1604,7 +1604,7 @@ static void _call_cbs_mouseDoubleClickEvent_3049_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPixmapItem_Adaptor *)cls)->cbs_mouseDoubleClickEvent_3049_0 (arg1); } @@ -1628,7 +1628,7 @@ static void _call_cbs_mouseMoveEvent_3049_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPixmapItem_Adaptor *)cls)->cbs_mouseMoveEvent_3049_0 (arg1); } @@ -1652,7 +1652,7 @@ static void _call_cbs_mousePressEvent_3049_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPixmapItem_Adaptor *)cls)->cbs_mousePressEvent_3049_0 (arg1); } @@ -1676,7 +1676,7 @@ static void _call_cbs_mouseReleaseEvent_3049_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPixmapItem_Adaptor *)cls)->cbs_mouseReleaseEvent_3049_0 (arg1); } @@ -1723,9 +1723,9 @@ static void _call_cbs_paint_6301_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QStyleOptionGraphicsItem *arg2 = args.read (heap); - QWidget *arg3 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionGraphicsItem *arg2 = gsi::arg_reader() (args, heap); + QWidget *arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPixmapItem_Adaptor *)cls)->cbs_paint_6301_0 (arg1, arg2, arg3); } @@ -1779,7 +1779,7 @@ static void _call_cbs_sceneEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsPixmapItem_Adaptor *)cls)->cbs_sceneEvent_1217_0 (arg1)); } @@ -1804,8 +1804,8 @@ static void _call_cbs_sceneEventFilter_3028_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsItem *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsPixmapItem_Adaptor *)cls)->cbs_sceneEventFilter_3028_0 (arg1, arg2)); } @@ -1830,8 +1830,8 @@ static void _call_cbs_setExtension_4817_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPixmapItem_Adaptor *)cls)->cbs_setExtension_4817_0 (arg1, arg2); } @@ -1874,7 +1874,7 @@ static void _call_cbs_supportsExtension_c2806_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsPixmapItem_Adaptor *)cls)->cbs_supportsExtension_c2806_0 (arg1)); } @@ -1916,7 +1916,7 @@ static void _call_cbs_wheelEvent_3029_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneWheelEvent *arg1 = args.read (heap); + QGraphicsSceneWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPixmapItem_Adaptor *)cls)->cbs_wheelEvent_3029_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsPolygonItem.cc b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsPolygonItem.cc index 84ee8b227..6d0778f32 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsPolygonItem.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsPolygonItem.cc @@ -982,7 +982,7 @@ static void _call_cbs_advance_767_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPolygonItem_Adaptor *)cls)->cbs_advance_767_0 (arg1); } @@ -1027,8 +1027,8 @@ static void _call_cbs_collidesWithItem_c4977_1 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape), heap); ret.write ((bool)((QGraphicsPolygonItem_Adaptor *)cls)->cbs_collidesWithItem_c4977_1 (arg1, arg2)); } @@ -1053,8 +1053,8 @@ static void _call_cbs_collidesWithPath_c4877_1 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape), heap); ret.write ((bool)((QGraphicsPolygonItem_Adaptor *)cls)->cbs_collidesWithPath_c4877_1 (arg1, arg2)); } @@ -1077,7 +1077,7 @@ static void _call_cbs_contains_c1986_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsPolygonItem_Adaptor *)cls)->cbs_contains_c1986_0 (arg1)); } @@ -1100,7 +1100,7 @@ static void _call_cbs_contextMenuEvent_3674_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneContextMenuEvent *arg1 = args.read (heap); + QGraphicsSceneContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPolygonItem_Adaptor *)cls)->cbs_contextMenuEvent_3674_0 (arg1); } @@ -1124,7 +1124,7 @@ static void _call_cbs_dragEnterEvent_3315_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPolygonItem_Adaptor *)cls)->cbs_dragEnterEvent_3315_0 (arg1); } @@ -1148,7 +1148,7 @@ static void _call_cbs_dragLeaveEvent_3315_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPolygonItem_Adaptor *)cls)->cbs_dragLeaveEvent_3315_0 (arg1); } @@ -1172,7 +1172,7 @@ static void _call_cbs_dragMoveEvent_3315_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPolygonItem_Adaptor *)cls)->cbs_dragMoveEvent_3315_0 (arg1); } @@ -1196,7 +1196,7 @@ static void _call_cbs_dropEvent_3315_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPolygonItem_Adaptor *)cls)->cbs_dropEvent_3315_0 (arg1); } @@ -1220,7 +1220,7 @@ static void _call_cbs_extension_c2119_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVariant &arg1 = args.read (heap); + const QVariant &arg1 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QGraphicsPolygonItem_Adaptor *)cls)->cbs_extension_c2119_0 (arg1)); } @@ -1243,7 +1243,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPolygonItem_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1267,7 +1267,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPolygonItem_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -1291,7 +1291,7 @@ static void _call_cbs_hoverEnterEvent_3044_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPolygonItem_Adaptor *)cls)->cbs_hoverEnterEvent_3044_0 (arg1); } @@ -1315,7 +1315,7 @@ static void _call_cbs_hoverLeaveEvent_3044_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPolygonItem_Adaptor *)cls)->cbs_hoverLeaveEvent_3044_0 (arg1); } @@ -1339,7 +1339,7 @@ static void _call_cbs_hoverMoveEvent_3044_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPolygonItem_Adaptor *)cls)->cbs_hoverMoveEvent_3044_0 (arg1); } @@ -1363,7 +1363,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPolygonItem_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -1387,7 +1387,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QGraphicsPolygonItem_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -1410,7 +1410,7 @@ static void _call_cbs_isObscuredBy_c2614_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsPolygonItem_Adaptor *)cls)->cbs_isObscuredBy_c2614_0 (arg1)); } @@ -1435,8 +1435,8 @@ static void _call_cbs_itemChange_5658_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QVariant &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QGraphicsPolygonItem_Adaptor *)cls)->cbs_itemChange_5658_0 (arg1, arg2)); } @@ -1459,7 +1459,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPolygonItem_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -1483,7 +1483,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPolygonItem_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -1507,7 +1507,7 @@ static void _call_cbs_mouseDoubleClickEvent_3049_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPolygonItem_Adaptor *)cls)->cbs_mouseDoubleClickEvent_3049_0 (arg1); } @@ -1531,7 +1531,7 @@ static void _call_cbs_mouseMoveEvent_3049_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPolygonItem_Adaptor *)cls)->cbs_mouseMoveEvent_3049_0 (arg1); } @@ -1555,7 +1555,7 @@ static void _call_cbs_mousePressEvent_3049_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPolygonItem_Adaptor *)cls)->cbs_mousePressEvent_3049_0 (arg1); } @@ -1579,7 +1579,7 @@ static void _call_cbs_mouseReleaseEvent_3049_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPolygonItem_Adaptor *)cls)->cbs_mouseReleaseEvent_3049_0 (arg1); } @@ -1626,9 +1626,9 @@ static void _call_cbs_paint_6301_1 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QStyleOptionGraphicsItem *arg2 = args.read (heap); - QWidget *arg3 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionGraphicsItem *arg2 = gsi::arg_reader() (args, heap); + QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPolygonItem_Adaptor *)cls)->cbs_paint_6301_1 (arg1, arg2, arg3); } @@ -1682,7 +1682,7 @@ static void _call_cbs_sceneEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsPolygonItem_Adaptor *)cls)->cbs_sceneEvent_1217_0 (arg1)); } @@ -1707,8 +1707,8 @@ static void _call_cbs_sceneEventFilter_3028_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsItem *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsPolygonItem_Adaptor *)cls)->cbs_sceneEventFilter_3028_0 (arg1, arg2)); } @@ -1733,8 +1733,8 @@ static void _call_cbs_setExtension_4817_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPolygonItem_Adaptor *)cls)->cbs_setExtension_4817_0 (arg1, arg2); } @@ -1777,7 +1777,7 @@ static void _call_cbs_supportsExtension_c2806_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsPolygonItem_Adaptor *)cls)->cbs_supportsExtension_c2806_0 (arg1)); } @@ -1819,7 +1819,7 @@ static void _call_cbs_wheelEvent_3029_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneWheelEvent *arg1 = args.read (heap); + QGraphicsSceneWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPolygonItem_Adaptor *)cls)->cbs_wheelEvent_3029_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsProxyWidget.cc b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsProxyWidget.cc index 4eb1e0b61..1c3a74f7f 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsProxyWidget.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsProxyWidget.cc @@ -1532,7 +1532,7 @@ static void _call_cbs_advance_767_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsProxyWidget_Adaptor *)cls)->cbs_advance_767_0 (arg1); } @@ -1575,7 +1575,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsProxyWidget_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1599,7 +1599,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsProxyWidget_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1623,7 +1623,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsProxyWidget_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1649,8 +1649,8 @@ static void _call_cbs_collidesWithItem_c4977_1 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape), heap); ret.write ((bool)((QGraphicsProxyWidget_Adaptor *)cls)->cbs_collidesWithItem_c4977_1 (arg1, arg2)); } @@ -1675,8 +1675,8 @@ static void _call_cbs_collidesWithPath_c4877_1 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape), heap); ret.write ((bool)((QGraphicsProxyWidget_Adaptor *)cls)->cbs_collidesWithPath_c4877_1 (arg1, arg2)); } @@ -1699,7 +1699,7 @@ static void _call_cbs_contains_c1986_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsProxyWidget_Adaptor *)cls)->cbs_contains_c1986_0 (arg1)); } @@ -1722,7 +1722,7 @@ static void _call_cbs_contextMenuEvent_3674_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneContextMenuEvent *arg1 = args.read (heap); + QGraphicsSceneContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsProxyWidget_Adaptor *)cls)->cbs_contextMenuEvent_3674_0 (arg1); } @@ -1746,7 +1746,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsProxyWidget_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1788,7 +1788,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsProxyWidget_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -1812,7 +1812,7 @@ static void _call_cbs_dragEnterEvent_3315_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsProxyWidget_Adaptor *)cls)->cbs_dragEnterEvent_3315_0 (arg1); } @@ -1836,7 +1836,7 @@ static void _call_cbs_dragLeaveEvent_3315_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsProxyWidget_Adaptor *)cls)->cbs_dragLeaveEvent_3315_0 (arg1); } @@ -1860,7 +1860,7 @@ static void _call_cbs_dragMoveEvent_3315_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsProxyWidget_Adaptor *)cls)->cbs_dragMoveEvent_3315_0 (arg1); } @@ -1884,7 +1884,7 @@ static void _call_cbs_dropEvent_3315_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsProxyWidget_Adaptor *)cls)->cbs_dropEvent_3315_0 (arg1); } @@ -1922,7 +1922,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsProxyWidget_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1947,8 +1947,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsProxyWidget_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1971,7 +1971,7 @@ static void _call_cbs_extension_c2119_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVariant &arg1 = args.read (heap); + const QVariant &arg1 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QGraphicsProxyWidget_Adaptor *)cls)->cbs_extension_c2119_0 (arg1)); } @@ -1994,7 +1994,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsProxyWidget_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -2018,7 +2018,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsProxyWidget_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -2041,7 +2041,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsProxyWidget_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -2071,10 +2071,10 @@ static void _call_cbs_getContentsMargins_c4704_0 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double *arg1 = args.read (heap); - double *arg2 = args.read (heap); - double *arg3 = args.read (heap); - double *arg4 = args.read (heap); + double *arg1 = gsi::arg_reader() (args, heap); + double *arg2 = gsi::arg_reader() (args, heap); + double *arg3 = gsi::arg_reader() (args, heap); + double *arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsProxyWidget_Adaptor *)cls)->cbs_getContentsMargins_c4704_0 (arg1, arg2, arg3, arg4); } @@ -2098,7 +2098,7 @@ static void _call_cbs_grabKeyboardEvent_1217_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsProxyWidget_Adaptor *)cls)->cbs_grabKeyboardEvent_1217_0 (arg1); } @@ -2122,7 +2122,7 @@ static void _call_cbs_grabMouseEvent_1217_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsProxyWidget_Adaptor *)cls)->cbs_grabMouseEvent_1217_0 (arg1); } @@ -2146,7 +2146,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsProxyWidget_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -2170,7 +2170,7 @@ static void _call_cbs_hoverEnterEvent_3044_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsProxyWidget_Adaptor *)cls)->cbs_hoverEnterEvent_3044_0 (arg1); } @@ -2194,7 +2194,7 @@ static void _call_cbs_hoverLeaveEvent_3044_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsProxyWidget_Adaptor *)cls)->cbs_hoverLeaveEvent_3044_0 (arg1); } @@ -2218,7 +2218,7 @@ static void _call_cbs_hoverMoveEvent_3044_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsProxyWidget_Adaptor *)cls)->cbs_hoverMoveEvent_3044_0 (arg1); } @@ -2242,7 +2242,7 @@ static void _call_cbs_initStyleOption_c1865_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOption *arg1 = args.read (heap); + QStyleOption *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsProxyWidget_Adaptor *)cls)->cbs_initStyleOption_c1865_0 (arg1); } @@ -2266,7 +2266,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsProxyWidget_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2290,7 +2290,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QGraphicsProxyWidget_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2313,7 +2313,7 @@ static void _call_cbs_isObscuredBy_c2614_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsProxyWidget_Adaptor *)cls)->cbs_isObscuredBy_c2614_0 (arg1)); } @@ -2338,8 +2338,8 @@ static void _call_cbs_itemChange_5658_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QVariant &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QGraphicsProxyWidget_Adaptor *)cls)->cbs_itemChange_5658_0 (arg1, arg2)); } @@ -2362,7 +2362,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsProxyWidget_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2386,7 +2386,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsProxyWidget_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2410,7 +2410,7 @@ static void _call_cbs_mouseDoubleClickEvent_3049_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsProxyWidget_Adaptor *)cls)->cbs_mouseDoubleClickEvent_3049_0 (arg1); } @@ -2434,7 +2434,7 @@ static void _call_cbs_mouseMoveEvent_3049_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsProxyWidget_Adaptor *)cls)->cbs_mouseMoveEvent_3049_0 (arg1); } @@ -2458,7 +2458,7 @@ static void _call_cbs_mousePressEvent_3049_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsProxyWidget_Adaptor *)cls)->cbs_mousePressEvent_3049_0 (arg1); } @@ -2482,7 +2482,7 @@ static void _call_cbs_mouseReleaseEvent_3049_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsProxyWidget_Adaptor *)cls)->cbs_mouseReleaseEvent_3049_0 (arg1); } @@ -2506,7 +2506,7 @@ static void _call_cbs_moveEvent_2935_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMoveEvent *arg1 = args.read (heap); + QGraphicsSceneMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsProxyWidget_Adaptor *)cls)->cbs_moveEvent_2935_0 (arg1); } @@ -2585,9 +2585,9 @@ static void _call_cbs_paint_6301_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QStyleOptionGraphicsItem *arg2 = args.read (heap); - QWidget *arg3 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionGraphicsItem *arg2 = gsi::arg_reader() (args, heap); + QWidget *arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsProxyWidget_Adaptor *)cls)->cbs_paint_6301_0 (arg1, arg2, arg3); } @@ -2615,9 +2615,9 @@ static void _call_cbs_paintWindowFrame_6301_1 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QStyleOptionGraphicsItem *arg2 = args.read (heap); - QWidget *arg3 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionGraphicsItem *arg2 = gsi::arg_reader() (args, heap); + QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsProxyWidget_Adaptor *)cls)->cbs_paintWindowFrame_6301_1 (arg1, arg2, arg3); } @@ -2692,8 +2692,8 @@ static void _call_cbs_propertyChange_4036_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QGraphicsProxyWidget_Adaptor *)cls)->cbs_propertyChange_4036_0 (arg1, arg2)); } @@ -2749,7 +2749,7 @@ static void _call_cbs_resizeEvent_3154_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneResizeEvent *arg1 = args.read (heap); + QGraphicsSceneResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsProxyWidget_Adaptor *)cls)->cbs_resizeEvent_3154_0 (arg1); } @@ -2801,7 +2801,7 @@ static void _call_cbs_sceneEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsProxyWidget_Adaptor *)cls)->cbs_sceneEvent_1217_0 (arg1)); } @@ -2826,8 +2826,8 @@ static void _call_cbs_sceneEventFilter_3028_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsItem *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsProxyWidget_Adaptor *)cls)->cbs_sceneEventFilter_3028_0 (arg1, arg2)); } @@ -2866,8 +2866,8 @@ static void _call_cbs_setExtension_4817_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsProxyWidget_Adaptor *)cls)->cbs_setExtension_4817_0 (arg1, arg2); } @@ -2891,7 +2891,7 @@ static void _call_cbs_setGeometry_1862_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsProxyWidget_Adaptor *)cls)->cbs_setGeometry_1862_0 (arg1); } @@ -2972,7 +2972,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsProxyWidget_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2998,8 +2998,8 @@ static void _call_cbs_sizeHint_c3330_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QSizeF &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QSizeF &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QSizeF(), heap); ret.write ((QSizeF)((QGraphicsProxyWidget_Adaptor *)cls)->cbs_sizeHint_c3330_1 (arg1, arg2)); } @@ -3022,7 +3022,7 @@ static void _call_cbs_supportsExtension_c2806_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsProxyWidget_Adaptor *)cls)->cbs_supportsExtension_c2806_0 (arg1)); } @@ -3045,7 +3045,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsProxyWidget_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -3088,7 +3088,7 @@ static void _call_cbs_ungrabKeyboardEvent_1217_0 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsProxyWidget_Adaptor *)cls)->cbs_ungrabKeyboardEvent_1217_0 (arg1); } @@ -3112,7 +3112,7 @@ static void _call_cbs_ungrabMouseEvent_1217_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsProxyWidget_Adaptor *)cls)->cbs_ungrabMouseEvent_1217_0 (arg1); } @@ -3170,7 +3170,7 @@ static void _call_cbs_wheelEvent_3029_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneWheelEvent *arg1 = args.read (heap); + QGraphicsSceneWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsProxyWidget_Adaptor *)cls)->cbs_wheelEvent_3029_0 (arg1); } @@ -3194,7 +3194,7 @@ static void _call_cbs_windowFrameEvent_1217_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsProxyWidget_Adaptor *)cls)->cbs_windowFrameEvent_1217_0 (arg1)); } @@ -3217,7 +3217,7 @@ static void _call_cbs_windowFrameSectionAt_c1986_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); ret.write::target_type > ((qt_gsi::Converter::target_type)((QGraphicsProxyWidget_Adaptor *)cls)->cbs_windowFrameSectionAt_c1986_0 (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsRectItem.cc b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsRectItem.cc index 2f6e047de..c00a6ae49 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsRectItem.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsRectItem.cc @@ -1026,7 +1026,7 @@ static void _call_cbs_advance_767_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsRectItem_Adaptor *)cls)->cbs_advance_767_0 (arg1); } @@ -1071,8 +1071,8 @@ static void _call_cbs_collidesWithItem_c4977_1 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape), heap); ret.write ((bool)((QGraphicsRectItem_Adaptor *)cls)->cbs_collidesWithItem_c4977_1 (arg1, arg2)); } @@ -1097,8 +1097,8 @@ static void _call_cbs_collidesWithPath_c4877_1 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape), heap); ret.write ((bool)((QGraphicsRectItem_Adaptor *)cls)->cbs_collidesWithPath_c4877_1 (arg1, arg2)); } @@ -1121,7 +1121,7 @@ static void _call_cbs_contains_c1986_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsRectItem_Adaptor *)cls)->cbs_contains_c1986_0 (arg1)); } @@ -1144,7 +1144,7 @@ static void _call_cbs_contextMenuEvent_3674_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneContextMenuEvent *arg1 = args.read (heap); + QGraphicsSceneContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsRectItem_Adaptor *)cls)->cbs_contextMenuEvent_3674_0 (arg1); } @@ -1168,7 +1168,7 @@ static void _call_cbs_dragEnterEvent_3315_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsRectItem_Adaptor *)cls)->cbs_dragEnterEvent_3315_0 (arg1); } @@ -1192,7 +1192,7 @@ static void _call_cbs_dragLeaveEvent_3315_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsRectItem_Adaptor *)cls)->cbs_dragLeaveEvent_3315_0 (arg1); } @@ -1216,7 +1216,7 @@ static void _call_cbs_dragMoveEvent_3315_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsRectItem_Adaptor *)cls)->cbs_dragMoveEvent_3315_0 (arg1); } @@ -1240,7 +1240,7 @@ static void _call_cbs_dropEvent_3315_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsRectItem_Adaptor *)cls)->cbs_dropEvent_3315_0 (arg1); } @@ -1264,7 +1264,7 @@ static void _call_cbs_extension_c2119_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVariant &arg1 = args.read (heap); + const QVariant &arg1 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QGraphicsRectItem_Adaptor *)cls)->cbs_extension_c2119_0 (arg1)); } @@ -1287,7 +1287,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsRectItem_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1311,7 +1311,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsRectItem_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -1335,7 +1335,7 @@ static void _call_cbs_hoverEnterEvent_3044_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsRectItem_Adaptor *)cls)->cbs_hoverEnterEvent_3044_0 (arg1); } @@ -1359,7 +1359,7 @@ static void _call_cbs_hoverLeaveEvent_3044_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsRectItem_Adaptor *)cls)->cbs_hoverLeaveEvent_3044_0 (arg1); } @@ -1383,7 +1383,7 @@ static void _call_cbs_hoverMoveEvent_3044_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsRectItem_Adaptor *)cls)->cbs_hoverMoveEvent_3044_0 (arg1); } @@ -1407,7 +1407,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsRectItem_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -1431,7 +1431,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QGraphicsRectItem_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -1454,7 +1454,7 @@ static void _call_cbs_isObscuredBy_c2614_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsRectItem_Adaptor *)cls)->cbs_isObscuredBy_c2614_0 (arg1)); } @@ -1479,8 +1479,8 @@ static void _call_cbs_itemChange_5658_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QVariant &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QGraphicsRectItem_Adaptor *)cls)->cbs_itemChange_5658_0 (arg1, arg2)); } @@ -1503,7 +1503,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsRectItem_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -1527,7 +1527,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsRectItem_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -1551,7 +1551,7 @@ static void _call_cbs_mouseDoubleClickEvent_3049_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsRectItem_Adaptor *)cls)->cbs_mouseDoubleClickEvent_3049_0 (arg1); } @@ -1575,7 +1575,7 @@ static void _call_cbs_mouseMoveEvent_3049_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsRectItem_Adaptor *)cls)->cbs_mouseMoveEvent_3049_0 (arg1); } @@ -1599,7 +1599,7 @@ static void _call_cbs_mousePressEvent_3049_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsRectItem_Adaptor *)cls)->cbs_mousePressEvent_3049_0 (arg1); } @@ -1623,7 +1623,7 @@ static void _call_cbs_mouseReleaseEvent_3049_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsRectItem_Adaptor *)cls)->cbs_mouseReleaseEvent_3049_0 (arg1); } @@ -1670,9 +1670,9 @@ static void _call_cbs_paint_6301_1 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QStyleOptionGraphicsItem *arg2 = args.read (heap); - QWidget *arg3 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionGraphicsItem *arg2 = gsi::arg_reader() (args, heap); + QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsRectItem_Adaptor *)cls)->cbs_paint_6301_1 (arg1, arg2, arg3); } @@ -1726,7 +1726,7 @@ static void _call_cbs_sceneEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsRectItem_Adaptor *)cls)->cbs_sceneEvent_1217_0 (arg1)); } @@ -1751,8 +1751,8 @@ static void _call_cbs_sceneEventFilter_3028_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsItem *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsRectItem_Adaptor *)cls)->cbs_sceneEventFilter_3028_0 (arg1, arg2)); } @@ -1777,8 +1777,8 @@ static void _call_cbs_setExtension_4817_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsRectItem_Adaptor *)cls)->cbs_setExtension_4817_0 (arg1, arg2); } @@ -1821,7 +1821,7 @@ static void _call_cbs_supportsExtension_c2806_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsRectItem_Adaptor *)cls)->cbs_supportsExtension_c2806_0 (arg1)); } @@ -1863,7 +1863,7 @@ static void _call_cbs_wheelEvent_3029_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneWheelEvent *arg1 = args.read (heap); + QGraphicsSceneWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsRectItem_Adaptor *)cls)->cbs_wheelEvent_3029_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsRotation.cc b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsRotation.cc index 5fddd6678..f90221b59 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsRotation.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsRotation.cc @@ -548,7 +548,7 @@ static void _call_cbs_applyTo_c1556_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMatrix4x4 *arg1 = args.read (heap); + QMatrix4x4 *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsRotation_Adaptor *)cls)->cbs_applyTo_c1556_0 (arg1); } @@ -586,7 +586,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsRotation_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -610,7 +610,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsRotation_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -652,7 +652,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsRotation_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -676,7 +676,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsRotation_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -701,8 +701,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsRotation_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -771,7 +771,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsRotation_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsScale.cc b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsScale.cc index 4a513e4a0..67055ab96 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsScale.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsScale.cc @@ -543,7 +543,7 @@ static void _call_cbs_applyTo_c1556_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMatrix4x4 *arg1 = args.read (heap); + QMatrix4x4 *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScale_Adaptor *)cls)->cbs_applyTo_c1556_0 (arg1); } @@ -567,7 +567,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScale_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -591,7 +591,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScale_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -633,7 +633,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScale_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -657,7 +657,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsScale_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -682,8 +682,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsScale_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -766,7 +766,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScale_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsScene.cc b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsScene.cc index c6e22b381..d8af42601 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsScene.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsScene.cc @@ -2626,7 +2626,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScene_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -2650,7 +2650,7 @@ static void _call_cbs_contextMenuEvent_3674_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneContextMenuEvent *arg1 = args.read (heap); + QGraphicsSceneContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScene_Adaptor *)cls)->cbs_contextMenuEvent_3674_0 (arg1); } @@ -2674,7 +2674,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScene_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -2716,7 +2716,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScene_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -2740,7 +2740,7 @@ static void _call_cbs_dragEnterEvent_3315_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScene_Adaptor *)cls)->cbs_dragEnterEvent_3315_0 (arg1); } @@ -2764,7 +2764,7 @@ static void _call_cbs_dragLeaveEvent_3315_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScene_Adaptor *)cls)->cbs_dragLeaveEvent_3315_0 (arg1); } @@ -2788,7 +2788,7 @@ static void _call_cbs_dragMoveEvent_3315_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScene_Adaptor *)cls)->cbs_dragMoveEvent_3315_0 (arg1); } @@ -2814,8 +2814,8 @@ static void _call_cbs_drawBackground_3180_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QRectF &arg2 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QRectF &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScene_Adaptor *)cls)->cbs_drawBackground_3180_0 (arg1, arg2); } @@ -2841,8 +2841,8 @@ static void _call_cbs_drawForeground_3180_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QRectF &arg2 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QRectF &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScene_Adaptor *)cls)->cbs_drawForeground_3180_0 (arg1, arg2); } @@ -2866,7 +2866,7 @@ static void _call_cbs_dropEvent_3315_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScene_Adaptor *)cls)->cbs_dropEvent_3315_0 (arg1); } @@ -2890,7 +2890,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsScene_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -2915,8 +2915,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsScene_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -2939,7 +2939,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScene_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -2981,7 +2981,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScene_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -3005,7 +3005,7 @@ static void _call_cbs_helpEvent_2921_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHelpEvent *arg1 = args.read (heap); + QGraphicsSceneHelpEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScene_Adaptor *)cls)->cbs_helpEvent_2921_0 (arg1); } @@ -3029,7 +3029,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScene_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -3053,7 +3053,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QGraphicsScene_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -3076,7 +3076,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScene_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -3100,7 +3100,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScene_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -3124,7 +3124,7 @@ static void _call_cbs_mouseDoubleClickEvent_3049_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScene_Adaptor *)cls)->cbs_mouseDoubleClickEvent_3049_0 (arg1); } @@ -3148,7 +3148,7 @@ static void _call_cbs_mouseMoveEvent_3049_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScene_Adaptor *)cls)->cbs_mouseMoveEvent_3049_0 (arg1); } @@ -3172,7 +3172,7 @@ static void _call_cbs_mousePressEvent_3049_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScene_Adaptor *)cls)->cbs_mousePressEvent_3049_0 (arg1); } @@ -3196,7 +3196,7 @@ static void _call_cbs_mouseReleaseEvent_3049_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScene_Adaptor *)cls)->cbs_mouseReleaseEvent_3049_0 (arg1); } @@ -3284,7 +3284,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScene_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -3308,7 +3308,7 @@ static void _call_cbs_wheelEvent_3029_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneWheelEvent *arg1 = args.read (heap); + QGraphicsSceneWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScene_Adaptor *)cls)->cbs_wheelEvent_3029_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsSimpleTextItem.cc b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsSimpleTextItem.cc index 43ca22cdb..7b34aa107 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsSimpleTextItem.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsSimpleTextItem.cc @@ -983,7 +983,7 @@ static void _call_cbs_advance_767_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSimpleTextItem_Adaptor *)cls)->cbs_advance_767_0 (arg1); } @@ -1028,8 +1028,8 @@ static void _call_cbs_collidesWithItem_c4977_1 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape), heap); ret.write ((bool)((QGraphicsSimpleTextItem_Adaptor *)cls)->cbs_collidesWithItem_c4977_1 (arg1, arg2)); } @@ -1054,8 +1054,8 @@ static void _call_cbs_collidesWithPath_c4877_1 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape), heap); ret.write ((bool)((QGraphicsSimpleTextItem_Adaptor *)cls)->cbs_collidesWithPath_c4877_1 (arg1, arg2)); } @@ -1078,7 +1078,7 @@ static void _call_cbs_contains_c1986_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsSimpleTextItem_Adaptor *)cls)->cbs_contains_c1986_0 (arg1)); } @@ -1101,7 +1101,7 @@ static void _call_cbs_contextMenuEvent_3674_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneContextMenuEvent *arg1 = args.read (heap); + QGraphicsSceneContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSimpleTextItem_Adaptor *)cls)->cbs_contextMenuEvent_3674_0 (arg1); } @@ -1125,7 +1125,7 @@ static void _call_cbs_dragEnterEvent_3315_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSimpleTextItem_Adaptor *)cls)->cbs_dragEnterEvent_3315_0 (arg1); } @@ -1149,7 +1149,7 @@ static void _call_cbs_dragLeaveEvent_3315_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSimpleTextItem_Adaptor *)cls)->cbs_dragLeaveEvent_3315_0 (arg1); } @@ -1173,7 +1173,7 @@ static void _call_cbs_dragMoveEvent_3315_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSimpleTextItem_Adaptor *)cls)->cbs_dragMoveEvent_3315_0 (arg1); } @@ -1197,7 +1197,7 @@ static void _call_cbs_dropEvent_3315_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSimpleTextItem_Adaptor *)cls)->cbs_dropEvent_3315_0 (arg1); } @@ -1221,7 +1221,7 @@ static void _call_cbs_extension_c2119_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVariant &arg1 = args.read (heap); + const QVariant &arg1 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QGraphicsSimpleTextItem_Adaptor *)cls)->cbs_extension_c2119_0 (arg1)); } @@ -1244,7 +1244,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSimpleTextItem_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1268,7 +1268,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSimpleTextItem_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -1292,7 +1292,7 @@ static void _call_cbs_hoverEnterEvent_3044_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSimpleTextItem_Adaptor *)cls)->cbs_hoverEnterEvent_3044_0 (arg1); } @@ -1316,7 +1316,7 @@ static void _call_cbs_hoverLeaveEvent_3044_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSimpleTextItem_Adaptor *)cls)->cbs_hoverLeaveEvent_3044_0 (arg1); } @@ -1340,7 +1340,7 @@ static void _call_cbs_hoverMoveEvent_3044_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSimpleTextItem_Adaptor *)cls)->cbs_hoverMoveEvent_3044_0 (arg1); } @@ -1364,7 +1364,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSimpleTextItem_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -1388,7 +1388,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QGraphicsSimpleTextItem_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -1411,7 +1411,7 @@ static void _call_cbs_isObscuredBy_c2614_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsSimpleTextItem_Adaptor *)cls)->cbs_isObscuredBy_c2614_0 (arg1)); } @@ -1436,8 +1436,8 @@ static void _call_cbs_itemChange_5658_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QVariant &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QGraphicsSimpleTextItem_Adaptor *)cls)->cbs_itemChange_5658_0 (arg1, arg2)); } @@ -1460,7 +1460,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSimpleTextItem_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -1484,7 +1484,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSimpleTextItem_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -1508,7 +1508,7 @@ static void _call_cbs_mouseDoubleClickEvent_3049_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSimpleTextItem_Adaptor *)cls)->cbs_mouseDoubleClickEvent_3049_0 (arg1); } @@ -1532,7 +1532,7 @@ static void _call_cbs_mouseMoveEvent_3049_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSimpleTextItem_Adaptor *)cls)->cbs_mouseMoveEvent_3049_0 (arg1); } @@ -1556,7 +1556,7 @@ static void _call_cbs_mousePressEvent_3049_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSimpleTextItem_Adaptor *)cls)->cbs_mousePressEvent_3049_0 (arg1); } @@ -1580,7 +1580,7 @@ static void _call_cbs_mouseReleaseEvent_3049_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSimpleTextItem_Adaptor *)cls)->cbs_mouseReleaseEvent_3049_0 (arg1); } @@ -1627,9 +1627,9 @@ static void _call_cbs_paint_6301_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QStyleOptionGraphicsItem *arg2 = args.read (heap); - QWidget *arg3 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionGraphicsItem *arg2 = gsi::arg_reader() (args, heap); + QWidget *arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSimpleTextItem_Adaptor *)cls)->cbs_paint_6301_0 (arg1, arg2, arg3); } @@ -1683,7 +1683,7 @@ static void _call_cbs_sceneEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsSimpleTextItem_Adaptor *)cls)->cbs_sceneEvent_1217_0 (arg1)); } @@ -1708,8 +1708,8 @@ static void _call_cbs_sceneEventFilter_3028_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsItem *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsSimpleTextItem_Adaptor *)cls)->cbs_sceneEventFilter_3028_0 (arg1, arg2)); } @@ -1734,8 +1734,8 @@ static void _call_cbs_setExtension_4817_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSimpleTextItem_Adaptor *)cls)->cbs_setExtension_4817_0 (arg1, arg2); } @@ -1778,7 +1778,7 @@ static void _call_cbs_supportsExtension_c2806_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsSimpleTextItem_Adaptor *)cls)->cbs_supportsExtension_c2806_0 (arg1)); } @@ -1820,7 +1820,7 @@ static void _call_cbs_wheelEvent_3029_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneWheelEvent *arg1 = args.read (heap); + QGraphicsSceneWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSimpleTextItem_Adaptor *)cls)->cbs_wheelEvent_3029_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsTextItem.cc b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsTextItem.cc index c15195ac1..a11f5a236 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsTextItem.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsTextItem.cc @@ -1603,7 +1603,7 @@ static void _call_cbs_advance_767_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsTextItem_Adaptor *)cls)->cbs_advance_767_0 (arg1); } @@ -1646,7 +1646,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsTextItem_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1672,8 +1672,8 @@ static void _call_cbs_collidesWithItem_c4977_1 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape), heap); ret.write ((bool)((QGraphicsTextItem_Adaptor *)cls)->cbs_collidesWithItem_c4977_1 (arg1, arg2)); } @@ -1698,8 +1698,8 @@ static void _call_cbs_collidesWithPath_c4877_1 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape), heap); ret.write ((bool)((QGraphicsTextItem_Adaptor *)cls)->cbs_collidesWithPath_c4877_1 (arg1, arg2)); } @@ -1722,7 +1722,7 @@ static void _call_cbs_contains_c1986_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsTextItem_Adaptor *)cls)->cbs_contains_c1986_0 (arg1)); } @@ -1745,7 +1745,7 @@ static void _call_cbs_contextMenuEvent_3674_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneContextMenuEvent *arg1 = args.read (heap); + QGraphicsSceneContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsTextItem_Adaptor *)cls)->cbs_contextMenuEvent_3674_0 (arg1); } @@ -1769,7 +1769,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsTextItem_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1811,7 +1811,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsTextItem_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -1835,7 +1835,7 @@ static void _call_cbs_dragEnterEvent_3315_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsTextItem_Adaptor *)cls)->cbs_dragEnterEvent_3315_0 (arg1); } @@ -1859,7 +1859,7 @@ static void _call_cbs_dragLeaveEvent_3315_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsTextItem_Adaptor *)cls)->cbs_dragLeaveEvent_3315_0 (arg1); } @@ -1883,7 +1883,7 @@ static void _call_cbs_dragMoveEvent_3315_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsTextItem_Adaptor *)cls)->cbs_dragMoveEvent_3315_0 (arg1); } @@ -1907,7 +1907,7 @@ static void _call_cbs_dropEvent_3315_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsTextItem_Adaptor *)cls)->cbs_dropEvent_3315_0 (arg1); } @@ -1945,7 +1945,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsTextItem_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1970,8 +1970,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsTextItem_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1994,7 +1994,7 @@ static void _call_cbs_extension_c2119_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVariant &arg1 = args.read (heap); + const QVariant &arg1 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QGraphicsTextItem_Adaptor *)cls)->cbs_extension_c2119_0 (arg1)); } @@ -2017,7 +2017,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsTextItem_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -2041,7 +2041,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsTextItem_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -2065,7 +2065,7 @@ static void _call_cbs_hoverEnterEvent_3044_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsTextItem_Adaptor *)cls)->cbs_hoverEnterEvent_3044_0 (arg1); } @@ -2089,7 +2089,7 @@ static void _call_cbs_hoverLeaveEvent_3044_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsTextItem_Adaptor *)cls)->cbs_hoverLeaveEvent_3044_0 (arg1); } @@ -2113,7 +2113,7 @@ static void _call_cbs_hoverMoveEvent_3044_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsTextItem_Adaptor *)cls)->cbs_hoverMoveEvent_3044_0 (arg1); } @@ -2137,7 +2137,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsTextItem_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2161,7 +2161,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QGraphicsTextItem_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2184,7 +2184,7 @@ static void _call_cbs_isObscuredBy_c2614_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsTextItem_Adaptor *)cls)->cbs_isObscuredBy_c2614_0 (arg1)); } @@ -2209,8 +2209,8 @@ static void _call_cbs_itemChange_5658_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QVariant &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QGraphicsTextItem_Adaptor *)cls)->cbs_itemChange_5658_0 (arg1, arg2)); } @@ -2233,7 +2233,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsTextItem_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2257,7 +2257,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsTextItem_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2317,7 +2317,7 @@ static void _call_cbs_mouseDoubleClickEvent_3049_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsTextItem_Adaptor *)cls)->cbs_mouseDoubleClickEvent_3049_0 (arg1); } @@ -2341,7 +2341,7 @@ static void _call_cbs_mouseMoveEvent_3049_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsTextItem_Adaptor *)cls)->cbs_mouseMoveEvent_3049_0 (arg1); } @@ -2365,7 +2365,7 @@ static void _call_cbs_mousePressEvent_3049_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsTextItem_Adaptor *)cls)->cbs_mousePressEvent_3049_0 (arg1); } @@ -2389,7 +2389,7 @@ static void _call_cbs_mouseReleaseEvent_3049_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsTextItem_Adaptor *)cls)->cbs_mouseReleaseEvent_3049_0 (arg1); } @@ -2450,9 +2450,9 @@ static void _call_cbs_paint_6301_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QStyleOptionGraphicsItem *arg2 = args.read (heap); - QWidget *arg3 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionGraphicsItem *arg2 = gsi::arg_reader() (args, heap); + QWidget *arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsTextItem_Adaptor *)cls)->cbs_paint_6301_0 (arg1, arg2, arg3); } @@ -2566,7 +2566,7 @@ static void _call_cbs_sceneEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsTextItem_Adaptor *)cls)->cbs_sceneEvent_1217_0 (arg1)); } @@ -2591,8 +2591,8 @@ static void _call_cbs_sceneEventFilter_3028_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsItem *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsTextItem_Adaptor *)cls)->cbs_sceneEventFilter_3028_0 (arg1, arg2)); } @@ -2631,8 +2631,8 @@ static void _call_cbs_setExtension_4817_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsTextItem_Adaptor *)cls)->cbs_setExtension_4817_0 (arg1, arg2); } @@ -2675,7 +2675,7 @@ static void _call_cbs_supportsExtension_c2806_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsTextItem_Adaptor *)cls)->cbs_supportsExtension_c2806_0 (arg1)); } @@ -2698,7 +2698,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsTextItem_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2755,7 +2755,7 @@ static void _call_cbs_wheelEvent_3029_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneWheelEvent *arg1 = args.read (heap); + QGraphicsSceneWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsTextItem_Adaptor *)cls)->cbs_wheelEvent_3029_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsTransform.cc b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsTransform.cc index e320ea59b..10bf1e5ba 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsTransform.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsTransform.cc @@ -381,7 +381,7 @@ static void _call_cbs_applyTo_c1556_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMatrix4x4 *arg1 = args.read (heap); + QMatrix4x4 *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsTransform_Adaptor *)cls)->cbs_applyTo_c1556_0 (arg1); } @@ -405,7 +405,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsTransform_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -429,7 +429,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsTransform_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -471,7 +471,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsTransform_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -495,7 +495,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsTransform_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -520,8 +520,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsTransform_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -576,7 +576,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsTransform_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsView.cc b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsView.cc index 0e7ba95a3..36e7a188b 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsView.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsView.cc @@ -2872,7 +2872,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -2896,7 +2896,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -2920,7 +2920,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -2944,7 +2944,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -2968,7 +2968,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -3035,7 +3035,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -3099,7 +3099,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -3123,7 +3123,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -3147,7 +3147,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -3171,7 +3171,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -3197,8 +3197,8 @@ static void _call_cbs_drawBackground_3180_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QRectF &arg2 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QRectF &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView_Adaptor *)cls)->cbs_drawBackground_3180_0 (arg1, arg2); } @@ -3224,8 +3224,8 @@ static void _call_cbs_drawForeground_3180_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QRectF &arg2 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QRectF &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView_Adaptor *)cls)->cbs_drawForeground_3180_0 (arg1, arg2); } @@ -3268,7 +3268,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -3292,7 +3292,7 @@ static void _call_cbs_enabledChange_864_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView_Adaptor *)cls)->cbs_enabledChange_864_0 (arg1); } @@ -3316,7 +3316,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -3340,7 +3340,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsView_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -3365,8 +3365,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsView_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -3389,7 +3389,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -3427,7 +3427,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsView_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -3450,7 +3450,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -3488,7 +3488,7 @@ static void _call_cbs_fontChange_1801_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView_Adaptor *)cls)->cbs_fontChange_1801_0 (arg1); } @@ -3512,7 +3512,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QGraphicsView_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -3535,7 +3535,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -3559,7 +3559,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -3583,7 +3583,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QGraphicsView_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -3606,7 +3606,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -3630,7 +3630,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -3674,7 +3674,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -3698,7 +3698,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QGraphicsView_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -3740,7 +3740,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -3764,7 +3764,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -3788,7 +3788,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -3812,7 +3812,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -3836,7 +3836,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -3879,7 +3879,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -3903,7 +3903,7 @@ static void _call_cbs_paletteChange_2113_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPalette &arg1 = args.read (heap); + const QPalette &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView_Adaptor *)cls)->cbs_paletteChange_2113_0 (arg1); } @@ -3960,7 +3960,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -3986,8 +3986,8 @@ static void _call_cbs_scrollContentsBy_1426_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView_Adaptor *)cls)->cbs_scrollContentsBy_1426_0 (arg1, arg2); } @@ -4072,7 +4072,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -4115,7 +4115,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -4158,7 +4158,7 @@ static void _call_cbs_styleChange_1228_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyle &arg1 = args.read (heap); + QStyle &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView_Adaptor *)cls)->cbs_styleChange_1228_0 (arg1); } @@ -4182,7 +4182,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -4206,7 +4206,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -4245,7 +4245,7 @@ static void _call_cbs_viewportEvent_1217_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsView_Adaptor *)cls)->cbs_viewportEvent_1217_0 (arg1)); } @@ -4268,7 +4268,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } @@ -4292,7 +4292,7 @@ static void _call_cbs_windowActivationChange_864_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView_Adaptor *)cls)->cbs_windowActivationChange_864_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsWidget.cc b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsWidget.cc index 1d8ded41c..6260c6004 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsWidget.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsWidget.cc @@ -2536,7 +2536,7 @@ static void _call_cbs_advance_767_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget_Adaptor *)cls)->cbs_advance_767_0 (arg1); } @@ -2579,7 +2579,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -2603,7 +2603,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -2627,7 +2627,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -2653,8 +2653,8 @@ static void _call_cbs_collidesWithItem_c4977_1 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape), heap); ret.write ((bool)((QGraphicsWidget_Adaptor *)cls)->cbs_collidesWithItem_c4977_1 (arg1, arg2)); } @@ -2679,8 +2679,8 @@ static void _call_cbs_collidesWithPath_c4877_1 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape), heap); ret.write ((bool)((QGraphicsWidget_Adaptor *)cls)->cbs_collidesWithPath_c4877_1 (arg1, arg2)); } @@ -2703,7 +2703,7 @@ static void _call_cbs_contains_c1986_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsWidget_Adaptor *)cls)->cbs_contains_c1986_0 (arg1)); } @@ -2726,7 +2726,7 @@ static void _call_cbs_contextMenuEvent_3674_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneContextMenuEvent *arg1 = args.read (heap); + QGraphicsSceneContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget_Adaptor *)cls)->cbs_contextMenuEvent_3674_0 (arg1); } @@ -2750,7 +2750,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -2792,7 +2792,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -2816,7 +2816,7 @@ static void _call_cbs_dragEnterEvent_3315_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget_Adaptor *)cls)->cbs_dragEnterEvent_3315_0 (arg1); } @@ -2840,7 +2840,7 @@ static void _call_cbs_dragLeaveEvent_3315_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget_Adaptor *)cls)->cbs_dragLeaveEvent_3315_0 (arg1); } @@ -2864,7 +2864,7 @@ static void _call_cbs_dragMoveEvent_3315_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget_Adaptor *)cls)->cbs_dragMoveEvent_3315_0 (arg1); } @@ -2888,7 +2888,7 @@ static void _call_cbs_dropEvent_3315_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget_Adaptor *)cls)->cbs_dropEvent_3315_0 (arg1); } @@ -2926,7 +2926,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsWidget_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -2951,8 +2951,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsWidget_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -2975,7 +2975,7 @@ static void _call_cbs_extension_c2119_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVariant &arg1 = args.read (heap); + const QVariant &arg1 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QGraphicsWidget_Adaptor *)cls)->cbs_extension_c2119_0 (arg1)); } @@ -2998,7 +2998,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -3022,7 +3022,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsWidget_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -3045,7 +3045,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -3075,10 +3075,10 @@ static void _call_cbs_getContentsMargins_c4704_0 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double *arg1 = args.read (heap); - double *arg2 = args.read (heap); - double *arg3 = args.read (heap); - double *arg4 = args.read (heap); + double *arg1 = gsi::arg_reader() (args, heap); + double *arg2 = gsi::arg_reader() (args, heap); + double *arg3 = gsi::arg_reader() (args, heap); + double *arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget_Adaptor *)cls)->cbs_getContentsMargins_c4704_0 (arg1, arg2, arg3, arg4); } @@ -3102,7 +3102,7 @@ static void _call_cbs_grabKeyboardEvent_1217_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget_Adaptor *)cls)->cbs_grabKeyboardEvent_1217_0 (arg1); } @@ -3126,7 +3126,7 @@ static void _call_cbs_grabMouseEvent_1217_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget_Adaptor *)cls)->cbs_grabMouseEvent_1217_0 (arg1); } @@ -3150,7 +3150,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -3174,7 +3174,7 @@ static void _call_cbs_hoverEnterEvent_3044_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget_Adaptor *)cls)->cbs_hoverEnterEvent_3044_0 (arg1); } @@ -3198,7 +3198,7 @@ static void _call_cbs_hoverLeaveEvent_3044_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget_Adaptor *)cls)->cbs_hoverLeaveEvent_3044_0 (arg1); } @@ -3222,7 +3222,7 @@ static void _call_cbs_hoverMoveEvent_3044_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget_Adaptor *)cls)->cbs_hoverMoveEvent_3044_0 (arg1); } @@ -3246,7 +3246,7 @@ static void _call_cbs_initStyleOption_c1865_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOption *arg1 = args.read (heap); + QStyleOption *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget_Adaptor *)cls)->cbs_initStyleOption_c1865_0 (arg1); } @@ -3270,7 +3270,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -3294,7 +3294,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QGraphicsWidget_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -3317,7 +3317,7 @@ static void _call_cbs_isObscuredBy_c2614_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsWidget_Adaptor *)cls)->cbs_isObscuredBy_c2614_0 (arg1)); } @@ -3342,8 +3342,8 @@ static void _call_cbs_itemChange_5658_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QVariant &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QGraphicsWidget_Adaptor *)cls)->cbs_itemChange_5658_0 (arg1, arg2)); } @@ -3366,7 +3366,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -3390,7 +3390,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -3414,7 +3414,7 @@ static void _call_cbs_mouseDoubleClickEvent_3049_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget_Adaptor *)cls)->cbs_mouseDoubleClickEvent_3049_0 (arg1); } @@ -3438,7 +3438,7 @@ static void _call_cbs_mouseMoveEvent_3049_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget_Adaptor *)cls)->cbs_mouseMoveEvent_3049_0 (arg1); } @@ -3462,7 +3462,7 @@ static void _call_cbs_mousePressEvent_3049_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget_Adaptor *)cls)->cbs_mousePressEvent_3049_0 (arg1); } @@ -3486,7 +3486,7 @@ static void _call_cbs_mouseReleaseEvent_3049_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget_Adaptor *)cls)->cbs_mouseReleaseEvent_3049_0 (arg1); } @@ -3510,7 +3510,7 @@ static void _call_cbs_moveEvent_2935_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMoveEvent *arg1 = args.read (heap); + QGraphicsSceneMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget_Adaptor *)cls)->cbs_moveEvent_2935_0 (arg1); } @@ -3571,9 +3571,9 @@ static void _call_cbs_paint_6301_1 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QStyleOptionGraphicsItem *arg2 = args.read (heap); - QWidget *arg3 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionGraphicsItem *arg2 = gsi::arg_reader() (args, heap); + QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget_Adaptor *)cls)->cbs_paint_6301_1 (arg1, arg2, arg3); } @@ -3601,9 +3601,9 @@ static void _call_cbs_paintWindowFrame_6301_1 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QStyleOptionGraphicsItem *arg2 = args.read (heap); - QWidget *arg3 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionGraphicsItem *arg2 = gsi::arg_reader() (args, heap); + QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget_Adaptor *)cls)->cbs_paintWindowFrame_6301_1 (arg1, arg2, arg3); } @@ -3678,8 +3678,8 @@ static void _call_cbs_propertyChange_4036_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QGraphicsWidget_Adaptor *)cls)->cbs_propertyChange_4036_0 (arg1, arg2)); } @@ -3735,7 +3735,7 @@ static void _call_cbs_resizeEvent_3154_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneResizeEvent *arg1 = args.read (heap); + QGraphicsSceneResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget_Adaptor *)cls)->cbs_resizeEvent_3154_0 (arg1); } @@ -3787,7 +3787,7 @@ static void _call_cbs_sceneEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsWidget_Adaptor *)cls)->cbs_sceneEvent_1217_0 (arg1)); } @@ -3812,8 +3812,8 @@ static void _call_cbs_sceneEventFilter_3028_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsItem *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsWidget_Adaptor *)cls)->cbs_sceneEventFilter_3028_0 (arg1, arg2)); } @@ -3852,8 +3852,8 @@ static void _call_cbs_setExtension_4817_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget_Adaptor *)cls)->cbs_setExtension_4817_0 (arg1, arg2); } @@ -3877,7 +3877,7 @@ static void _call_cbs_setGeometry_1862_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget_Adaptor *)cls)->cbs_setGeometry_1862_0 (arg1); } @@ -3958,7 +3958,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -3984,8 +3984,8 @@ static void _call_cbs_sizeHint_c3330_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QSizeF &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QSizeF &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QSizeF(), heap); ret.write ((QSizeF)((QGraphicsWidget_Adaptor *)cls)->cbs_sizeHint_c3330_1 (arg1, arg2)); } @@ -4008,7 +4008,7 @@ static void _call_cbs_supportsExtension_c2806_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsWidget_Adaptor *)cls)->cbs_supportsExtension_c2806_0 (arg1)); } @@ -4031,7 +4031,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -4074,7 +4074,7 @@ static void _call_cbs_ungrabKeyboardEvent_1217_0 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget_Adaptor *)cls)->cbs_ungrabKeyboardEvent_1217_0 (arg1); } @@ -4098,7 +4098,7 @@ static void _call_cbs_ungrabMouseEvent_1217_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget_Adaptor *)cls)->cbs_ungrabMouseEvent_1217_0 (arg1); } @@ -4156,7 +4156,7 @@ static void _call_cbs_wheelEvent_3029_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneWheelEvent *arg1 = args.read (heap); + QGraphicsSceneWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget_Adaptor *)cls)->cbs_wheelEvent_3029_0 (arg1); } @@ -4180,7 +4180,7 @@ static void _call_cbs_windowFrameEvent_1217_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsWidget_Adaptor *)cls)->cbs_windowFrameEvent_1217_0 (arg1)); } @@ -4203,7 +4203,7 @@ static void _call_cbs_windowFrameSectionAt_c1986_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); ret.write::target_type > ((qt_gsi::Converter::target_type)((QGraphicsWidget_Adaptor *)cls)->cbs_windowFrameSectionAt_c1986_0 (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQGridLayout.cc b/src/gsiqt/qt4/QtGui/gsiDeclQGridLayout.cc index 830c2abde..5a5ce6ee9 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQGridLayout.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQGridLayout.cc @@ -1589,7 +1589,8 @@ static void _call_cbs_addItem_1740_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QLayoutItem *arg1 = args.read (heap); + QLayoutItem *arg1 = gsi::arg_reader() (args, heap); + qt_gsi::qt_keep (arg1); __SUPPRESS_UNUSED_WARNING(ret); ((QGridLayout_Adaptor *)cls)->cbs_addItem_1740_0 (arg1); } @@ -1631,7 +1632,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGridLayout_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1674,7 +1675,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGridLayout_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1716,7 +1717,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGridLayout_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -1740,7 +1741,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGridLayout_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1765,8 +1766,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGridLayout_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1846,7 +1847,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QGridLayout_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -1869,7 +1870,7 @@ static void _call_cbs_indexOf_c1315_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QGridLayout_Adaptor *)cls)->cbs_indexOf_c1315_0 (arg1)); } @@ -1931,7 +1932,7 @@ static void _call_cbs_itemAt_c767_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QLayoutItem *)((QGridLayout_Adaptor *)cls)->cbs_itemAt_c767_0 (arg1)); } @@ -1992,7 +1993,7 @@ static void _call_cbs_minimumHeightForWidth_c767_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QGridLayout_Adaptor *)cls)->cbs_minimumHeightForWidth_c767_0 (arg1)); } @@ -2066,7 +2067,7 @@ static void _call_cbs_setGeometry_1792_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGridLayout_Adaptor *)cls)->cbs_setGeometry_1792_0 (arg1); } @@ -2128,7 +2129,7 @@ static void _call_cbs_takeAt_767_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QLayoutItem *)((QGridLayout_Adaptor *)cls)->cbs_takeAt_767_0 (arg1)); } @@ -2151,7 +2152,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGridLayout_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQGroupBox.cc b/src/gsiqt/qt4/QtGui/gsiDeclQGroupBox.cc index 852a5070f..f02b73ba9 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQGroupBox.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQGroupBox.cc @@ -1311,7 +1311,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGroupBox_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1335,7 +1335,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGroupBox_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1359,7 +1359,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGroupBox_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1401,7 +1401,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGroupBox_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1425,7 +1425,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGroupBox_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1492,7 +1492,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGroupBox_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1556,7 +1556,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGroupBox_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -1580,7 +1580,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGroupBox_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1604,7 +1604,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGroupBox_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1628,7 +1628,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGroupBox_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1652,7 +1652,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGroupBox_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1676,7 +1676,7 @@ static void _call_cbs_enabledChange_864_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGroupBox_Adaptor *)cls)->cbs_enabledChange_864_0 (arg1); } @@ -1700,7 +1700,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGroupBox_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -1724,7 +1724,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGroupBox_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1749,8 +1749,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGroupBox_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1773,7 +1773,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGroupBox_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1811,7 +1811,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGroupBox_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -1834,7 +1834,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGroupBox_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -1872,7 +1872,7 @@ static void _call_cbs_fontChange_1801_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGroupBox_Adaptor *)cls)->cbs_fontChange_1801_0 (arg1); } @@ -1896,7 +1896,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QGroupBox_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -1919,7 +1919,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGroupBox_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -1962,7 +1962,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGroupBox_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -1986,7 +1986,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QGroupBox_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2009,7 +2009,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGroupBox_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2033,7 +2033,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGroupBox_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2077,7 +2077,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGroupBox_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2101,7 +2101,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QGroupBox_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2143,7 +2143,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGroupBox_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2167,7 +2167,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGroupBox_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2191,7 +2191,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGroupBox_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2215,7 +2215,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGroupBox_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2239,7 +2239,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGroupBox_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2282,7 +2282,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGroupBox_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2306,7 +2306,7 @@ static void _call_cbs_paletteChange_2113_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPalette &arg1 = args.read (heap); + const QPalette &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGroupBox_Adaptor *)cls)->cbs_paletteChange_2113_0 (arg1); } @@ -2363,7 +2363,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGroupBox_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2401,7 +2401,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGroupBox_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2425,7 +2425,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGroupBox_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2468,7 +2468,7 @@ static void _call_cbs_styleChange_1228_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyle &arg1 = args.read (heap); + QStyle &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGroupBox_Adaptor *)cls)->cbs_styleChange_1228_0 (arg1); } @@ -2492,7 +2492,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGroupBox_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2516,7 +2516,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGroupBox_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2573,7 +2573,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGroupBox_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } @@ -2597,7 +2597,7 @@ static void _call_cbs_windowActivationChange_864_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGroupBox_Adaptor *)cls)->cbs_windowActivationChange_864_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQHBoxLayout.cc b/src/gsiqt/qt4/QtGui/gsiDeclQHBoxLayout.cc index b707e0084..5e1911a96 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQHBoxLayout.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQHBoxLayout.cc @@ -726,7 +726,8 @@ static void _call_cbs_addItem_1740_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QLayoutItem *arg1 = args.read (heap); + QLayoutItem *arg1 = gsi::arg_reader() (args, heap); + qt_gsi::qt_keep (arg1); __SUPPRESS_UNUSED_WARNING(ret); ((QHBoxLayout_Adaptor *)cls)->cbs_addItem_1740_0 (arg1); } @@ -768,7 +769,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHBoxLayout_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -811,7 +812,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHBoxLayout_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -853,7 +854,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHBoxLayout_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -877,7 +878,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QHBoxLayout_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -902,8 +903,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QHBoxLayout_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -983,7 +984,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QHBoxLayout_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -1006,7 +1007,7 @@ static void _call_cbs_indexOf_c1315_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QHBoxLayout_Adaptor *)cls)->cbs_indexOf_c1315_0 (arg1)); } @@ -1091,7 +1092,7 @@ static void _call_cbs_itemAt_c767_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QLayoutItem *)((QHBoxLayout_Adaptor *)cls)->cbs_itemAt_c767_0 (arg1)); } @@ -1152,7 +1153,7 @@ static void _call_cbs_minimumHeightForWidth_c767_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QHBoxLayout_Adaptor *)cls)->cbs_minimumHeightForWidth_c767_0 (arg1)); } @@ -1226,7 +1227,7 @@ static void _call_cbs_setGeometry_1792_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHBoxLayout_Adaptor *)cls)->cbs_setGeometry_1792_0 (arg1); } @@ -1288,7 +1289,7 @@ static void _call_cbs_takeAt_767_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QLayoutItem *)((QHBoxLayout_Adaptor *)cls)->cbs_takeAt_767_0 (arg1)); } @@ -1311,7 +1312,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHBoxLayout_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQHeaderView.cc b/src/gsiqt/qt4/QtGui/gsiDeclQHeaderView.cc index 9853a14a5..84c4ff9a6 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQHeaderView.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQHeaderView.cc @@ -3151,7 +3151,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -3193,7 +3193,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -3217,7 +3217,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -3261,8 +3261,8 @@ static void _call_cbs_closeEditor_4926_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_closeEditor_4926_0 (arg1, arg2); } @@ -3286,7 +3286,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -3310,7 +3310,7 @@ static void _call_cbs_commitData_1315_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_commitData_1315_0 (arg1); } @@ -3334,7 +3334,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -3385,8 +3385,8 @@ static void _call_cbs_currentChanged_4682_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_currentChanged_4682_0 (arg1, arg2); } @@ -3428,7 +3428,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -3454,8 +3454,8 @@ static void _call_cbs_dataChanged_4682_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_dataChanged_4682_0 (arg1, arg2); } @@ -3533,7 +3533,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -3610,7 +3610,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -3634,7 +3634,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -3658,7 +3658,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -3701,7 +3701,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -3743,9 +3743,9 @@ static void _call_cbs_edit_6773_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - QEvent *arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + QEvent *arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QHeaderView_Adaptor *)cls)->cbs_edit_6773_0 (arg1, arg2, arg3)); } @@ -3768,7 +3768,7 @@ static void _call_cbs_editorDestroyed_1302_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_editorDestroyed_1302_0 (arg1); } @@ -3792,7 +3792,7 @@ static void _call_cbs_enabledChange_864_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_enabledChange_864_0 (arg1); } @@ -3816,7 +3816,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -3858,7 +3858,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QHeaderView_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -3883,8 +3883,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QHeaderView_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -3922,7 +3922,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -3960,7 +3960,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QHeaderView_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -3983,7 +3983,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -4021,7 +4021,7 @@ static void _call_cbs_fontChange_1801_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_fontChange_1801_0 (arg1); } @@ -4059,7 +4059,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QHeaderView_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -4082,7 +4082,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -4125,7 +4125,7 @@ static void _call_cbs_horizontalScrollbarAction_767_0 (const qt_gsi::GenericMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_horizontalScrollbarAction_767_0 (arg1); } @@ -4149,7 +4149,7 @@ static void _call_cbs_horizontalScrollbarValueChanged_767_0 (const qt_gsi::Gener { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_horizontalScrollbarValueChanged_767_0 (arg1); } @@ -4187,7 +4187,7 @@ static void _call_cbs_indexAt_c1916_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QHeaderView_Adaptor *)cls)->cbs_indexAt_c1916_0 (arg1)); } @@ -4281,7 +4281,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -4305,7 +4305,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QHeaderView_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -4328,7 +4328,7 @@ static void _call_cbs_isIndexHidden_c2395_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QHeaderView_Adaptor *)cls)->cbs_isIndexHidden_c2395_0 (arg1)); } @@ -4351,7 +4351,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -4375,7 +4375,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -4399,7 +4399,7 @@ static void _call_cbs_keyboardSearch_2025_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_keyboardSearch_2025_0 (arg1); } @@ -4443,7 +4443,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -4467,7 +4467,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QHeaderView_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -4509,7 +4509,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -4533,7 +4533,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -4557,7 +4557,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -4581,7 +4581,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -4607,8 +4607,8 @@ static void _call_cbs_moveCursor_6476_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); - QFlags arg2 = args.read > (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); ret.write ((QModelIndex)((QHeaderView_Adaptor *)cls)->cbs_moveCursor_6476_0 (arg1, arg2)); } @@ -4631,7 +4631,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -4674,7 +4674,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -4702,9 +4702,9 @@ static void _call_cbs_paintSection_c3769_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QRect &arg2 = args.read (heap); - int arg3 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QRect &arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_paintSection_c3769_0 (arg1, arg2, arg3); } @@ -4728,7 +4728,7 @@ static void _call_cbs_paletteChange_2113_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPalette &arg1 = args.read (heap); + const QPalette &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_paletteChange_2113_0 (arg1); } @@ -4823,7 +4823,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -4866,9 +4866,9 @@ static void _call_cbs_rowsAboutToBeRemoved_3713_0 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_rowsAboutToBeRemoved_3713_0 (arg1, arg2, arg3); } @@ -4896,9 +4896,9 @@ static void _call_cbs_rowsInserted_3713_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_rowsInserted_3713_0 (arg1, arg2, arg3); } @@ -4939,8 +4939,8 @@ static void _call_cbs_scrollContentsBy_1426_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_scrollContentsBy_1426_0 (arg1, arg2); } @@ -4988,8 +4988,8 @@ static void _call_cbs_scrollTo_5576_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_scrollTo_5576_0 (arg1, arg2); } @@ -5193,7 +5193,7 @@ static void _call_cbs_sectionSizeFromContents_c767_0 (const qt_gsi::GenericMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QSize)((QHeaderView_Adaptor *)cls)->cbs_sectionSizeFromContents_c767_0 (arg1)); } @@ -5307,8 +5307,8 @@ static void _call_cbs_selectionChanged_5346_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QItemSelection &arg1 = args.read (heap); - const QItemSelection &arg2 = args.read (heap); + const QItemSelection &arg1 = gsi::arg_reader() (args, heap); + const QItemSelection &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_selectionChanged_5346_0 (arg1, arg2); } @@ -5334,8 +5334,8 @@ static void _call_cbs_selectionCommand_c4199_1 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QEvent *arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QEvent *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write > ((QFlags)((QHeaderView_Adaptor *)cls)->cbs_selectionCommand_c4199_1 (arg1, arg2)); } @@ -5410,7 +5410,7 @@ static void _call_cbs_setModel_2419_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractItemModel *arg1 = args.read (heap); + QAbstractItemModel *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_setModel_2419_0 (arg1); } @@ -5434,7 +5434,7 @@ static void _call_cbs_setRootIndex_2395_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_setRootIndex_2395_0 (arg1); } @@ -5460,8 +5460,8 @@ static void _call_cbs_setSelection_6155_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); - QFlags arg2 = args.read > (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_setSelection_6155_0 (arg1, arg2); } @@ -5485,7 +5485,7 @@ static void _call_cbs_setSelectionModel_2533_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QItemSelectionModel *arg1 = args.read (heap); + QItemSelectionModel *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_setSelectionModel_2533_0 (arg1); } @@ -5594,7 +5594,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -5637,7 +5637,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -5680,7 +5680,7 @@ static void _call_cbs_sizeHintForColumn_c767_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QHeaderView_Adaptor *)cls)->cbs_sizeHintForColumn_c767_0 (arg1)); } @@ -5703,7 +5703,7 @@ static void _call_cbs_sizeHintForRow_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QHeaderView_Adaptor *)cls)->cbs_sizeHintForRow_c767_0 (arg1)); } @@ -5762,7 +5762,7 @@ static void _call_cbs_startDrag_2456_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_startDrag_2456_0 (arg1); } @@ -5815,7 +5815,7 @@ static void _call_cbs_styleChange_1228_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyle &arg1 = args.read (heap); + QStyle &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_styleChange_1228_0 (arg1); } @@ -5839,7 +5839,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -5863,7 +5863,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -6000,7 +6000,7 @@ static void _call_cbs_verticalScrollbarAction_767_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_verticalScrollbarAction_767_0 (arg1); } @@ -6024,7 +6024,7 @@ static void _call_cbs_verticalScrollbarValueChanged_767_0 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_verticalScrollbarValueChanged_767_0 (arg1); } @@ -6095,7 +6095,7 @@ static void _call_cbs_viewportEvent_1217_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QHeaderView_Adaptor *)cls)->cbs_viewportEvent_1217_0 (arg1)); } @@ -6118,7 +6118,7 @@ static void _call_cbs_visualRect_c2395_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QHeaderView_Adaptor *)cls)->cbs_visualRect_c2395_0 (arg1)); } @@ -6141,7 +6141,7 @@ static void _call_cbs_visualRegionForSelection_c2727_0 (const qt_gsi::GenericMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QItemSelection &arg1 = args.read (heap); + const QItemSelection &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRegion)((QHeaderView_Adaptor *)cls)->cbs_visualRegionForSelection_c2727_0 (arg1)); } @@ -6164,7 +6164,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } @@ -6188,7 +6188,7 @@ static void _call_cbs_windowActivationChange_864_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_windowActivationChange_864_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQIconEngine.cc b/src/gsiqt/qt4/QtGui/gsiDeclQIconEngine.cc index 2fa98255c..1c6a16c4f 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQIconEngine.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQIconEngine.cc @@ -326,9 +326,9 @@ static void _call_cbs_actualSize_4543_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSize &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg3 = args.read::target_type & > (heap); + const QSize &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg3 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QSize)((QIconEngine_Adaptor *)cls)->cbs_actualSize_4543_0 (arg1, arg2, arg3)); } @@ -357,10 +357,10 @@ static void _call_cbs_addFile_6460_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QSize &arg2 = args.read (heap); - const qt_gsi::Converter::target_type & arg3 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg4 = args.read::target_type & > (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QSize &arg2 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg3 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg4 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QIconEngine_Adaptor *)cls)->cbs_addFile_6460_0 (arg1, arg2, arg3, arg4); } @@ -388,9 +388,9 @@ static void _call_cbs_addPixmap_4755_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPixmap &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg3 = args.read::target_type & > (heap); + const QPixmap &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg3 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QIconEngine_Adaptor *)cls)->cbs_addPixmap_4755_0 (arg1, arg2, arg3); } @@ -420,10 +420,10 @@ static void _call_cbs_paint_5848_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QRect &arg2 = args.read (heap); - const qt_gsi::Converter::target_type & arg3 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg4 = args.read::target_type & > (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QRect &arg2 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg3 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg4 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QIconEngine_Adaptor *)cls)->cbs_paint_5848_0 (arg1, arg2, arg3, arg4); } @@ -451,9 +451,9 @@ static void _call_cbs_pixmap_4543_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSize &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg3 = args.read::target_type & > (heap); + const QSize &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg3 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QPixmap)((QIconEngine_Adaptor *)cls)->cbs_pixmap_4543_0 (arg1, arg2, arg3)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQIconEnginePlugin.cc b/src/gsiqt/qt4/QtGui/gsiDeclQIconEnginePlugin.cc index 7423bf96c..56299503c 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQIconEnginePlugin.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQIconEnginePlugin.cc @@ -407,7 +407,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QIconEnginePlugin_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -431,7 +431,7 @@ static void _call_cbs_create_2025_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QIconEngine *)((QIconEnginePlugin_Adaptor *)cls)->cbs_create_2025_0 (arg1)); } @@ -454,7 +454,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QIconEnginePlugin_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -496,7 +496,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QIconEnginePlugin_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -520,7 +520,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QIconEnginePlugin_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -545,8 +545,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QIconEnginePlugin_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -620,7 +620,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QIconEnginePlugin_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQIconEnginePluginV2.cc b/src/gsiqt/qt4/QtGui/gsiDeclQIconEnginePluginV2.cc index 858c4c75c..18a8fc4af 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQIconEnginePluginV2.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQIconEnginePluginV2.cc @@ -407,7 +407,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QIconEnginePluginV2_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -431,7 +431,7 @@ static void _call_cbs_create_2025_1 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); ret.write ((QIconEngineV2 *)((QIconEnginePluginV2_Adaptor *)cls)->cbs_create_2025_1 (arg1)); } @@ -454,7 +454,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QIconEnginePluginV2_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -496,7 +496,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QIconEnginePluginV2_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -520,7 +520,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QIconEnginePluginV2_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -545,8 +545,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QIconEnginePluginV2_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -620,7 +620,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QIconEnginePluginV2_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQIconEngineV2.cc b/src/gsiqt/qt4/QtGui/gsiDeclQIconEngineV2.cc index 224361e85..fd17e16f5 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQIconEngineV2.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQIconEngineV2.cc @@ -389,9 +389,9 @@ static void _call_cbs_actualSize_4543_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSize &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg3 = args.read::target_type & > (heap); + const QSize &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg3 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QSize)((QIconEngineV2_Adaptor *)cls)->cbs_actualSize_4543_0 (arg1, arg2, arg3)); } @@ -420,10 +420,10 @@ static void _call_cbs_addFile_6460_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QSize &arg2 = args.read (heap); - const qt_gsi::Converter::target_type & arg3 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg4 = args.read::target_type & > (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QSize &arg2 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg3 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg4 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QIconEngineV2_Adaptor *)cls)->cbs_addFile_6460_0 (arg1, arg2, arg3, arg4); } @@ -451,9 +451,9 @@ static void _call_cbs_addPixmap_4755_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPixmap &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg3 = args.read::target_type & > (heap); + const QPixmap &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg3 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QIconEngineV2_Adaptor *)cls)->cbs_addPixmap_4755_0 (arg1, arg2, arg3); } @@ -521,10 +521,10 @@ static void _call_cbs_paint_5848_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QRect &arg2 = args.read (heap); - const qt_gsi::Converter::target_type & arg3 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg4 = args.read::target_type & > (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QRect &arg2 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg3 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg4 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QIconEngineV2_Adaptor *)cls)->cbs_paint_5848_0 (arg1, arg2, arg3, arg4); } @@ -552,9 +552,9 @@ static void _call_cbs_pixmap_4543_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSize &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg3 = args.read::target_type & > (heap); + const QSize &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg3 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QPixmap)((QIconEngineV2_Adaptor *)cls)->cbs_pixmap_4543_0 (arg1, arg2, arg3)); } @@ -577,7 +577,7 @@ static void _call_cbs_read_1697_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDataStream &arg1 = args.read (heap); + QDataStream &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QIconEngineV2_Adaptor *)cls)->cbs_read_1697_0 (arg1)); } @@ -602,8 +602,8 @@ static void _call_cbs_virtual_hook_1715_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - void *arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QIconEngineV2_Adaptor *)cls)->cbs_virtual_hook_1715_0 (arg1, arg2); } @@ -627,7 +627,7 @@ static void _call_cbs_write_c1697_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDataStream &arg1 = args.read (heap); + QDataStream &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QIconEngineV2_Adaptor *)cls)->cbs_write_c1697_0 (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQImage.cc b/src/gsiqt/qt4/QtGui/gsiDeclQImage.cc index e9951491a..f5264ca88 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQImage.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQImage.cc @@ -1951,7 +1951,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QImage_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQImageIOHandler.cc b/src/gsiqt/qt4/QtGui/gsiDeclQImageIOHandler.cc index 7f80aef4f..98de90479 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQImageIOHandler.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQImageIOHandler.cc @@ -746,7 +746,7 @@ static void _call_cbs_jumpToImage_767_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QImageIOHandler_Adaptor *)cls)->cbs_jumpToImage_767_0 (arg1)); } @@ -845,7 +845,7 @@ static void _call_cbs_option_c3086_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QImageIOHandler_Adaptor *)cls)->cbs_option_c3086_0 (arg1)); } @@ -868,7 +868,7 @@ static void _call_cbs_read_1186_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QImage *arg1 = args.read (heap); + QImage *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QImageIOHandler_Adaptor *)cls)->cbs_read_1186_0 (arg1)); } @@ -893,8 +893,8 @@ static void _call_cbs_setOption_5097_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QVariant &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QImageIOHandler_Adaptor *)cls)->cbs_setOption_5097_0 (arg1, arg2); } @@ -918,7 +918,7 @@ static void _call_cbs_supportsOption_c3086_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((bool)((QImageIOHandler_Adaptor *)cls)->cbs_supportsOption_c3086_0 (arg1)); } @@ -941,7 +941,7 @@ static void _call_cbs_write_1877_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QImage &arg1 = args.read (heap); + const QImage &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QImageIOHandler_Adaptor *)cls)->cbs_write_1877_0 (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQImageIOPlugin.cc b/src/gsiqt/qt4/QtGui/gsiDeclQImageIOPlugin.cc index 6710f9e20..c2e51186c 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQImageIOPlugin.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQImageIOPlugin.cc @@ -455,8 +455,8 @@ static void _call_cbs_capabilities_c3648_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QIODevice *arg1 = args.read (heap); - const QByteArray &arg2 = args.read (heap); + QIODevice *arg1 = gsi::arg_reader() (args, heap); + const QByteArray &arg2 = gsi::arg_reader() (args, heap); ret.write > ((QFlags)((QImageIOPlugin_Adaptor *)cls)->cbs_capabilities_c3648_0 (arg1, arg2)); } @@ -479,7 +479,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QImageIOPlugin_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -505,8 +505,8 @@ static void _call_cbs_create_c3648_1 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QIODevice *arg1 = args.read (heap); - const QByteArray &arg2 = args.read (heap); + QIODevice *arg1 = gsi::arg_reader() (args, heap); + const QByteArray &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QByteArray(), heap); ret.write ((QImageIOHandler *)((QImageIOPlugin_Adaptor *)cls)->cbs_create_c3648_1 (arg1, arg2)); } @@ -529,7 +529,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QImageIOPlugin_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -571,7 +571,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QImageIOPlugin_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -595,7 +595,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QImageIOPlugin_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -620,8 +620,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QImageIOPlugin_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -695,7 +695,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QImageIOPlugin_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQInputContext.cc b/src/gsiqt/qt4/QtGui/gsiDeclQInputContext.cc index d76ff81bd..8567b332d 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQInputContext.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQInputContext.cc @@ -794,7 +794,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputContext_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -818,7 +818,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputContext_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -860,7 +860,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputContext_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -884,7 +884,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QInputContext_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -909,8 +909,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QInputContext_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -933,7 +933,7 @@ static void _call_cbs_filterEvent_1912_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QEvent *arg1 = args.read (heap); + const QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QInputContext_Adaptor *)cls)->cbs_filterEvent_1912_0 (arg1)); } @@ -1034,8 +1034,8 @@ static void _call_cbs_mouseHandler_2397_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - QMouseEvent *arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + QMouseEvent *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputContext_Adaptor *)cls)->cbs_mouseHandler_2397_0 (arg1, arg2); } @@ -1111,7 +1111,7 @@ static void _call_cbs_setFocusWidget_1315_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputContext_Adaptor *)cls)->cbs_setFocusWidget_1315_0 (arg1); } @@ -1135,7 +1135,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputContext_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -1179,7 +1179,7 @@ static void _call_cbs_widgetDestroyed_1315_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputContext_Adaptor *)cls)->cbs_widgetDestroyed_1315_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQInputContextPlugin.cc b/src/gsiqt/qt4/QtGui/gsiDeclQInputContextPlugin.cc index eff328ee5..b5284f90c 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQInputContextPlugin.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQInputContextPlugin.cc @@ -518,7 +518,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputContextPlugin_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -542,7 +542,7 @@ static void _call_cbs_create_2025_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QInputContext *)((QInputContextPlugin_Adaptor *)cls)->cbs_create_2025_0 (arg1)); } @@ -565,7 +565,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputContextPlugin_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -589,7 +589,7 @@ static void _call_cbs_description_2025_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QInputContextPlugin_Adaptor *)cls)->cbs_description_2025_0 (arg1)); } @@ -630,7 +630,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputContextPlugin_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -654,7 +654,7 @@ static void _call_cbs_displayName_2025_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QInputContextPlugin_Adaptor *)cls)->cbs_displayName_2025_0 (arg1)); } @@ -677,7 +677,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QInputContextPlugin_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -702,8 +702,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QInputContextPlugin_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -745,7 +745,7 @@ static void _call_cbs_languages_2025_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QStringList)((QInputContextPlugin_Adaptor *)cls)->cbs_languages_2025_0 (arg1)); } @@ -800,7 +800,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputContextPlugin_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQInputDialog.cc b/src/gsiqt/qt4/QtGui/gsiDeclQInputDialog.cc index 0342c078c..6732c0f29 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQInputDialog.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQInputDialog.cc @@ -2263,7 +2263,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -2306,7 +2306,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -2330,7 +2330,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -2354,7 +2354,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -2378,7 +2378,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -2445,7 +2445,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -2509,7 +2509,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -2533,7 +2533,7 @@ static void _call_cbs_done_767_0 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog_Adaptor *)cls)->cbs_done_767_0 (arg1); } @@ -2593,7 +2593,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -2617,7 +2617,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -2641,7 +2641,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -2665,7 +2665,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -2689,7 +2689,7 @@ static void _call_cbs_enabledChange_864_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog_Adaptor *)cls)->cbs_enabledChange_864_0 (arg1); } @@ -2713,7 +2713,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -2737,7 +2737,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QInputDialog_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -2762,8 +2762,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QInputDialog_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -2804,7 +2804,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -2842,7 +2842,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QInputDialog_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -2865,7 +2865,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -2903,7 +2903,7 @@ static void _call_cbs_fontChange_1801_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog_Adaptor *)cls)->cbs_fontChange_1801_0 (arg1); } @@ -2927,7 +2927,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QInputDialog_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -2950,7 +2950,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -2974,7 +2974,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2998,7 +2998,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QInputDialog_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -3057,7 +3057,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -3081,7 +3081,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -3125,7 +3125,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -3149,7 +3149,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QInputDialog_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -3191,7 +3191,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -3215,7 +3215,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -3239,7 +3239,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -3263,7 +3263,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -3287,7 +3287,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -3330,7 +3330,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -3354,7 +3354,7 @@ static void _call_cbs_paletteChange_2113_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPalette &arg1 = args.read (heap); + const QPalette &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog_Adaptor *)cls)->cbs_paletteChange_2113_0 (arg1); } @@ -3445,7 +3445,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -3483,7 +3483,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -3507,7 +3507,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -3550,7 +3550,7 @@ static void _call_cbs_styleChange_1228_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyle &arg1 = args.read (heap); + QStyle &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog_Adaptor *)cls)->cbs_styleChange_1228_0 (arg1); } @@ -3574,7 +3574,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -3634,7 +3634,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -3673,7 +3673,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } @@ -3697,7 +3697,7 @@ static void _call_cbs_windowActivationChange_864_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog_Adaptor *)cls)->cbs_windowActivationChange_864_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQIntValidator.cc b/src/gsiqt/qt4/QtGui/gsiDeclQIntValidator.cc index f937f61ca..a3204fb88 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQIntValidator.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQIntValidator.cc @@ -537,7 +537,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QIntValidator_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -561,7 +561,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QIntValidator_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -603,7 +603,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QIntValidator_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -627,7 +627,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QIntValidator_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -652,8 +652,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QIntValidator_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -676,7 +676,7 @@ static void _call_cbs_fixup_c1330_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QString &arg1 = args.read (heap); + QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QIntValidator_Adaptor *)cls)->cbs_fixup_c1330_0 (arg1); } @@ -734,8 +734,8 @@ static void _call_cbs_setRange_1426_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QIntValidator_Adaptor *)cls)->cbs_setRange_1426_0 (arg1, arg2); } @@ -759,7 +759,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QIntValidator_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -785,8 +785,8 @@ static void _call_cbs_validate_c2171_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QString &arg1 = args.read (heap); - int &arg2 = args.read (heap); + QString &arg1 = gsi::arg_reader() (args, heap); + int &arg2 = gsi::arg_reader() (args, heap); ret.write::target_type > ((qt_gsi::Converter::target_type)((QIntValidator_Adaptor *)cls)->cbs_validate_c2171_0 (arg1, arg2)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQItemDelegate.cc b/src/gsiqt/qt4/QtGui/gsiDeclQItemDelegate.cc index 6c5cc1d99..577df56b3 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQItemDelegate.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQItemDelegate.cc @@ -840,7 +840,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QItemDelegate_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -907,9 +907,9 @@ static void _call_cbs_createEditor_c6860_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - const QStyleOptionViewItem &arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionViewItem &arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); ret.write ((QWidget *)((QItemDelegate_Adaptor *)cls)->cbs_createEditor_c6860_0 (arg1, arg2, arg3)); } @@ -932,7 +932,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QItemDelegate_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -995,7 +995,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QItemDelegate_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -1081,10 +1081,10 @@ static void _call_cbs_drawCheck_c8000_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QStyleOptionViewItem &arg2 = args.read (heap); - const QRect &arg3 = args.read (heap); - const qt_gsi::Converter::target_type & arg4 = args.read::target_type & > (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionViewItem &arg2 = gsi::arg_reader() (args, heap); + const QRect &arg3 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg4 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QItemDelegate_Adaptor *)cls)->cbs_drawCheck_c8000_0 (arg1, arg2, arg3, arg4); } @@ -1114,10 +1114,10 @@ static void _call_cbs_drawDecoration_c8277_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QStyleOptionViewItem &arg2 = args.read (heap); - const QRect &arg3 = args.read (heap); - const QPixmap &arg4 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionViewItem &arg2 = gsi::arg_reader() (args, heap); + const QRect &arg3 = gsi::arg_reader() (args, heap); + const QPixmap &arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QItemDelegate_Adaptor *)cls)->cbs_drawDecoration_c8277_0 (arg1, arg2, arg3, arg4); } @@ -1147,10 +1147,10 @@ static void _call_cbs_drawDisplay_c8285_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QStyleOptionViewItem &arg2 = args.read (heap); - const QRect &arg3 = args.read (heap); - const QString &arg4 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionViewItem &arg2 = gsi::arg_reader() (args, heap); + const QRect &arg3 = gsi::arg_reader() (args, heap); + const QString &arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QItemDelegate_Adaptor *)cls)->cbs_drawDisplay_c8285_0 (arg1, arg2, arg3, arg4); } @@ -1178,9 +1178,9 @@ static void _call_cbs_drawFocus_c6368_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QStyleOptionViewItem &arg2 = args.read (heap); - const QRect &arg3 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionViewItem &arg2 = gsi::arg_reader() (args, heap); + const QRect &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QItemDelegate_Adaptor *)cls)->cbs_drawFocus_c6368_0 (arg1, arg2, arg3); } @@ -1210,10 +1210,10 @@ static void _call_cbs_editorEvent_9073_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); - QAbstractItemModel *arg2 = args.read (heap); - const QStyleOptionViewItem &arg3 = args.read (heap); - const QModelIndex &arg4 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); + QAbstractItemModel *arg2 = gsi::arg_reader() (args, heap); + const QStyleOptionViewItem &arg3 = gsi::arg_reader() (args, heap); + const QModelIndex &arg4 = gsi::arg_reader() (args, heap); ret.write ((bool)((QItemDelegate_Adaptor *)cls)->cbs_editorEvent_9073_0 (arg1, arg2, arg3, arg4)); } @@ -1236,7 +1236,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QItemDelegate_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1261,8 +1261,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QItemDelegate_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1289,9 +1289,9 @@ static void _call_cbs_paint_c6971_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QStyleOptionViewItem &arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionViewItem &arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QItemDelegate_Adaptor *)cls)->cbs_paint_c6971_0 (arg1, arg2, arg3); } @@ -1397,8 +1397,8 @@ static void _call_cbs_setEditorData_c3602_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QItemDelegate_Adaptor *)cls)->cbs_setEditorData_c3602_0 (arg1, arg2); } @@ -1426,9 +1426,9 @@ static void _call_cbs_setModelData_c5913_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - QAbstractItemModel *arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + QAbstractItemModel *arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QItemDelegate_Adaptor *)cls)->cbs_setModelData_c5913_0 (arg1, arg2, arg3); } @@ -1475,8 +1475,8 @@ static void _call_cbs_sizeHint_c5653_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStyleOptionViewItem &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + const QStyleOptionViewItem &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); ret.write ((QSize)((QItemDelegate_Adaptor *)cls)->cbs_sizeHint_c5653_0 (arg1, arg2)); } @@ -1544,7 +1544,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QItemDelegate_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -1572,9 +1572,9 @@ static void _call_cbs_updateEditorGeometry_c6860_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - const QStyleOptionViewItem &arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionViewItem &arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QItemDelegate_Adaptor *)cls)->cbs_updateEditorGeometry_c6860_0 (arg1, arg2, arg3); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQItemEditorCreatorBase.cc b/src/gsiqt/qt4/QtGui/gsiDeclQItemEditorCreatorBase.cc index e6cf12057..fd3bf0858 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQItemEditorCreatorBase.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQItemEditorCreatorBase.cc @@ -165,7 +165,7 @@ static void _call_cbs_createWidget_c1315_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); ret.write ((QWidget *)((QItemEditorCreatorBase_Adaptor *)cls)->cbs_createWidget_c1315_0 (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQItemEditorFactory.cc b/src/gsiqt/qt4/QtGui/gsiDeclQItemEditorFactory.cc index c46c56b6b..263cf71e1 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQItemEditorFactory.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQItemEditorFactory.cc @@ -235,8 +235,8 @@ static void _call_cbs_createEditor_c2983_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - QWidget *arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + QWidget *arg2 = gsi::arg_reader() (args, heap); ret.write ((QWidget *)((QItemEditorFactory_Adaptor *)cls)->cbs_createEditor_c2983_0 (arg1, arg2)); } @@ -259,7 +259,7 @@ static void _call_cbs_valuePropertyName_c1776_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QByteArray)((QItemEditorFactory_Adaptor *)cls)->cbs_valuePropertyName_c1776_0 (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQItemSelectionModel.cc b/src/gsiqt/qt4/QtGui/gsiDeclQItemSelectionModel.cc index e17ad4b5e..5ca3a5275 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQItemSelectionModel.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQItemSelectionModel.cc @@ -813,7 +813,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QItemSelectionModel_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -920,7 +920,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QItemSelectionModel_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -962,7 +962,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QItemSelectionModel_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -1008,7 +1008,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QItemSelectionModel_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1033,8 +1033,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QItemSelectionModel_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1097,8 +1097,8 @@ static void _call_cbs_select_6758_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - QFlags arg2 = args.read > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QItemSelectionModel_Adaptor *)cls)->cbs_select_6758_0 (arg1, arg2); } @@ -1124,8 +1124,8 @@ static void _call_cbs_select_7090_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QItemSelection &arg1 = args.read (heap); - QFlags arg2 = args.read > (heap); + const QItemSelection &arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QItemSelectionModel_Adaptor *)cls)->cbs_select_7090_0 (arg1, arg2); } @@ -1184,7 +1184,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QItemSelectionModel_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQLCDNumber.cc b/src/gsiqt/qt4/QtGui/gsiDeclQLCDNumber.cc index f4dce0c63..cdfd46625 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQLCDNumber.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQLCDNumber.cc @@ -1506,7 +1506,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLCDNumber_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1530,7 +1530,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLCDNumber_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1554,7 +1554,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLCDNumber_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1578,7 +1578,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLCDNumber_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1602,7 +1602,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLCDNumber_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1669,7 +1669,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLCDNumber_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1733,7 +1733,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLCDNumber_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -1757,7 +1757,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLCDNumber_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1781,7 +1781,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLCDNumber_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1805,7 +1805,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLCDNumber_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1848,7 +1848,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLCDNumber_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1872,7 +1872,7 @@ static void _call_cbs_enabledChange_864_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLCDNumber_Adaptor *)cls)->cbs_enabledChange_864_0 (arg1); } @@ -1896,7 +1896,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLCDNumber_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -1920,7 +1920,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QLCDNumber_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1945,8 +1945,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QLCDNumber_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1969,7 +1969,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLCDNumber_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -2007,7 +2007,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QLCDNumber_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -2030,7 +2030,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLCDNumber_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -2068,7 +2068,7 @@ static void _call_cbs_fontChange_1801_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLCDNumber_Adaptor *)cls)->cbs_fontChange_1801_0 (arg1); } @@ -2092,7 +2092,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QLCDNumber_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -2115,7 +2115,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLCDNumber_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -2139,7 +2139,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLCDNumber_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2163,7 +2163,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QLCDNumber_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2186,7 +2186,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLCDNumber_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2210,7 +2210,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLCDNumber_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2254,7 +2254,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLCDNumber_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2278,7 +2278,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QLCDNumber_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2320,7 +2320,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLCDNumber_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2344,7 +2344,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLCDNumber_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2368,7 +2368,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLCDNumber_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2392,7 +2392,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLCDNumber_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2416,7 +2416,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLCDNumber_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2473,7 +2473,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLCDNumber_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2497,7 +2497,7 @@ static void _call_cbs_paletteChange_2113_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPalette &arg1 = args.read (heap); + const QPalette &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLCDNumber_Adaptor *)cls)->cbs_paletteChange_2113_0 (arg1); } @@ -2554,7 +2554,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLCDNumber_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2592,7 +2592,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLCDNumber_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2616,7 +2616,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLCDNumber_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2659,7 +2659,7 @@ static void _call_cbs_styleChange_1228_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyle &arg1 = args.read (heap); + QStyle &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLCDNumber_Adaptor *)cls)->cbs_styleChange_1228_0 (arg1); } @@ -2683,7 +2683,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLCDNumber_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2707,7 +2707,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLCDNumber_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2746,7 +2746,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLCDNumber_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } @@ -2770,7 +2770,7 @@ static void _call_cbs_windowActivationChange_864_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLCDNumber_Adaptor *)cls)->cbs_windowActivationChange_864_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQLabel.cc b/src/gsiqt/qt4/QtGui/gsiDeclQLabel.cc index 5bb352c94..d6c93311b 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQLabel.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQLabel.cc @@ -1722,7 +1722,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1746,7 +1746,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1770,7 +1770,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1794,7 +1794,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1818,7 +1818,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1885,7 +1885,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1949,7 +1949,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -1973,7 +1973,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1997,7 +1997,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -2021,7 +2021,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -2064,7 +2064,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -2088,7 +2088,7 @@ static void _call_cbs_enabledChange_864_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel_Adaptor *)cls)->cbs_enabledChange_864_0 (arg1); } @@ -2112,7 +2112,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -2136,7 +2136,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QLabel_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -2161,8 +2161,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QLabel_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -2185,7 +2185,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -2223,7 +2223,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QLabel_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -2246,7 +2246,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -2284,7 +2284,7 @@ static void _call_cbs_fontChange_1801_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel_Adaptor *)cls)->cbs_fontChange_1801_0 (arg1); } @@ -2308,7 +2308,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QLabel_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -2331,7 +2331,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -2355,7 +2355,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2379,7 +2379,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QLabel_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2402,7 +2402,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2426,7 +2426,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2470,7 +2470,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2530,7 +2530,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QLabel_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2572,7 +2572,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2596,7 +2596,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2620,7 +2620,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2644,7 +2644,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2668,7 +2668,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2711,7 +2711,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2735,7 +2735,7 @@ static void _call_cbs_paletteChange_2113_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPalette &arg1 = args.read (heap); + const QPalette &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel_Adaptor *)cls)->cbs_paletteChange_2113_0 (arg1); } @@ -2792,7 +2792,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2830,7 +2830,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2854,7 +2854,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2897,7 +2897,7 @@ static void _call_cbs_styleChange_1228_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyle &arg1 = args.read (heap); + QStyle &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel_Adaptor *)cls)->cbs_styleChange_1228_0 (arg1); } @@ -2921,7 +2921,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2945,7 +2945,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2984,7 +2984,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } @@ -3008,7 +3008,7 @@ static void _call_cbs_windowActivationChange_864_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel_Adaptor *)cls)->cbs_windowActivationChange_864_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQLayout.cc b/src/gsiqt/qt4/QtGui/gsiDeclQLayout.cc index c11a0f4da..085846ec3 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQLayout.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQLayout.cc @@ -1579,7 +1579,8 @@ static void _call_cbs_addItem_1740_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QLayoutItem *arg1 = args.read (heap); + QLayoutItem *arg1 = gsi::arg_reader() (args, heap); + qt_gsi::qt_keep (arg1); __SUPPRESS_UNUSED_WARNING(ret); ((QLayout_Adaptor *)cls)->cbs_addItem_1740_0 (arg1); } @@ -1621,7 +1622,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLayout_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1664,7 +1665,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLayout_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1706,7 +1707,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLayout_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -1730,7 +1731,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QLayout_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1755,8 +1756,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QLayout_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1836,7 +1837,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QLayout_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -1859,7 +1860,7 @@ static void _call_cbs_indexOf_c1315_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QLayout_Adaptor *)cls)->cbs_indexOf_c1315_0 (arg1)); } @@ -1921,7 +1922,7 @@ static void _call_cbs_itemAt_c767_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QLayoutItem *)((QLayout_Adaptor *)cls)->cbs_itemAt_c767_0 (arg1)); } @@ -1982,7 +1983,7 @@ static void _call_cbs_minimumHeightForWidth_c767_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QLayout_Adaptor *)cls)->cbs_minimumHeightForWidth_c767_0 (arg1)); } @@ -2056,7 +2057,7 @@ static void _call_cbs_setGeometry_1792_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLayout_Adaptor *)cls)->cbs_setGeometry_1792_0 (arg1); } @@ -2118,7 +2119,7 @@ static void _call_cbs_takeAt_767_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QLayoutItem *)((QLayout_Adaptor *)cls)->cbs_takeAt_767_0 (arg1)); } @@ -2141,7 +2142,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLayout_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQLayoutItem.cc b/src/gsiqt/qt4/QtGui/gsiDeclQLayoutItem.cc index 37aab2d2f..9f6546328 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQLayoutItem.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQLayoutItem.cc @@ -683,7 +683,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QLayoutItem_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -783,7 +783,7 @@ static void _call_cbs_minimumHeightForWidth_c767_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QLayoutItem_Adaptor *)cls)->cbs_minimumHeightForWidth_c767_0 (arg1)); } @@ -825,7 +825,7 @@ static void _call_cbs_setGeometry_1792_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLayoutItem_Adaptor *)cls)->cbs_setGeometry_1792_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQLineEdit.cc b/src/gsiqt/qt4/QtGui/gsiDeclQLineEdit.cc index a0e327eaf..52578e379 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQLineEdit.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQLineEdit.cc @@ -2254,7 +2254,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -2278,7 +2278,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -2302,7 +2302,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -2326,7 +2326,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -2350,7 +2350,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -2452,7 +2452,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -2516,7 +2516,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -2540,7 +2540,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -2564,7 +2564,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -2588,7 +2588,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -2612,7 +2612,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -2650,7 +2650,7 @@ static void _call_cbs_enabledChange_864_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit_Adaptor *)cls)->cbs_enabledChange_864_0 (arg1); } @@ -2674,7 +2674,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -2698,7 +2698,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QLineEdit_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -2723,8 +2723,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QLineEdit_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -2747,7 +2747,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -2785,7 +2785,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QLineEdit_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -2808,7 +2808,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -2846,7 +2846,7 @@ static void _call_cbs_fontChange_1801_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit_Adaptor *)cls)->cbs_fontChange_1801_0 (arg1); } @@ -2870,7 +2870,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QLineEdit_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -2893,7 +2893,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -2936,7 +2936,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2960,7 +2960,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QLineEdit_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2983,7 +2983,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -3007,7 +3007,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -3051,7 +3051,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -3075,7 +3075,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QLineEdit_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -3117,7 +3117,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -3141,7 +3141,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -3165,7 +3165,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -3189,7 +3189,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -3213,7 +3213,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -3256,7 +3256,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -3280,7 +3280,7 @@ static void _call_cbs_paletteChange_2113_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPalette &arg1 = args.read (heap); + const QPalette &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit_Adaptor *)cls)->cbs_paletteChange_2113_0 (arg1); } @@ -3337,7 +3337,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -3403,7 +3403,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -3427,7 +3427,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -3470,7 +3470,7 @@ static void _call_cbs_styleChange_1228_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyle &arg1 = args.read (heap); + QStyle &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit_Adaptor *)cls)->cbs_styleChange_1228_0 (arg1); } @@ -3494,7 +3494,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -3554,7 +3554,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -3593,7 +3593,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } @@ -3617,7 +3617,7 @@ static void _call_cbs_windowActivationChange_864_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit_Adaptor *)cls)->cbs_windowActivationChange_864_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQListView.cc b/src/gsiqt/qt4/QtGui/gsiDeclQListView.cc index c99d7adcc..ed6fa0a26 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQListView.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQListView.cc @@ -2539,7 +2539,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -2581,7 +2581,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -2605,7 +2605,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -2649,8 +2649,8 @@ static void _call_cbs_closeEditor_4926_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_closeEditor_4926_0 (arg1, arg2); } @@ -2674,7 +2674,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -2698,7 +2698,7 @@ static void _call_cbs_commitData_1315_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_commitData_1315_0 (arg1); } @@ -2736,7 +2736,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -2787,8 +2787,8 @@ static void _call_cbs_currentChanged_4682_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_currentChanged_4682_0 (arg1, arg2); } @@ -2830,7 +2830,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -2856,8 +2856,8 @@ static void _call_cbs_dataChanged_4682_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_dataChanged_4682_0 (arg1, arg2); } @@ -2935,7 +2935,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -3012,7 +3012,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -3036,7 +3036,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -3060,7 +3060,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -3103,7 +3103,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -3145,9 +3145,9 @@ static void _call_cbs_edit_6773_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - QEvent *arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + QEvent *arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QListView_Adaptor *)cls)->cbs_edit_6773_0 (arg1, arg2, arg3)); } @@ -3170,7 +3170,7 @@ static void _call_cbs_editorDestroyed_1302_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_editorDestroyed_1302_0 (arg1); } @@ -3194,7 +3194,7 @@ static void _call_cbs_enabledChange_864_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_enabledChange_864_0 (arg1); } @@ -3218,7 +3218,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -3260,7 +3260,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QListView_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -3285,8 +3285,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QListView_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -3324,7 +3324,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -3362,7 +3362,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QListView_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -3385,7 +3385,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -3423,7 +3423,7 @@ static void _call_cbs_fontChange_1801_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_fontChange_1801_0 (arg1); } @@ -3447,7 +3447,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QListView_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -3470,7 +3470,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -3513,7 +3513,7 @@ static void _call_cbs_horizontalScrollbarAction_767_0 (const qt_gsi::GenericMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_horizontalScrollbarAction_767_0 (arg1); } @@ -3537,7 +3537,7 @@ static void _call_cbs_horizontalScrollbarValueChanged_767_0 (const qt_gsi::Gener { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_horizontalScrollbarValueChanged_767_0 (arg1); } @@ -3575,7 +3575,7 @@ static void _call_cbs_indexAt_c1916_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QListView_Adaptor *)cls)->cbs_indexAt_c1916_0 (arg1)); } @@ -3616,7 +3616,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -3640,7 +3640,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QListView_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -3701,7 +3701,7 @@ static void _call_cbs_isIndexHidden_c2395_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QListView_Adaptor *)cls)->cbs_isIndexHidden_c2395_0 (arg1)); } @@ -3724,7 +3724,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -3748,7 +3748,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -3772,7 +3772,7 @@ static void _call_cbs_keyboardSearch_2025_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_keyboardSearch_2025_0 (arg1); } @@ -3816,7 +3816,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -3840,7 +3840,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QListView_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -3882,7 +3882,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -3906,7 +3906,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -3930,7 +3930,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -3954,7 +3954,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -3980,8 +3980,8 @@ static void _call_cbs_moveCursor_6476_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); - QFlags arg2 = args.read > (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); ret.write ((QModelIndex)((QListView_Adaptor *)cls)->cbs_moveCursor_6476_0 (arg1, arg2)); } @@ -4004,7 +4004,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -4047,7 +4047,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -4071,7 +4071,7 @@ static void _call_cbs_paletteChange_2113_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPalette &arg1 = args.read (heap); + const QPalette &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_paletteChange_2113_0 (arg1); } @@ -4206,7 +4206,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -4234,9 +4234,9 @@ static void _call_cbs_rowsAboutToBeRemoved_3713_0 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_rowsAboutToBeRemoved_3713_0 (arg1, arg2, arg3); } @@ -4264,9 +4264,9 @@ static void _call_cbs_rowsInserted_3713_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_rowsInserted_3713_0 (arg1, arg2, arg3); } @@ -4307,8 +4307,8 @@ static void _call_cbs_scrollContentsBy_1426_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_scrollContentsBy_1426_0 (arg1, arg2); } @@ -4356,8 +4356,8 @@ static void _call_cbs_scrollTo_5576_1 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QAbstractItemView::EnsureVisible), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_scrollTo_5576_1 (arg1, arg2); } @@ -4422,8 +4422,8 @@ static void _call_cbs_selectionChanged_5346_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QItemSelection &arg1 = args.read (heap); - const QItemSelection &arg2 = args.read (heap); + const QItemSelection &arg1 = gsi::arg_reader() (args, heap); + const QItemSelection &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_selectionChanged_5346_0 (arg1, arg2); } @@ -4449,8 +4449,8 @@ static void _call_cbs_selectionCommand_c4199_1 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QEvent *arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QEvent *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write > ((QFlags)((QListView_Adaptor *)cls)->cbs_selectionCommand_c4199_1 (arg1, arg2)); } @@ -4525,7 +4525,7 @@ static void _call_cbs_setModel_2419_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractItemModel *arg1 = args.read (heap); + QAbstractItemModel *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_setModel_2419_0 (arg1); } @@ -4571,7 +4571,7 @@ static void _call_cbs_setRootIndex_2395_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_setRootIndex_2395_0 (arg1); } @@ -4597,8 +4597,8 @@ static void _call_cbs_setSelection_6155_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); - QFlags arg2 = args.read > (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_setSelection_6155_0 (arg1, arg2); } @@ -4622,7 +4622,7 @@ static void _call_cbs_setSelectionModel_2533_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QItemSelectionModel *arg1 = args.read (heap); + QItemSelectionModel *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_setSelectionModel_2533_0 (arg1); } @@ -4731,7 +4731,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -4774,7 +4774,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -4817,7 +4817,7 @@ static void _call_cbs_sizeHintForColumn_c767_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QListView_Adaptor *)cls)->cbs_sizeHintForColumn_c767_0 (arg1)); } @@ -4840,7 +4840,7 @@ static void _call_cbs_sizeHintForRow_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QListView_Adaptor *)cls)->cbs_sizeHintForRow_c767_0 (arg1)); } @@ -4878,7 +4878,7 @@ static void _call_cbs_startDrag_2456_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_startDrag_2456_0 (arg1); } @@ -4931,7 +4931,7 @@ static void _call_cbs_styleChange_1228_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyle &arg1 = args.read (heap); + QStyle &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_styleChange_1228_0 (arg1); } @@ -4955,7 +4955,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -4979,7 +4979,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -5097,7 +5097,7 @@ static void _call_cbs_verticalScrollbarAction_767_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_verticalScrollbarAction_767_0 (arg1); } @@ -5121,7 +5121,7 @@ static void _call_cbs_verticalScrollbarValueChanged_767_0 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_verticalScrollbarValueChanged_767_0 (arg1); } @@ -5192,7 +5192,7 @@ static void _call_cbs_viewportEvent_1217_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QListView_Adaptor *)cls)->cbs_viewportEvent_1217_0 (arg1)); } @@ -5215,7 +5215,7 @@ static void _call_cbs_visualRect_c2395_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QListView_Adaptor *)cls)->cbs_visualRect_c2395_0 (arg1)); } @@ -5238,7 +5238,7 @@ static void _call_cbs_visualRegionForSelection_c2727_0 (const qt_gsi::GenericMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QItemSelection &arg1 = args.read (heap); + const QItemSelection &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRegion)((QListView_Adaptor *)cls)->cbs_visualRegionForSelection_c2727_0 (arg1)); } @@ -5261,7 +5261,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } @@ -5285,7 +5285,7 @@ static void _call_cbs_windowActivationChange_864_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_windowActivationChange_864_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQListWidget.cc b/src/gsiqt/qt4/QtGui/gsiDeclQListWidget.cc index 7ab0969dc..1a3ae49e8 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQListWidget.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQListWidget.cc @@ -2786,7 +2786,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -2828,7 +2828,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -2852,7 +2852,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -2896,8 +2896,8 @@ static void _call_cbs_closeEditor_4926_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_closeEditor_4926_0 (arg1, arg2); } @@ -2921,7 +2921,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -2945,7 +2945,7 @@ static void _call_cbs_commitData_1315_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_commitData_1315_0 (arg1); } @@ -2983,7 +2983,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -3034,8 +3034,8 @@ static void _call_cbs_currentChanged_4682_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_currentChanged_4682_0 (arg1, arg2); } @@ -3134,7 +3134,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -3160,8 +3160,8 @@ static void _call_cbs_dataChanged_4682_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_dataChanged_4682_0 (arg1, arg2); } @@ -3239,7 +3239,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -3316,7 +3316,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -3340,7 +3340,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -3364,7 +3364,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -3407,7 +3407,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -3449,9 +3449,9 @@ static void _call_cbs_dropMimeData_4479_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QMimeData *arg2 = args.read (heap); - const qt_gsi::Converter::target_type & arg3 = args.read::target_type & > (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QMimeData *arg2 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg3 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((bool)((QListWidget_Adaptor *)cls)->cbs_dropMimeData_4479_0 (arg1, arg2, arg3)); } @@ -3478,9 +3478,9 @@ static void _call_cbs_edit_6773_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - QEvent *arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + QEvent *arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QListWidget_Adaptor *)cls)->cbs_edit_6773_0 (arg1, arg2, arg3)); } @@ -3503,7 +3503,7 @@ static void _call_cbs_editorDestroyed_1302_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_editorDestroyed_1302_0 (arg1); } @@ -3527,7 +3527,7 @@ static void _call_cbs_enabledChange_864_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_enabledChange_864_0 (arg1); } @@ -3551,7 +3551,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -3593,7 +3593,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QListWidget_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -3618,8 +3618,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QListWidget_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -3657,7 +3657,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -3695,7 +3695,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QListWidget_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -3718,7 +3718,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -3756,7 +3756,7 @@ static void _call_cbs_fontChange_1801_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_fontChange_1801_0 (arg1); } @@ -3780,7 +3780,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QListWidget_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -3803,7 +3803,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -3846,7 +3846,7 @@ static void _call_cbs_horizontalScrollbarAction_767_0 (const qt_gsi::GenericMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_horizontalScrollbarAction_767_0 (arg1); } @@ -3870,7 +3870,7 @@ static void _call_cbs_horizontalScrollbarValueChanged_767_0 (const qt_gsi::Gener { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_horizontalScrollbarValueChanged_767_0 (arg1); } @@ -3908,7 +3908,7 @@ static void _call_cbs_indexAt_c1916_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QListWidget_Adaptor *)cls)->cbs_indexAt_c1916_0 (arg1)); } @@ -3967,7 +3967,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -3991,7 +3991,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QListWidget_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -4052,7 +4052,7 @@ static void _call_cbs_isIndexHidden_c2395_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QListWidget_Adaptor *)cls)->cbs_isIndexHidden_c2395_0 (arg1)); } @@ -4233,7 +4233,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -4257,7 +4257,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -4281,7 +4281,7 @@ static void _call_cbs_keyboardSearch_2025_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_keyboardSearch_2025_0 (arg1); } @@ -4325,7 +4325,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -4349,7 +4349,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QListWidget_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -4372,7 +4372,7 @@ static void _call_cbs_mimeData_c3292_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList arg1 = args.read > (heap); + const QList arg1 = gsi::arg_reader >() (args, heap); ret.write ((QMimeData *)((QListWidget_Adaptor *)cls)->cbs_mimeData_c3292_0 (arg1)); } @@ -4433,7 +4433,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -4457,7 +4457,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -4481,7 +4481,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -4505,7 +4505,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -4531,8 +4531,8 @@ static void _call_cbs_moveCursor_6476_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); - QFlags arg2 = args.read > (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); ret.write ((QModelIndex)((QListWidget_Adaptor *)cls)->cbs_moveCursor_6476_0 (arg1, arg2)); } @@ -4555,7 +4555,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -4598,7 +4598,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -4622,7 +4622,7 @@ static void _call_cbs_paletteChange_2113_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPalette &arg1 = args.read (heap); + const QPalette &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_paletteChange_2113_0 (arg1); } @@ -4757,7 +4757,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -4785,9 +4785,9 @@ static void _call_cbs_rowsAboutToBeRemoved_3713_0 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_rowsAboutToBeRemoved_3713_0 (arg1, arg2, arg3); } @@ -4815,9 +4815,9 @@ static void _call_cbs_rowsInserted_3713_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_rowsInserted_3713_0 (arg1, arg2, arg3); } @@ -4858,8 +4858,8 @@ static void _call_cbs_scrollContentsBy_1426_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_scrollContentsBy_1426_0 (arg1, arg2); } @@ -4907,8 +4907,8 @@ static void _call_cbs_scrollTo_5576_1 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QAbstractItemView::EnsureVisible), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_scrollTo_5576_1 (arg1, arg2); } @@ -4973,8 +4973,8 @@ static void _call_cbs_selectionChanged_5346_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QItemSelection &arg1 = args.read (heap); - const QItemSelection &arg2 = args.read (heap); + const QItemSelection &arg1 = gsi::arg_reader() (args, heap); + const QItemSelection &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_selectionChanged_5346_0 (arg1, arg2); } @@ -5000,8 +5000,8 @@ static void _call_cbs_selectionCommand_c4199_1 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QEvent *arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QEvent *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write > ((QFlags)((QListWidget_Adaptor *)cls)->cbs_selectionCommand_c4199_1 (arg1, arg2)); } @@ -5098,7 +5098,7 @@ static void _call_cbs_setRootIndex_2395_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_setRootIndex_2395_0 (arg1); } @@ -5124,8 +5124,8 @@ static void _call_cbs_setSelection_6155_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); - QFlags arg2 = args.read > (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_setSelection_6155_0 (arg1, arg2); } @@ -5149,7 +5149,7 @@ static void _call_cbs_setSelectionModel_2533_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QItemSelectionModel *arg1 = args.read (heap); + QItemSelectionModel *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_setSelectionModel_2533_0 (arg1); } @@ -5258,7 +5258,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -5301,7 +5301,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -5344,7 +5344,7 @@ static void _call_cbs_sizeHintForColumn_c767_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QListWidget_Adaptor *)cls)->cbs_sizeHintForColumn_c767_0 (arg1)); } @@ -5367,7 +5367,7 @@ static void _call_cbs_sizeHintForRow_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QListWidget_Adaptor *)cls)->cbs_sizeHintForRow_c767_0 (arg1)); } @@ -5405,7 +5405,7 @@ static void _call_cbs_startDrag_2456_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_startDrag_2456_0 (arg1); } @@ -5458,7 +5458,7 @@ static void _call_cbs_styleChange_1228_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyle &arg1 = args.read (heap); + QStyle &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_styleChange_1228_0 (arg1); } @@ -5501,7 +5501,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -5525,7 +5525,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -5643,7 +5643,7 @@ static void _call_cbs_verticalScrollbarAction_767_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_verticalScrollbarAction_767_0 (arg1); } @@ -5667,7 +5667,7 @@ static void _call_cbs_verticalScrollbarValueChanged_767_0 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_verticalScrollbarValueChanged_767_0 (arg1); } @@ -5738,7 +5738,7 @@ static void _call_cbs_viewportEvent_1217_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QListWidget_Adaptor *)cls)->cbs_viewportEvent_1217_0 (arg1)); } @@ -5761,7 +5761,7 @@ static void _call_cbs_visualRect_c2395_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QListWidget_Adaptor *)cls)->cbs_visualRect_c2395_0 (arg1)); } @@ -5784,7 +5784,7 @@ static void _call_cbs_visualRegionForSelection_c2727_0 (const qt_gsi::GenericMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QItemSelection &arg1 = args.read (heap); + const QItemSelection &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRegion)((QListWidget_Adaptor *)cls)->cbs_visualRegionForSelection_c2727_0 (arg1)); } @@ -5807,7 +5807,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } @@ -5831,7 +5831,7 @@ static void _call_cbs_windowActivationChange_864_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_windowActivationChange_864_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQListWidgetItem.cc b/src/gsiqt/qt4/QtGui/gsiDeclQListWidgetItem.cc index e15ce5d90..b7f135f20 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQListWidgetItem.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQListWidgetItem.cc @@ -1135,7 +1135,7 @@ static void _call_cbs_data_c767_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QListWidgetItem_Adaptor *)cls)->cbs_data_c767_0 (arg1)); } @@ -1158,7 +1158,7 @@ static void _call_cbs_operator_lt__c2817_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QListWidgetItem &arg1 = args.read (heap); + const QListWidgetItem &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QListWidgetItem_Adaptor *)cls)->cbs_operator_lt__c2817_0 (arg1)); } @@ -1181,7 +1181,7 @@ static void _call_cbs_read_1697_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDataStream &arg1 = args.read (heap); + QDataStream &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidgetItem_Adaptor *)cls)->cbs_read_1697_0 (arg1); } @@ -1205,7 +1205,7 @@ static void _call_cbs_setBackgroundColor_1905_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QColor &arg1 = args.read (heap); + const QColor &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidgetItem_Adaptor *)cls)->cbs_setBackgroundColor_1905_0 (arg1); } @@ -1231,8 +1231,8 @@ static void _call_cbs_setData_2778_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidgetItem_Adaptor *)cls)->cbs_setData_2778_0 (arg1, arg2); } @@ -1256,7 +1256,7 @@ static void _call_cbs_write_c1697_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDataStream &arg1 = args.read (heap); + QDataStream &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidgetItem_Adaptor *)cls)->cbs_write_c1697_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQMainWindow.cc b/src/gsiqt/qt4/QtGui/gsiDeclQMainWindow.cc index b44865103..6d583f103 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQMainWindow.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQMainWindow.cc @@ -2108,7 +2108,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -2132,7 +2132,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -2156,7 +2156,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -2180,7 +2180,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -2204,7 +2204,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -2290,7 +2290,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -2354,7 +2354,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -2378,7 +2378,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -2402,7 +2402,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -2426,7 +2426,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -2450,7 +2450,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -2474,7 +2474,7 @@ static void _call_cbs_enabledChange_864_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow_Adaptor *)cls)->cbs_enabledChange_864_0 (arg1); } @@ -2498,7 +2498,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -2522,7 +2522,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMainWindow_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -2547,8 +2547,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMainWindow_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -2571,7 +2571,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -2609,7 +2609,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMainWindow_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -2632,7 +2632,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -2670,7 +2670,7 @@ static void _call_cbs_fontChange_1801_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow_Adaptor *)cls)->cbs_fontChange_1801_0 (arg1); } @@ -2694,7 +2694,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QMainWindow_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -2717,7 +2717,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -2759,7 +2759,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2783,7 +2783,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QMainWindow_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2806,7 +2806,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2830,7 +2830,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2874,7 +2874,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2898,7 +2898,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QMainWindow_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2940,7 +2940,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2964,7 +2964,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2988,7 +2988,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -3012,7 +3012,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -3036,7 +3036,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -3079,7 +3079,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -3103,7 +3103,7 @@ static void _call_cbs_paletteChange_2113_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPalette &arg1 = args.read (heap); + const QPalette &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow_Adaptor *)cls)->cbs_paletteChange_2113_0 (arg1); } @@ -3160,7 +3160,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -3198,7 +3198,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -3222,7 +3222,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -3265,7 +3265,7 @@ static void _call_cbs_styleChange_1228_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyle &arg1 = args.read (heap); + QStyle &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow_Adaptor *)cls)->cbs_styleChange_1228_0 (arg1); } @@ -3289,7 +3289,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -3313,7 +3313,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -3370,7 +3370,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } @@ -3394,7 +3394,7 @@ static void _call_cbs_windowActivationChange_864_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow_Adaptor *)cls)->cbs_windowActivationChange_864_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQMdiArea.cc b/src/gsiqt/qt4/QtGui/gsiDeclQMdiArea.cc index 4ac104afd..4b96ee3c1 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQMdiArea.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQMdiArea.cc @@ -1636,7 +1636,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1660,7 +1660,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1684,7 +1684,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1708,7 +1708,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1732,7 +1732,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1799,7 +1799,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1863,7 +1863,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -1887,7 +1887,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1911,7 +1911,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1935,7 +1935,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1978,7 +1978,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -2002,7 +2002,7 @@ static void _call_cbs_enabledChange_864_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea_Adaptor *)cls)->cbs_enabledChange_864_0 (arg1); } @@ -2026,7 +2026,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -2050,7 +2050,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMdiArea_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -2075,8 +2075,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMdiArea_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -2099,7 +2099,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -2137,7 +2137,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMdiArea_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -2160,7 +2160,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -2198,7 +2198,7 @@ static void _call_cbs_fontChange_1801_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea_Adaptor *)cls)->cbs_fontChange_1801_0 (arg1); } @@ -2222,7 +2222,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QMdiArea_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -2245,7 +2245,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -2269,7 +2269,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2293,7 +2293,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QMdiArea_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2316,7 +2316,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2340,7 +2340,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2384,7 +2384,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2408,7 +2408,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QMdiArea_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2450,7 +2450,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2474,7 +2474,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2498,7 +2498,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2522,7 +2522,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2546,7 +2546,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2589,7 +2589,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2613,7 +2613,7 @@ static void _call_cbs_paletteChange_2113_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPalette &arg1 = args.read (heap); + const QPalette &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea_Adaptor *)cls)->cbs_paletteChange_2113_0 (arg1); } @@ -2670,7 +2670,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2696,8 +2696,8 @@ static void _call_cbs_scrollContentsBy_1426_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea_Adaptor *)cls)->cbs_scrollContentsBy_1426_0 (arg1, arg2); } @@ -2782,7 +2782,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2825,7 +2825,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2868,7 +2868,7 @@ static void _call_cbs_styleChange_1228_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyle &arg1 = args.read (heap); + QStyle &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea_Adaptor *)cls)->cbs_styleChange_1228_0 (arg1); } @@ -2910,7 +2910,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2934,7 +2934,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2973,7 +2973,7 @@ static void _call_cbs_viewportEvent_1217_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMdiArea_Adaptor *)cls)->cbs_viewportEvent_1217_0 (arg1)); } @@ -2996,7 +2996,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } @@ -3020,7 +3020,7 @@ static void _call_cbs_windowActivationChange_864_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea_Adaptor *)cls)->cbs_windowActivationChange_864_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQMdiSubWindow.cc b/src/gsiqt/qt4/QtGui/gsiDeclQMdiSubWindow.cc index bbe4f8cd6..a7c6ee306 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQMdiSubWindow.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQMdiSubWindow.cc @@ -1418,7 +1418,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiSubWindow_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1442,7 +1442,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiSubWindow_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1466,7 +1466,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiSubWindow_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1490,7 +1490,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiSubWindow_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1514,7 +1514,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiSubWindow_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1581,7 +1581,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiSubWindow_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1645,7 +1645,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiSubWindow_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -1669,7 +1669,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiSubWindow_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1693,7 +1693,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiSubWindow_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1717,7 +1717,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiSubWindow_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1741,7 +1741,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiSubWindow_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1765,7 +1765,7 @@ static void _call_cbs_enabledChange_864_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiSubWindow_Adaptor *)cls)->cbs_enabledChange_864_0 (arg1); } @@ -1789,7 +1789,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiSubWindow_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -1813,7 +1813,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMdiSubWindow_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1838,8 +1838,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMdiSubWindow_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1862,7 +1862,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiSubWindow_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1900,7 +1900,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMdiSubWindow_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -1923,7 +1923,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiSubWindow_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -1961,7 +1961,7 @@ static void _call_cbs_fontChange_1801_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiSubWindow_Adaptor *)cls)->cbs_fontChange_1801_0 (arg1); } @@ -1985,7 +1985,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QMdiSubWindow_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -2008,7 +2008,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiSubWindow_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -2032,7 +2032,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiSubWindow_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2056,7 +2056,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QMdiSubWindow_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2079,7 +2079,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiSubWindow_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2103,7 +2103,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiSubWindow_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2147,7 +2147,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiSubWindow_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2171,7 +2171,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QMdiSubWindow_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2213,7 +2213,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiSubWindow_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2237,7 +2237,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiSubWindow_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2261,7 +2261,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiSubWindow_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2285,7 +2285,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiSubWindow_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2309,7 +2309,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiSubWindow_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2352,7 +2352,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiSubWindow_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2376,7 +2376,7 @@ static void _call_cbs_paletteChange_2113_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPalette &arg1 = args.read (heap); + const QPalette &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiSubWindow_Adaptor *)cls)->cbs_paletteChange_2113_0 (arg1); } @@ -2433,7 +2433,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiSubWindow_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2471,7 +2471,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiSubWindow_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2495,7 +2495,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiSubWindow_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2538,7 +2538,7 @@ static void _call_cbs_styleChange_1228_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyle &arg1 = args.read (heap); + QStyle &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiSubWindow_Adaptor *)cls)->cbs_styleChange_1228_0 (arg1); } @@ -2562,7 +2562,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiSubWindow_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2586,7 +2586,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiSubWindow_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2625,7 +2625,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiSubWindow_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } @@ -2649,7 +2649,7 @@ static void _call_cbs_windowActivationChange_864_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiSubWindow_Adaptor *)cls)->cbs_windowActivationChange_864_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQMenu.cc b/src/gsiqt/qt4/QtGui/gsiDeclQMenu.cc index dcc5b56dc..31cfd3c77 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQMenu.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQMenu.cc @@ -1903,7 +1903,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenu_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1927,7 +1927,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenu_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1951,7 +1951,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenu_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1975,7 +1975,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenu_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -2013,7 +2013,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenu_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -2080,7 +2080,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenu_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -2144,7 +2144,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenu_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -2168,7 +2168,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenu_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -2192,7 +2192,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenu_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -2216,7 +2216,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenu_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -2240,7 +2240,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenu_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -2264,7 +2264,7 @@ static void _call_cbs_enabledChange_864_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenu_Adaptor *)cls)->cbs_enabledChange_864_0 (arg1); } @@ -2288,7 +2288,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenu_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -2312,7 +2312,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMenu_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -2337,8 +2337,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMenu_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -2361,7 +2361,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenu_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -2399,7 +2399,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMenu_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -2422,7 +2422,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenu_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -2460,7 +2460,7 @@ static void _call_cbs_fontChange_1801_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenu_Adaptor *)cls)->cbs_fontChange_1801_0 (arg1); } @@ -2484,7 +2484,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QMenu_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -2507,7 +2507,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenu_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -2571,7 +2571,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenu_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2595,7 +2595,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QMenu_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2618,7 +2618,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenu_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2642,7 +2642,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenu_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2686,7 +2686,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenu_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2710,7 +2710,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QMenu_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2752,7 +2752,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenu_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2776,7 +2776,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenu_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2800,7 +2800,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenu_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2824,7 +2824,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenu_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2848,7 +2848,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenu_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2891,7 +2891,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenu_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2915,7 +2915,7 @@ static void _call_cbs_paletteChange_2113_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPalette &arg1 = args.read (heap); + const QPalette &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenu_Adaptor *)cls)->cbs_paletteChange_2113_0 (arg1); } @@ -2972,7 +2972,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenu_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -3010,7 +3010,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenu_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -3034,7 +3034,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenu_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -3077,7 +3077,7 @@ static void _call_cbs_styleChange_1228_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyle &arg1 = args.read (heap); + QStyle &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenu_Adaptor *)cls)->cbs_styleChange_1228_0 (arg1); } @@ -3101,7 +3101,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenu_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -3125,7 +3125,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenu_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -3182,7 +3182,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenu_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } @@ -3206,7 +3206,7 @@ static void _call_cbs_windowActivationChange_864_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenu_Adaptor *)cls)->cbs_windowActivationChange_864_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQMenuBar.cc b/src/gsiqt/qt4/QtGui/gsiDeclQMenuBar.cc index 072c631c8..dd9d59485 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQMenuBar.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQMenuBar.cc @@ -1552,7 +1552,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenuBar_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1576,7 +1576,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenuBar_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1600,7 +1600,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenuBar_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1624,7 +1624,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenuBar_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1648,7 +1648,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenuBar_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1715,7 +1715,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenuBar_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1779,7 +1779,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenuBar_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -1803,7 +1803,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenuBar_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1827,7 +1827,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenuBar_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1851,7 +1851,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenuBar_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1875,7 +1875,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenuBar_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1899,7 +1899,7 @@ static void _call_cbs_enabledChange_864_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenuBar_Adaptor *)cls)->cbs_enabledChange_864_0 (arg1); } @@ -1923,7 +1923,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenuBar_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -1947,7 +1947,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMenuBar_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1972,8 +1972,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMenuBar_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1996,7 +1996,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenuBar_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -2034,7 +2034,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMenuBar_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -2057,7 +2057,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenuBar_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -2095,7 +2095,7 @@ static void _call_cbs_fontChange_1801_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenuBar_Adaptor *)cls)->cbs_fontChange_1801_0 (arg1); } @@ -2119,7 +2119,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QMenuBar_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -2142,7 +2142,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenuBar_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -2206,7 +2206,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenuBar_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2230,7 +2230,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QMenuBar_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2253,7 +2253,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenuBar_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2277,7 +2277,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenuBar_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2321,7 +2321,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenuBar_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2345,7 +2345,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QMenuBar_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2387,7 +2387,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenuBar_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2411,7 +2411,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenuBar_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2435,7 +2435,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenuBar_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2459,7 +2459,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenuBar_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2483,7 +2483,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenuBar_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2526,7 +2526,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenuBar_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2550,7 +2550,7 @@ static void _call_cbs_paletteChange_2113_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPalette &arg1 = args.read (heap); + const QPalette &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenuBar_Adaptor *)cls)->cbs_paletteChange_2113_0 (arg1); } @@ -2607,7 +2607,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenuBar_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2645,7 +2645,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenuBar_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2669,7 +2669,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenuBar_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2712,7 +2712,7 @@ static void _call_cbs_styleChange_1228_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyle &arg1 = args.read (heap); + QStyle &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenuBar_Adaptor *)cls)->cbs_styleChange_1228_0 (arg1); } @@ -2736,7 +2736,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenuBar_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2760,7 +2760,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenuBar_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2817,7 +2817,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenuBar_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } @@ -2841,7 +2841,7 @@ static void _call_cbs_windowActivationChange_864_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenuBar_Adaptor *)cls)->cbs_windowActivationChange_864_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQMessageBox.cc b/src/gsiqt/qt4/QtGui/gsiDeclQMessageBox.cc index 543648385..ac2f55c69 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQMessageBox.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQMessageBox.cc @@ -2166,7 +2166,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -2227,7 +2227,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -2251,7 +2251,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -2275,7 +2275,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -2299,7 +2299,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -2366,7 +2366,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -2430,7 +2430,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -2454,7 +2454,7 @@ static void _call_cbs_done_767_0 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox_Adaptor *)cls)->cbs_done_767_0 (arg1); } @@ -2478,7 +2478,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -2502,7 +2502,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -2526,7 +2526,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -2550,7 +2550,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -2574,7 +2574,7 @@ static void _call_cbs_enabledChange_864_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox_Adaptor *)cls)->cbs_enabledChange_864_0 (arg1); } @@ -2598,7 +2598,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -2622,7 +2622,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMessageBox_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -2647,8 +2647,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMessageBox_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -2689,7 +2689,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -2727,7 +2727,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMessageBox_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -2750,7 +2750,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -2788,7 +2788,7 @@ static void _call_cbs_fontChange_1801_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox_Adaptor *)cls)->cbs_fontChange_1801_0 (arg1); } @@ -2812,7 +2812,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QMessageBox_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -2835,7 +2835,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -2859,7 +2859,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2883,7 +2883,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QMessageBox_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2906,7 +2906,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2930,7 +2930,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2974,7 +2974,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2998,7 +2998,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QMessageBox_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -3040,7 +3040,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -3064,7 +3064,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -3088,7 +3088,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -3112,7 +3112,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -3136,7 +3136,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -3179,7 +3179,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -3203,7 +3203,7 @@ static void _call_cbs_paletteChange_2113_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPalette &arg1 = args.read (heap); + const QPalette &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox_Adaptor *)cls)->cbs_paletteChange_2113_0 (arg1); } @@ -3294,7 +3294,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -3332,7 +3332,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -3356,7 +3356,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -3399,7 +3399,7 @@ static void _call_cbs_styleChange_1228_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyle &arg1 = args.read (heap); + QStyle &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox_Adaptor *)cls)->cbs_styleChange_1228_0 (arg1); } @@ -3423,7 +3423,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -3447,7 +3447,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -3486,7 +3486,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } @@ -3510,7 +3510,7 @@ static void _call_cbs_windowActivationChange_864_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox_Adaptor *)cls)->cbs_windowActivationChange_864_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQMimeSource.cc b/src/gsiqt/qt4/QtGui/gsiDeclQMimeSource.cc index 63b679ec0..4203b2ada 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQMimeSource.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQMimeSource.cc @@ -205,7 +205,7 @@ static void _call_cbs_encodedData_c1731_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((QByteArray)((QMimeSource_Adaptor *)cls)->cbs_encodedData_c1731_0 (arg1)); } @@ -228,7 +228,7 @@ static void _call_cbs_format_c767_1 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((const char *)((QMimeSource_Adaptor *)cls)->cbs_format_c767_1 (arg1)); } @@ -251,7 +251,7 @@ static void _call_cbs_provides_c1731_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMimeSource_Adaptor *)cls)->cbs_provides_c1731_0 (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQMotifStyle.cc b/src/gsiqt/qt4/QtGui/gsiDeclQMotifStyle.cc index 8138552fa..01265290f 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQMotifStyle.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQMotifStyle.cc @@ -1130,7 +1130,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMotifStyle_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1154,7 +1154,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMotifStyle_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1196,7 +1196,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMotifStyle_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -1226,10 +1226,10 @@ static void _call_cbs_drawComplexControl_c9027_1 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOptionComplex *arg2 = args.read (heap); - QPainter *arg3 = args.read (heap); - const QWidget *arg4 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOptionComplex *arg2 = gsi::arg_reader() (args, heap); + QPainter *arg3 = gsi::arg_reader() (args, heap); + const QWidget *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMotifStyle_Adaptor *)cls)->cbs_drawComplexControl_c9027_1 (arg1, arg2, arg3, arg4); } @@ -1259,10 +1259,10 @@ static void _call_cbs_drawControl_c8285_1 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args.read (heap); - QPainter *arg3 = args.read (heap); - const QWidget *arg4 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = gsi::arg_reader() (args, heap); + QPainter *arg3 = gsi::arg_reader() (args, heap); + const QWidget *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMotifStyle_Adaptor *)cls)->cbs_drawControl_c8285_1 (arg1, arg2, arg3, arg4); } @@ -1292,10 +1292,10 @@ static void _call_cbs_drawItemPixmap_c5678_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QRect &arg2 = args.read (heap); - int arg3 = args.read (heap); - const QPixmap &arg4 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QRect &arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QPixmap &arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMotifStyle_Adaptor *)cls)->cbs_drawItemPixmap_c5678_0 (arg1, arg2, arg3, arg4); } @@ -1331,13 +1331,13 @@ static void _call_cbs_drawItemText_c10604_1 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QRect &arg2 = args.read (heap); - int arg3 = args.read (heap); - const QPalette &arg4 = args.read (heap); - bool arg5 = args.read (heap); - const QString &arg6 = args.read (heap); - const qt_gsi::Converter::target_type & arg7 = args.read::target_type & > (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QRect &arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QPalette &arg4 = gsi::arg_reader() (args, heap); + bool arg5 = gsi::arg_reader() (args, heap); + const QString &arg6 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg7 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QPalette::NoRole), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMotifStyle_Adaptor *)cls)->cbs_drawItemText_c10604_1 (arg1, arg2, arg3, arg4, arg5, arg6, arg7); } @@ -1367,10 +1367,10 @@ static void _call_cbs_drawPrimitive_c8501_1 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args.read (heap); - QPainter *arg3 = args.read (heap); - const QWidget *arg4 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = gsi::arg_reader() (args, heap); + QPainter *arg3 = gsi::arg_reader() (args, heap); + const QWidget *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMotifStyle_Adaptor *)cls)->cbs_drawPrimitive_c8501_1 (arg1, arg2, arg3, arg4); } @@ -1394,7 +1394,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMotifStyle_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1419,8 +1419,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMotifStyle_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1447,9 +1447,9 @@ static void _call_cbs_generatedIconPixmap_c5776_0 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QPixmap &arg2 = args.read (heap); - const QStyleOption *arg3 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QPixmap &arg2 = gsi::arg_reader() (args, heap); + const QStyleOption *arg3 = gsi::arg_reader() (args, heap); ret.write ((QPixmap)((QMotifStyle_Adaptor *)cls)->cbs_generatedIconPixmap_c5776_0 (arg1, arg2, arg3)); } @@ -1478,10 +1478,10 @@ static void _call_cbs_hitTestComplexControl_c9517_1 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOptionComplex *arg2 = args.read (heap); - const QPoint &arg3 = args.read (heap); - const QWidget *arg4 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOptionComplex *arg2 = gsi::arg_reader() (args, heap); + const QPoint &arg3 = gsi::arg_reader() (args, heap); + const QWidget *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write::target_type > ((qt_gsi::Converter::target_type)((QMotifStyle_Adaptor *)cls)->cbs_hitTestComplexControl_c9517_1 (arg1, arg2, arg3, arg4)); } @@ -1508,9 +1508,9 @@ static void _call_cbs_itemPixmapRect_c4360_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); - int arg2 = args.read (heap); - const QPixmap &arg3 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QPixmap &arg3 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QMotifStyle_Adaptor *)cls)->cbs_itemPixmapRect_c4360_0 (arg1, arg2, arg3)); } @@ -1541,11 +1541,11 @@ static void _call_cbs_itemTextRect_c7544_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFontMetrics &arg1 = args.read (heap); - const QRect &arg2 = args.read (heap); - int arg3 = args.read (heap); - bool arg4 = args.read (heap); - const QString &arg5 = args.read (heap); + const QFontMetrics &arg1 = gsi::arg_reader() (args, heap); + const QRect &arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + bool arg4 = gsi::arg_reader() (args, heap); + const QString &arg5 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QMotifStyle_Adaptor *)cls)->cbs_itemTextRect_c7544_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -1602,9 +1602,9 @@ static void _call_cbs_pixelMetric_c6642_2 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args.read (heap); - const QWidget *arg3 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + const QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((int)((QMotifStyle_Adaptor *)cls)->cbs_pixelMetric_c6642_2 (arg1, arg2, arg3)); } @@ -1627,7 +1627,7 @@ static void _call_cbs_polish_1418_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPalette &arg1 = args.read (heap); + QPalette &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMotifStyle_Adaptor *)cls)->cbs_polish_1418_0 (arg1); } @@ -1651,7 +1651,7 @@ static void _call_cbs_polish_1315_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMotifStyle_Adaptor *)cls)->cbs_polish_1315_0 (arg1); } @@ -1675,7 +1675,7 @@ static void _call_cbs_polish_1843_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QApplication *arg1 = args.read (heap); + QApplication *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMotifStyle_Adaptor *)cls)->cbs_polish_1843_0 (arg1); } @@ -1737,10 +1737,10 @@ static void _call_cbs_sizeFromContents_c8477_1 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args.read (heap); - const QSize &arg3 = args.read (heap); - const QWidget *arg4 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = gsi::arg_reader() (args, heap); + const QSize &arg3 = gsi::arg_reader() (args, heap); + const QWidget *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QSize)((QMotifStyle_Adaptor *)cls)->cbs_sizeFromContents_c8477_1 (arg1, arg2, arg3, arg4)); } @@ -1810,9 +1810,9 @@ static void _call_cbs_standardPixmap_c6956_1 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args.read (heap); - const QWidget *arg3 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = gsi::arg_reader() (args, heap); + const QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QPixmap)((QMotifStyle_Adaptor *)cls)->cbs_standardPixmap_c6956_1 (arg1, arg2, arg3)); } @@ -1841,10 +1841,10 @@ static void _call_cbs_styleHint_c8615_3 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args.read (heap); - const QWidget *arg3 = args.read (heap); - QStyleHintReturn *arg4 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + const QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + QStyleHintReturn *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((int)((QMotifStyle_Adaptor *)cls)->cbs_styleHint_c8615_3 (arg1, arg2, arg3, arg4)); } @@ -1873,10 +1873,10 @@ static void _call_cbs_subControlRect_c9798_1 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOptionComplex *arg2 = args.read (heap); - const qt_gsi::Converter::target_type & arg3 = args.read::target_type & > (heap); - const QWidget *arg4 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOptionComplex *arg2 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg3 = gsi::arg_reader::target_type & >() (args, heap); + const QWidget *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QRect)((QMotifStyle_Adaptor *)cls)->cbs_subControlRect_c9798_1 (arg1, arg2, arg3, arg4)); } @@ -1903,9 +1903,9 @@ static void _call_cbs_subElementRect_c6528_1 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args.read (heap); - const QWidget *arg3 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = gsi::arg_reader() (args, heap); + const QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QRect)((QMotifStyle_Adaptor *)cls)->cbs_subElementRect_c6528_1 (arg1, arg2, arg3)); } @@ -1928,7 +1928,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMotifStyle_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -1952,7 +1952,7 @@ static void _call_cbs_unpolish_1315_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMotifStyle_Adaptor *)cls)->cbs_unpolish_1315_0 (arg1); } @@ -1976,7 +1976,7 @@ static void _call_cbs_unpolish_1843_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QApplication *arg1 = args.read (heap); + QApplication *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMotifStyle_Adaptor *)cls)->cbs_unpolish_1843_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQMovie.cc b/src/gsiqt/qt4/QtGui/gsiDeclQMovie.cc index 33118ff99..801194a0c 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQMovie.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQMovie.cc @@ -1002,7 +1002,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMovie_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1026,7 +1026,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMovie_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1068,7 +1068,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMovie_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -1110,7 +1110,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMovie_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1135,8 +1135,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMovie_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1273,7 +1273,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMovie_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQPaintDevice.cc b/src/gsiqt/qt4/QtGui/gsiDeclQPaintDevice.cc index 70452fc22..14463d93c 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQPaintDevice.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQPaintDevice.cc @@ -336,7 +336,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QPaintDevice_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQPaintEngine.cc b/src/gsiqt/qt4/QtGui/gsiDeclQPaintEngine.cc index 2e8efeca6..d1ef6bed3 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQPaintEngine.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQPaintEngine.cc @@ -853,7 +853,7 @@ static void _call_cbs_begin_1803_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintDevice *arg1 = args.read (heap); + QPaintDevice *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPaintEngine_Adaptor *)cls)->cbs_begin_1803_0 (arg1)); } @@ -895,7 +895,7 @@ static void _call_cbs_drawEllipse_1862_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPaintEngine_Adaptor *)cls)->cbs_drawEllipse_1862_0 (arg1); } @@ -919,7 +919,7 @@ static void _call_cbs_drawEllipse_1792_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPaintEngine_Adaptor *)cls)->cbs_drawEllipse_1792_0 (arg1); } @@ -949,10 +949,10 @@ static void _call_cbs_drawImage_8645_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); - const QImage &arg2 = args.read (heap); - const QRectF &arg3 = args.read (heap); - QFlags arg4 = args.read > (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); + const QImage &arg2 = gsi::arg_reader() (args, heap); + const QRectF &arg3 = gsi::arg_reader() (args, heap); + QFlags arg4 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (Qt::AutoColor, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPaintEngine_Adaptor *)cls)->cbs_drawImage_8645_1 (arg1, arg2, arg3, arg4); } @@ -976,7 +976,7 @@ static void _call_cbs_drawPath_2514_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPaintEngine_Adaptor *)cls)->cbs_drawPath_2514_0 (arg1); } @@ -1004,9 +1004,9 @@ static void _call_cbs_drawPixmap_5525_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); - const QPixmap &arg2 = args.read (heap); - const QRectF &arg3 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); + const QPixmap &arg2 = gsi::arg_reader() (args, heap); + const QRectF &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPaintEngine_Adaptor *)cls)->cbs_drawPixmap_5525_0 (arg1, arg2, arg3); } @@ -1032,8 +1032,8 @@ static void _call_cbs_drawTextItem_4092_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); - const QTextItem &arg2 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); + const QTextItem &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPaintEngine_Adaptor *)cls)->cbs_drawTextItem_4092_0 (arg1, arg2); } @@ -1061,9 +1061,9 @@ static void _call_cbs_drawTiledPixmap_5649_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); - const QPixmap &arg2 = args.read (heap); - const QPointF &arg3 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); + const QPixmap &arg2 = gsi::arg_reader() (args, heap); + const QPointF &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPaintEngine_Adaptor *)cls)->cbs_drawTiledPixmap_5649_0 (arg1, arg2, arg3); } @@ -1125,7 +1125,7 @@ static void _call_cbs_updateState_3013_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPaintEngineState &arg1 = args.read (heap); + const QPaintEngineState &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPaintEngine_Adaptor *)cls)->cbs_updateState_3013_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQPanGesture.cc b/src/gsiqt/qt4/QtGui/gsiDeclQPanGesture.cc index 7910cc5b6..547fdaee3 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQPanGesture.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQPanGesture.cc @@ -465,7 +465,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPanGesture_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -489,7 +489,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPanGesture_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -531,7 +531,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPanGesture_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -555,7 +555,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPanGesture_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -580,8 +580,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPanGesture_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -636,7 +636,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPanGesture_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQPicture.cc b/src/gsiqt/qt4/QtGui/gsiDeclQPicture.cc index 680a20bf2..b05755dc5 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQPicture.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQPicture.cc @@ -557,7 +557,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QPicture_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -601,8 +601,8 @@ static void _call_cbs_setData_3395_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - unsigned int arg2 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + unsigned int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPicture_Adaptor *)cls)->cbs_setData_3395_0 (arg1, arg2); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQPinchGesture.cc b/src/gsiqt/qt4/QtGui/gsiDeclQPinchGesture.cc index d94a52a1f..0640c483a 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQPinchGesture.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQPinchGesture.cc @@ -745,7 +745,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPinchGesture_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -769,7 +769,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPinchGesture_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -811,7 +811,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPinchGesture_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -835,7 +835,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPinchGesture_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -860,8 +860,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPinchGesture_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -916,7 +916,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPinchGesture_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQPixmap.cc b/src/gsiqt/qt4/QtGui/gsiDeclQPixmap.cc index ee5342a83..12e6f78cd 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQPixmap.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQPixmap.cc @@ -1320,7 +1320,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QPixmap_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQPlainTextDocumentLayout.cc b/src/gsiqt/qt4/QtGui/gsiDeclQPlainTextDocumentLayout.cc index 5dd133bf8..2c8be5ef9 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQPlainTextDocumentLayout.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQPlainTextDocumentLayout.cc @@ -735,7 +735,7 @@ static void _call_cbs_blockBoundingRect_c2306_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextBlock &arg1 = args.read (heap); + const QTextBlock &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRectF)((QPlainTextDocumentLayout_Adaptor *)cls)->cbs_blockBoundingRect_c2306_0 (arg1)); } @@ -758,7 +758,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextDocumentLayout_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -782,7 +782,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextDocumentLayout_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -824,7 +824,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextDocumentLayout_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -852,9 +852,9 @@ static void _call_cbs_documentChanged_2085_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextDocumentLayout_Adaptor *)cls)->cbs_documentChanged_2085_0 (arg1, arg2, arg3); } @@ -917,8 +917,8 @@ static void _call_cbs_draw_6787_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QAbstractTextDocumentLayout::PaintContext &arg2 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QAbstractTextDocumentLayout::PaintContext &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextDocumentLayout_Adaptor *)cls)->cbs_draw_6787_0 (arg1, arg2); } @@ -950,11 +950,11 @@ static void _call_cbs_drawInlineObject_8199_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QRectF &arg2 = args.read (heap); - QTextInlineObject arg3 = args.read (heap); - int arg4 = args.read (heap); - const QTextFormat &arg5 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QRectF &arg2 = gsi::arg_reader() (args, heap); + QTextInlineObject arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + const QTextFormat &arg5 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextDocumentLayout_Adaptor *)cls)->cbs_drawInlineObject_8199_0 (arg1, arg2, arg3, arg4, arg5); } @@ -978,7 +978,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPlainTextDocumentLayout_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1003,8 +1003,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPlainTextDocumentLayout_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1063,7 +1063,7 @@ static void _call_cbs_frameBoundingRect_c1615_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTextFrame *arg1 = args.read (heap); + QTextFrame *arg1 = gsi::arg_reader() (args, heap); ret.write ((QRectF)((QPlainTextDocumentLayout_Adaptor *)cls)->cbs_frameBoundingRect_c1615_0 (arg1)); } @@ -1088,8 +1088,8 @@ static void _call_cbs_hitTest_c4147_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QPlainTextDocumentLayout_Adaptor *)cls)->cbs_hitTest_c4147_0 (arg1, arg2)); } @@ -1153,9 +1153,9 @@ static void _call_cbs_positionInlineObject_5127_0 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTextInlineObject arg1 = args.read (heap); - int arg2 = args.read (heap); - const QTextFormat &arg3 = args.read (heap); + QTextInlineObject arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QTextFormat &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextDocumentLayout_Adaptor *)cls)->cbs_positionInlineObject_5127_0 (arg1, arg2, arg3); } @@ -1201,9 +1201,9 @@ static void _call_cbs_resizeInlineObject_5127_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTextInlineObject arg1 = args.read (heap); - int arg2 = args.read (heap); - const QTextFormat &arg3 = args.read (heap); + QTextInlineObject arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QTextFormat &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextDocumentLayout_Adaptor *)cls)->cbs_resizeInlineObject_5127_0 (arg1, arg2, arg3); } @@ -1241,7 +1241,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextDocumentLayout_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQPlainTextEdit.cc b/src/gsiqt/qt4/QtGui/gsiDeclQPlainTextEdit.cc index 833171cf4..e6afeb40a 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQPlainTextEdit.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQPlainTextEdit.cc @@ -2403,7 +2403,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -2481,7 +2481,7 @@ static void _call_cbs_canInsertFromMimeData_c2168_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMimeData *arg1 = args.read (heap); + const QMimeData *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPlainTextEdit_Adaptor *)cls)->cbs_canInsertFromMimeData_c2168_0 (arg1)); } @@ -2504,7 +2504,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -2528,7 +2528,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -2552,7 +2552,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -2590,7 +2590,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -2708,7 +2708,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -2772,7 +2772,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -2796,7 +2796,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -2820,7 +2820,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -2844,7 +2844,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -2887,7 +2887,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -2911,7 +2911,7 @@ static void _call_cbs_enabledChange_864_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit_Adaptor *)cls)->cbs_enabledChange_864_0 (arg1); } @@ -2935,7 +2935,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -2959,7 +2959,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPlainTextEdit_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -2984,8 +2984,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPlainTextEdit_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -3022,7 +3022,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -3060,7 +3060,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPlainTextEdit_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -3083,7 +3083,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -3121,7 +3121,7 @@ static void _call_cbs_fontChange_1801_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit_Adaptor *)cls)->cbs_fontChange_1801_0 (arg1); } @@ -3159,7 +3159,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QPlainTextEdit_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -3182,7 +3182,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -3206,7 +3206,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -3230,7 +3230,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QPlainTextEdit_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -3253,7 +3253,7 @@ static void _call_cbs_insertFromMimeData_2168_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMimeData *arg1 = args.read (heap); + const QMimeData *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit_Adaptor *)cls)->cbs_insertFromMimeData_2168_0 (arg1); } @@ -3277,7 +3277,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -3301,7 +3301,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -3345,7 +3345,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -3371,8 +3371,8 @@ static void _call_cbs_loadResource_2360_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QUrl &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QUrl &arg2 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QPlainTextEdit_Adaptor *)cls)->cbs_loadResource_2360_0 (arg1, arg2)); } @@ -3395,7 +3395,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QPlainTextEdit_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -3455,7 +3455,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -3479,7 +3479,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -3503,7 +3503,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -3527,7 +3527,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -3551,7 +3551,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -3594,7 +3594,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -3618,7 +3618,7 @@ static void _call_cbs_paletteChange_2113_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPalette &arg1 = args.read (heap); + const QPalette &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit_Adaptor *)cls)->cbs_paletteChange_2113_0 (arg1); } @@ -3693,7 +3693,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -3719,8 +3719,8 @@ static void _call_cbs_scrollContentsBy_1426_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit_Adaptor *)cls)->cbs_scrollContentsBy_1426_0 (arg1, arg2); } @@ -3819,7 +3819,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -3862,7 +3862,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -3905,7 +3905,7 @@ static void _call_cbs_styleChange_1228_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyle &arg1 = args.read (heap); + QStyle &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit_Adaptor *)cls)->cbs_styleChange_1228_0 (arg1); } @@ -3929,7 +3929,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -3967,7 +3967,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -4045,7 +4045,7 @@ static void _call_cbs_viewportEvent_1217_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPlainTextEdit_Adaptor *)cls)->cbs_viewportEvent_1217_0 (arg1)); } @@ -4068,7 +4068,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } @@ -4092,7 +4092,7 @@ static void _call_cbs_windowActivationChange_864_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit_Adaptor *)cls)->cbs_windowActivationChange_864_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQPlastiqueStyle.cc b/src/gsiqt/qt4/QtGui/gsiDeclQPlastiqueStyle.cc index fb1096b46..185e4d12d 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQPlastiqueStyle.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQPlastiqueStyle.cc @@ -1092,7 +1092,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlastiqueStyle_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1116,7 +1116,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlastiqueStyle_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1158,7 +1158,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlastiqueStyle_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -1188,10 +1188,10 @@ static void _call_cbs_drawComplexControl_c9027_0 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOptionComplex *arg2 = args.read (heap); - QPainter *arg3 = args.read (heap); - const QWidget *arg4 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOptionComplex *arg2 = gsi::arg_reader() (args, heap); + QPainter *arg3 = gsi::arg_reader() (args, heap); + const QWidget *arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlastiqueStyle_Adaptor *)cls)->cbs_drawComplexControl_c9027_0 (arg1, arg2, arg3, arg4); } @@ -1221,10 +1221,10 @@ static void _call_cbs_drawControl_c8285_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args.read (heap); - QPainter *arg3 = args.read (heap); - const QWidget *arg4 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = gsi::arg_reader() (args, heap); + QPainter *arg3 = gsi::arg_reader() (args, heap); + const QWidget *arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlastiqueStyle_Adaptor *)cls)->cbs_drawControl_c8285_0 (arg1, arg2, arg3, arg4); } @@ -1254,10 +1254,10 @@ static void _call_cbs_drawItemPixmap_c5678_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QRect &arg2 = args.read (heap); - int arg3 = args.read (heap); - const QPixmap &arg4 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QRect &arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QPixmap &arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlastiqueStyle_Adaptor *)cls)->cbs_drawItemPixmap_c5678_0 (arg1, arg2, arg3, arg4); } @@ -1293,13 +1293,13 @@ static void _call_cbs_drawItemText_c10604_1 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QRect &arg2 = args.read (heap); - int arg3 = args.read (heap); - const QPalette &arg4 = args.read (heap); - bool arg5 = args.read (heap); - const QString &arg6 = args.read (heap); - const qt_gsi::Converter::target_type & arg7 = args.read::target_type & > (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QRect &arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QPalette &arg4 = gsi::arg_reader() (args, heap); + bool arg5 = gsi::arg_reader() (args, heap); + const QString &arg6 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg7 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QPalette::NoRole), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlastiqueStyle_Adaptor *)cls)->cbs_drawItemText_c10604_1 (arg1, arg2, arg3, arg4, arg5, arg6, arg7); } @@ -1329,10 +1329,10 @@ static void _call_cbs_drawPrimitive_c8501_1 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args.read (heap); - QPainter *arg3 = args.read (heap); - const QWidget *arg4 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = gsi::arg_reader() (args, heap); + QPainter *arg3 = gsi::arg_reader() (args, heap); + const QWidget *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlastiqueStyle_Adaptor *)cls)->cbs_drawPrimitive_c8501_1 (arg1, arg2, arg3, arg4); } @@ -1356,7 +1356,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPlastiqueStyle_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1381,8 +1381,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPlastiqueStyle_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1409,9 +1409,9 @@ static void _call_cbs_generatedIconPixmap_c5776_0 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QPixmap &arg2 = args.read (heap); - const QStyleOption *arg3 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QPixmap &arg2 = gsi::arg_reader() (args, heap); + const QStyleOption *arg3 = gsi::arg_reader() (args, heap); ret.write ((QPixmap)((QPlastiqueStyle_Adaptor *)cls)->cbs_generatedIconPixmap_c5776_0 (arg1, arg2, arg3)); } @@ -1440,10 +1440,10 @@ static void _call_cbs_hitTestComplexControl_c9517_1 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOptionComplex *arg2 = args.read (heap); - const QPoint &arg3 = args.read (heap); - const QWidget *arg4 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOptionComplex *arg2 = gsi::arg_reader() (args, heap); + const QPoint &arg3 = gsi::arg_reader() (args, heap); + const QWidget *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write::target_type > ((qt_gsi::Converter::target_type)((QPlastiqueStyle_Adaptor *)cls)->cbs_hitTestComplexControl_c9517_1 (arg1, arg2, arg3, arg4)); } @@ -1470,9 +1470,9 @@ static void _call_cbs_itemPixmapRect_c4360_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); - int arg2 = args.read (heap); - const QPixmap &arg3 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QPixmap &arg3 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QPlastiqueStyle_Adaptor *)cls)->cbs_itemPixmapRect_c4360_0 (arg1, arg2, arg3)); } @@ -1503,11 +1503,11 @@ static void _call_cbs_itemTextRect_c7544_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFontMetrics &arg1 = args.read (heap); - const QRect &arg2 = args.read (heap); - int arg3 = args.read (heap); - bool arg4 = args.read (heap); - const QString &arg5 = args.read (heap); + const QFontMetrics &arg1 = gsi::arg_reader() (args, heap); + const QRect &arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + bool arg4 = gsi::arg_reader() (args, heap); + const QString &arg5 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QPlastiqueStyle_Adaptor *)cls)->cbs_itemTextRect_c7544_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -1564,9 +1564,9 @@ static void _call_cbs_pixelMetric_c6642_2 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args.read (heap); - const QWidget *arg3 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + const QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((int)((QPlastiqueStyle_Adaptor *)cls)->cbs_pixelMetric_c6642_2 (arg1, arg2, arg3)); } @@ -1589,7 +1589,7 @@ static void _call_cbs_polish_1315_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlastiqueStyle_Adaptor *)cls)->cbs_polish_1315_0 (arg1); } @@ -1613,7 +1613,7 @@ static void _call_cbs_polish_1843_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QApplication *arg1 = args.read (heap); + QApplication *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlastiqueStyle_Adaptor *)cls)->cbs_polish_1843_0 (arg1); } @@ -1637,7 +1637,7 @@ static void _call_cbs_polish_1418_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPalette &arg1 = args.read (heap); + QPalette &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlastiqueStyle_Adaptor *)cls)->cbs_polish_1418_0 (arg1); } @@ -1699,10 +1699,10 @@ static void _call_cbs_sizeFromContents_c8477_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args.read (heap); - const QSize &arg3 = args.read (heap); - const QWidget *arg4 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = gsi::arg_reader() (args, heap); + const QSize &arg3 = gsi::arg_reader() (args, heap); + const QWidget *arg4 = gsi::arg_reader() (args, heap); ret.write ((QSize)((QPlastiqueStyle_Adaptor *)cls)->cbs_sizeFromContents_c8477_0 (arg1, arg2, arg3, arg4)); } @@ -1772,9 +1772,9 @@ static void _call_cbs_standardPixmap_c6956_1 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args.read (heap); - const QWidget *arg3 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = gsi::arg_reader() (args, heap); + const QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QPixmap)((QPlastiqueStyle_Adaptor *)cls)->cbs_standardPixmap_c6956_1 (arg1, arg2, arg3)); } @@ -1803,10 +1803,10 @@ static void _call_cbs_styleHint_c8615_3 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args.read (heap); - const QWidget *arg3 = args.read (heap); - QStyleHintReturn *arg4 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + const QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + QStyleHintReturn *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((int)((QPlastiqueStyle_Adaptor *)cls)->cbs_styleHint_c8615_3 (arg1, arg2, arg3, arg4)); } @@ -1835,10 +1835,10 @@ static void _call_cbs_subControlRect_c9798_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOptionComplex *arg2 = args.read (heap); - const qt_gsi::Converter::target_type & arg3 = args.read::target_type & > (heap); - const QWidget *arg4 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOptionComplex *arg2 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg3 = gsi::arg_reader::target_type & >() (args, heap); + const QWidget *arg4 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QPlastiqueStyle_Adaptor *)cls)->cbs_subControlRect_c9798_0 (arg1, arg2, arg3, arg4)); } @@ -1865,9 +1865,9 @@ static void _call_cbs_subElementRect_c6528_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args.read (heap); - const QWidget *arg3 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = gsi::arg_reader() (args, heap); + const QWidget *arg3 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QPlastiqueStyle_Adaptor *)cls)->cbs_subElementRect_c6528_0 (arg1, arg2, arg3)); } @@ -1890,7 +1890,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlastiqueStyle_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -1914,7 +1914,7 @@ static void _call_cbs_unpolish_1315_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlastiqueStyle_Adaptor *)cls)->cbs_unpolish_1315_0 (arg1); } @@ -1938,7 +1938,7 @@ static void _call_cbs_unpolish_1843_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QApplication *arg1 = args.read (heap); + QApplication *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlastiqueStyle_Adaptor *)cls)->cbs_unpolish_1843_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQPrintDialog.cc b/src/gsiqt/qt4/QtGui/gsiDeclQPrintDialog.cc index 17bc34376..fd1c9bfb2 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQPrintDialog.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQPrintDialog.cc @@ -1437,7 +1437,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintDialog_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1480,7 +1480,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintDialog_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1504,7 +1504,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintDialog_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1528,7 +1528,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintDialog_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1552,7 +1552,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintDialog_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1619,7 +1619,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintDialog_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1683,7 +1683,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintDialog_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -1707,7 +1707,7 @@ static void _call_cbs_done_767_0 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintDialog_Adaptor *)cls)->cbs_done_767_0 (arg1); } @@ -1731,7 +1731,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintDialog_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1755,7 +1755,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintDialog_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1779,7 +1779,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintDialog_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1803,7 +1803,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintDialog_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1827,7 +1827,7 @@ static void _call_cbs_enabledChange_864_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintDialog_Adaptor *)cls)->cbs_enabledChange_864_0 (arg1); } @@ -1851,7 +1851,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintDialog_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -1875,7 +1875,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPrintDialog_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1900,8 +1900,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPrintDialog_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1961,7 +1961,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintDialog_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1999,7 +1999,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPrintDialog_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -2022,7 +2022,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintDialog_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -2060,7 +2060,7 @@ static void _call_cbs_fontChange_1801_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintDialog_Adaptor *)cls)->cbs_fontChange_1801_0 (arg1); } @@ -2084,7 +2084,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QPrintDialog_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -2107,7 +2107,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintDialog_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -2131,7 +2131,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintDialog_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2155,7 +2155,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QPrintDialog_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2178,7 +2178,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintDialog_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2202,7 +2202,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintDialog_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2246,7 +2246,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintDialog_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2270,7 +2270,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QPrintDialog_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2312,7 +2312,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintDialog_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2336,7 +2336,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintDialog_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2360,7 +2360,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintDialog_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2384,7 +2384,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintDialog_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2408,7 +2408,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintDialog_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2451,7 +2451,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintDialog_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2475,7 +2475,7 @@ static void _call_cbs_paletteChange_2113_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPalette &arg1 = args.read (heap); + const QPalette &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintDialog_Adaptor *)cls)->cbs_paletteChange_2113_0 (arg1); } @@ -2566,7 +2566,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintDialog_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2604,7 +2604,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintDialog_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2628,7 +2628,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintDialog_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2671,7 +2671,7 @@ static void _call_cbs_styleChange_1228_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyle &arg1 = args.read (heap); + QStyle &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintDialog_Adaptor *)cls)->cbs_styleChange_1228_0 (arg1); } @@ -2695,7 +2695,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintDialog_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2719,7 +2719,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintDialog_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2758,7 +2758,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintDialog_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } @@ -2782,7 +2782,7 @@ static void _call_cbs_windowActivationChange_864_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintDialog_Adaptor *)cls)->cbs_windowActivationChange_864_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQPrintEngine.cc b/src/gsiqt/qt4/QtGui/gsiDeclQPrintEngine.cc index c6e6c37f6..4de46ec1f 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQPrintEngine.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQPrintEngine.cc @@ -326,7 +326,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QPrintEngine_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -387,7 +387,7 @@ static void _call_cbs_property_c4045_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QPrintEngine_Adaptor *)cls)->cbs_property_c4045_0 (arg1)); } @@ -412,8 +412,8 @@ static void _call_cbs_setProperty_6056_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QVariant &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintEngine_Adaptor *)cls)->cbs_setProperty_6056_0 (arg1, arg2); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQPrintPreviewDialog.cc b/src/gsiqt/qt4/QtGui/gsiDeclQPrintPreviewDialog.cc index b89f9b7f8..698139c94 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQPrintPreviewDialog.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQPrintPreviewDialog.cc @@ -1323,7 +1323,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewDialog_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1366,7 +1366,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewDialog_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1390,7 +1390,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewDialog_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1414,7 +1414,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewDialog_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1438,7 +1438,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewDialog_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1505,7 +1505,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewDialog_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1569,7 +1569,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewDialog_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -1593,7 +1593,7 @@ static void _call_cbs_done_767_0 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewDialog_Adaptor *)cls)->cbs_done_767_0 (arg1); } @@ -1617,7 +1617,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewDialog_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1641,7 +1641,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewDialog_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1665,7 +1665,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewDialog_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1689,7 +1689,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewDialog_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1713,7 +1713,7 @@ static void _call_cbs_enabledChange_864_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewDialog_Adaptor *)cls)->cbs_enabledChange_864_0 (arg1); } @@ -1737,7 +1737,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewDialog_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -1761,7 +1761,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPrintPreviewDialog_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1786,8 +1786,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPrintPreviewDialog_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1828,7 +1828,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewDialog_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1866,7 +1866,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPrintPreviewDialog_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -1889,7 +1889,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewDialog_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -1927,7 +1927,7 @@ static void _call_cbs_fontChange_1801_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewDialog_Adaptor *)cls)->cbs_fontChange_1801_0 (arg1); } @@ -1951,7 +1951,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QPrintPreviewDialog_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -1974,7 +1974,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewDialog_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -1998,7 +1998,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewDialog_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2022,7 +2022,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QPrintPreviewDialog_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2045,7 +2045,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewDialog_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2069,7 +2069,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewDialog_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2113,7 +2113,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewDialog_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2137,7 +2137,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QPrintPreviewDialog_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2179,7 +2179,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewDialog_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2203,7 +2203,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewDialog_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2227,7 +2227,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewDialog_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2251,7 +2251,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewDialog_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2275,7 +2275,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewDialog_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2318,7 +2318,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewDialog_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2360,7 +2360,7 @@ static void _call_cbs_paletteChange_2113_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPalette &arg1 = args.read (heap); + const QPalette &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewDialog_Adaptor *)cls)->cbs_paletteChange_2113_0 (arg1); } @@ -2451,7 +2451,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewDialog_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2489,7 +2489,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewDialog_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2513,7 +2513,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewDialog_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2556,7 +2556,7 @@ static void _call_cbs_styleChange_1228_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyle &arg1 = args.read (heap); + QStyle &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewDialog_Adaptor *)cls)->cbs_styleChange_1228_0 (arg1); } @@ -2580,7 +2580,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewDialog_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2604,7 +2604,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewDialog_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2643,7 +2643,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewDialog_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } @@ -2667,7 +2667,7 @@ static void _call_cbs_windowActivationChange_864_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewDialog_Adaptor *)cls)->cbs_windowActivationChange_864_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQPrintPreviewWidget.cc b/src/gsiqt/qt4/QtGui/gsiDeclQPrintPreviewWidget.cc index b30e0ed33..4f80bfb78 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQPrintPreviewWidget.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQPrintPreviewWidget.cc @@ -1556,7 +1556,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewWidget_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1580,7 +1580,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewWidget_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1604,7 +1604,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewWidget_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1628,7 +1628,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewWidget_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1652,7 +1652,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewWidget_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1719,7 +1719,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewWidget_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1783,7 +1783,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewWidget_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -1807,7 +1807,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewWidget_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1831,7 +1831,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewWidget_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1855,7 +1855,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewWidget_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1879,7 +1879,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewWidget_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1903,7 +1903,7 @@ static void _call_cbs_enabledChange_864_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewWidget_Adaptor *)cls)->cbs_enabledChange_864_0 (arg1); } @@ -1927,7 +1927,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewWidget_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -1951,7 +1951,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPrintPreviewWidget_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1976,8 +1976,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPrintPreviewWidget_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -2000,7 +2000,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewWidget_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -2038,7 +2038,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPrintPreviewWidget_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -2061,7 +2061,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewWidget_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -2099,7 +2099,7 @@ static void _call_cbs_fontChange_1801_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewWidget_Adaptor *)cls)->cbs_fontChange_1801_0 (arg1); } @@ -2123,7 +2123,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QPrintPreviewWidget_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -2146,7 +2146,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewWidget_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -2170,7 +2170,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewWidget_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2194,7 +2194,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QPrintPreviewWidget_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2217,7 +2217,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewWidget_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2241,7 +2241,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewWidget_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2285,7 +2285,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewWidget_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2309,7 +2309,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QPrintPreviewWidget_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2351,7 +2351,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewWidget_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2375,7 +2375,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewWidget_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2399,7 +2399,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewWidget_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2423,7 +2423,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewWidget_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2447,7 +2447,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewWidget_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2490,7 +2490,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewWidget_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2532,7 +2532,7 @@ static void _call_cbs_paletteChange_2113_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPalette &arg1 = args.read (heap); + const QPalette &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewWidget_Adaptor *)cls)->cbs_paletteChange_2113_0 (arg1); } @@ -2603,7 +2603,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewWidget_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2641,7 +2641,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewWidget_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2665,7 +2665,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewWidget_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2708,7 +2708,7 @@ static void _call_cbs_styleChange_1228_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyle &arg1 = args.read (heap); + QStyle &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewWidget_Adaptor *)cls)->cbs_styleChange_1228_0 (arg1); } @@ -2732,7 +2732,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewWidget_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2756,7 +2756,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewWidget_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2795,7 +2795,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewWidget_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } @@ -2819,7 +2819,7 @@ static void _call_cbs_windowActivationChange_864_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewWidget_Adaptor *)cls)->cbs_windowActivationChange_864_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQPrinter.cc b/src/gsiqt/qt4/QtGui/gsiDeclQPrinter.cc index bc37e347c..f2f15e244 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQPrinter.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQPrinter.cc @@ -1289,7 +1289,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QPrinter_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQProgressBar.cc b/src/gsiqt/qt4/QtGui/gsiDeclQProgressBar.cc index d05d0dcc8..5a7fcbac3 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQProgressBar.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQProgressBar.cc @@ -1508,7 +1508,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressBar_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1532,7 +1532,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressBar_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1556,7 +1556,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressBar_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1580,7 +1580,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressBar_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1604,7 +1604,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressBar_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1671,7 +1671,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressBar_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1735,7 +1735,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressBar_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -1759,7 +1759,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressBar_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1783,7 +1783,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressBar_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1807,7 +1807,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressBar_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1831,7 +1831,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressBar_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1855,7 +1855,7 @@ static void _call_cbs_enabledChange_864_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressBar_Adaptor *)cls)->cbs_enabledChange_864_0 (arg1); } @@ -1879,7 +1879,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressBar_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -1903,7 +1903,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QProgressBar_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1928,8 +1928,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QProgressBar_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1952,7 +1952,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressBar_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1990,7 +1990,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QProgressBar_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -2013,7 +2013,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressBar_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -2051,7 +2051,7 @@ static void _call_cbs_fontChange_1801_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressBar_Adaptor *)cls)->cbs_fontChange_1801_0 (arg1); } @@ -2075,7 +2075,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QProgressBar_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -2098,7 +2098,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressBar_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -2141,7 +2141,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressBar_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2165,7 +2165,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QProgressBar_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2188,7 +2188,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressBar_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2212,7 +2212,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressBar_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2256,7 +2256,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressBar_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2280,7 +2280,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QProgressBar_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2322,7 +2322,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressBar_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2346,7 +2346,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressBar_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2370,7 +2370,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressBar_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2394,7 +2394,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressBar_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2418,7 +2418,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressBar_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2461,7 +2461,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressBar_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2485,7 +2485,7 @@ static void _call_cbs_paletteChange_2113_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPalette &arg1 = args.read (heap); + const QPalette &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressBar_Adaptor *)cls)->cbs_paletteChange_2113_0 (arg1); } @@ -2542,7 +2542,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressBar_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2580,7 +2580,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressBar_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2604,7 +2604,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressBar_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2647,7 +2647,7 @@ static void _call_cbs_styleChange_1228_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyle &arg1 = args.read (heap); + QStyle &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressBar_Adaptor *)cls)->cbs_styleChange_1228_0 (arg1); } @@ -2671,7 +2671,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressBar_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2714,7 +2714,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressBar_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2771,7 +2771,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressBar_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } @@ -2795,7 +2795,7 @@ static void _call_cbs_windowActivationChange_864_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressBar_Adaptor *)cls)->cbs_windowActivationChange_864_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQProgressDialog.cc b/src/gsiqt/qt4/QtGui/gsiDeclQProgressDialog.cc index fac077c3b..e11fcf162 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQProgressDialog.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQProgressDialog.cc @@ -1714,7 +1714,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1771,7 +1771,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1795,7 +1795,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1819,7 +1819,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1843,7 +1843,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1910,7 +1910,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1974,7 +1974,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -1998,7 +1998,7 @@ static void _call_cbs_done_767_0 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog_Adaptor *)cls)->cbs_done_767_0 (arg1); } @@ -2022,7 +2022,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -2046,7 +2046,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -2070,7 +2070,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -2094,7 +2094,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -2118,7 +2118,7 @@ static void _call_cbs_enabledChange_864_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog_Adaptor *)cls)->cbs_enabledChange_864_0 (arg1); } @@ -2142,7 +2142,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -2166,7 +2166,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QProgressDialog_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -2191,8 +2191,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QProgressDialog_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -2233,7 +2233,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -2271,7 +2271,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QProgressDialog_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -2294,7 +2294,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -2332,7 +2332,7 @@ static void _call_cbs_fontChange_1801_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog_Adaptor *)cls)->cbs_fontChange_1801_0 (arg1); } @@ -2371,7 +2371,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QProgressDialog_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -2394,7 +2394,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -2418,7 +2418,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2442,7 +2442,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QProgressDialog_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2465,7 +2465,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2489,7 +2489,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2533,7 +2533,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2557,7 +2557,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QProgressDialog_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2599,7 +2599,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2623,7 +2623,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2647,7 +2647,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2671,7 +2671,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2695,7 +2695,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2738,7 +2738,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2762,7 +2762,7 @@ static void _call_cbs_paletteChange_2113_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPalette &arg1 = args.read (heap); + const QPalette &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog_Adaptor *)cls)->cbs_paletteChange_2113_0 (arg1); } @@ -2853,7 +2853,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2891,7 +2891,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2915,7 +2915,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2958,7 +2958,7 @@ static void _call_cbs_styleChange_1228_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyle &arg1 = args.read (heap); + QStyle &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog_Adaptor *)cls)->cbs_styleChange_1228_0 (arg1); } @@ -2982,7 +2982,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -3006,7 +3006,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -3045,7 +3045,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } @@ -3069,7 +3069,7 @@ static void _call_cbs_windowActivationChange_864_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog_Adaptor *)cls)->cbs_windowActivationChange_864_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQPushButton.cc b/src/gsiqt/qt4/QtGui/gsiDeclQPushButton.cc index 946335266..d62b629de 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQPushButton.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQPushButton.cc @@ -1407,7 +1407,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPushButton_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1431,7 +1431,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPushButton_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1475,7 +1475,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPushButton_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1517,7 +1517,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPushButton_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1541,7 +1541,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPushButton_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1608,7 +1608,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPushButton_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1672,7 +1672,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPushButton_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -1696,7 +1696,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPushButton_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1720,7 +1720,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPushButton_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1744,7 +1744,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPushButton_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1768,7 +1768,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPushButton_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1792,7 +1792,7 @@ static void _call_cbs_enabledChange_864_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPushButton_Adaptor *)cls)->cbs_enabledChange_864_0 (arg1); } @@ -1816,7 +1816,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPushButton_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -1840,7 +1840,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPushButton_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1865,8 +1865,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPushButton_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1889,7 +1889,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPushButton_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1927,7 +1927,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPushButton_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -1950,7 +1950,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPushButton_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -1988,7 +1988,7 @@ static void _call_cbs_fontChange_1801_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPushButton_Adaptor *)cls)->cbs_fontChange_1801_0 (arg1); } @@ -2012,7 +2012,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QPushButton_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -2035,7 +2035,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPushButton_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -2059,7 +2059,7 @@ static void _call_cbs_hitButton_c1916_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPushButton_Adaptor *)cls)->cbs_hitButton_c1916_0 (arg1)); } @@ -2101,7 +2101,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPushButton_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2125,7 +2125,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QPushButton_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2148,7 +2148,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPushButton_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2172,7 +2172,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPushButton_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2216,7 +2216,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPushButton_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2240,7 +2240,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QPushButton_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2282,7 +2282,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPushButton_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2306,7 +2306,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPushButton_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2330,7 +2330,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPushButton_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2354,7 +2354,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPushButton_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2378,7 +2378,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPushButton_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2441,7 +2441,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPushButton_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2465,7 +2465,7 @@ static void _call_cbs_paletteChange_2113_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPalette &arg1 = args.read (heap); + const QPalette &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPushButton_Adaptor *)cls)->cbs_paletteChange_2113_0 (arg1); } @@ -2550,7 +2550,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPushButton_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2588,7 +2588,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPushButton_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2612,7 +2612,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPushButton_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2655,7 +2655,7 @@ static void _call_cbs_styleChange_1228_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyle &arg1 = args.read (heap); + QStyle &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPushButton_Adaptor *)cls)->cbs_styleChange_1228_0 (arg1); } @@ -2679,7 +2679,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPushButton_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2703,7 +2703,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPushButton_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2760,7 +2760,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPushButton_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } @@ -2784,7 +2784,7 @@ static void _call_cbs_windowActivationChange_864_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPushButton_Adaptor *)cls)->cbs_windowActivationChange_864_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQRadioButton.cc b/src/gsiqt/qt4/QtGui/gsiDeclQRadioButton.cc index 470f72e09..1d8e2fcfd 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQRadioButton.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQRadioButton.cc @@ -1189,7 +1189,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioButton_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1213,7 +1213,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioButton_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1257,7 +1257,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioButton_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1299,7 +1299,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioButton_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1323,7 +1323,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioButton_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1390,7 +1390,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioButton_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1454,7 +1454,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioButton_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -1478,7 +1478,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioButton_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1502,7 +1502,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioButton_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1526,7 +1526,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioButton_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1550,7 +1550,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioButton_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1574,7 +1574,7 @@ static void _call_cbs_enabledChange_864_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioButton_Adaptor *)cls)->cbs_enabledChange_864_0 (arg1); } @@ -1598,7 +1598,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioButton_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -1622,7 +1622,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QRadioButton_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1647,8 +1647,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QRadioButton_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1671,7 +1671,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioButton_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1709,7 +1709,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QRadioButton_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -1732,7 +1732,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioButton_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -1770,7 +1770,7 @@ static void _call_cbs_fontChange_1801_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioButton_Adaptor *)cls)->cbs_fontChange_1801_0 (arg1); } @@ -1794,7 +1794,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QRadioButton_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -1817,7 +1817,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioButton_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -1841,7 +1841,7 @@ static void _call_cbs_hitButton_c1916_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QRadioButton_Adaptor *)cls)->cbs_hitButton_c1916_0 (arg1)); } @@ -1883,7 +1883,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioButton_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -1907,7 +1907,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QRadioButton_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -1930,7 +1930,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioButton_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -1954,7 +1954,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioButton_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -1998,7 +1998,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioButton_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2022,7 +2022,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QRadioButton_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2064,7 +2064,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioButton_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2088,7 +2088,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioButton_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2112,7 +2112,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioButton_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2136,7 +2136,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioButton_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2160,7 +2160,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioButton_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2223,7 +2223,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioButton_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2247,7 +2247,7 @@ static void _call_cbs_paletteChange_2113_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPalette &arg1 = args.read (heap); + const QPalette &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioButton_Adaptor *)cls)->cbs_paletteChange_2113_0 (arg1); } @@ -2332,7 +2332,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioButton_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2370,7 +2370,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioButton_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2394,7 +2394,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioButton_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2437,7 +2437,7 @@ static void _call_cbs_styleChange_1228_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyle &arg1 = args.read (heap); + QStyle &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioButton_Adaptor *)cls)->cbs_styleChange_1228_0 (arg1); } @@ -2461,7 +2461,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioButton_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2485,7 +2485,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioButton_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2542,7 +2542,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioButton_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } @@ -2566,7 +2566,7 @@ static void _call_cbs_windowActivationChange_864_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioButton_Adaptor *)cls)->cbs_windowActivationChange_864_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQRegExpValidator.cc b/src/gsiqt/qt4/QtGui/gsiDeclQRegExpValidator.cc index d360157e9..56a2ec50d 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQRegExpValidator.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQRegExpValidator.cc @@ -452,7 +452,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRegExpValidator_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -476,7 +476,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRegExpValidator_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -518,7 +518,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRegExpValidator_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -542,7 +542,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QRegExpValidator_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -567,8 +567,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QRegExpValidator_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -591,7 +591,7 @@ static void _call_cbs_fixup_c1330_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QString &arg1 = args.read (heap); + QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRegExpValidator_Adaptor *)cls)->cbs_fixup_c1330_0 (arg1); } @@ -647,7 +647,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRegExpValidator_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -673,8 +673,8 @@ static void _call_cbs_validate_c2171_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QString &arg1 = args.read (heap); - int &arg2 = args.read (heap); + QString &arg1 = gsi::arg_reader() (args, heap); + int &arg2 = gsi::arg_reader() (args, heap); ret.write::target_type > ((qt_gsi::Converter::target_type)((QRegExpValidator_Adaptor *)cls)->cbs_validate_c2171_0 (arg1, arg2)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQRubberBand.cc b/src/gsiqt/qt4/QtGui/gsiDeclQRubberBand.cc index 185f4c63f..06088d600 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQRubberBand.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQRubberBand.cc @@ -1223,7 +1223,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRubberBand_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1247,7 +1247,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRubberBand_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1271,7 +1271,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRubberBand_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1295,7 +1295,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRubberBand_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1319,7 +1319,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRubberBand_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1386,7 +1386,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRubberBand_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1450,7 +1450,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRubberBand_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -1474,7 +1474,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRubberBand_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1498,7 +1498,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRubberBand_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1522,7 +1522,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRubberBand_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1546,7 +1546,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRubberBand_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1570,7 +1570,7 @@ static void _call_cbs_enabledChange_864_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRubberBand_Adaptor *)cls)->cbs_enabledChange_864_0 (arg1); } @@ -1594,7 +1594,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRubberBand_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -1618,7 +1618,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QRubberBand_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1643,8 +1643,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QRubberBand_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1667,7 +1667,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRubberBand_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1705,7 +1705,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QRubberBand_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -1728,7 +1728,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRubberBand_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -1766,7 +1766,7 @@ static void _call_cbs_fontChange_1801_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRubberBand_Adaptor *)cls)->cbs_fontChange_1801_0 (arg1); } @@ -1790,7 +1790,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QRubberBand_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -1813,7 +1813,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRubberBand_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -1856,7 +1856,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRubberBand_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -1880,7 +1880,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QRubberBand_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -1903,7 +1903,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRubberBand_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -1927,7 +1927,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRubberBand_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -1971,7 +1971,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRubberBand_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -1995,7 +1995,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QRubberBand_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2037,7 +2037,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRubberBand_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2061,7 +2061,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRubberBand_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2085,7 +2085,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRubberBand_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2109,7 +2109,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRubberBand_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2133,7 +2133,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRubberBand_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2176,7 +2176,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRubberBand_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2200,7 +2200,7 @@ static void _call_cbs_paletteChange_2113_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPalette &arg1 = args.read (heap); + const QPalette &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRubberBand_Adaptor *)cls)->cbs_paletteChange_2113_0 (arg1); } @@ -2257,7 +2257,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRubberBand_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2295,7 +2295,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRubberBand_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2319,7 +2319,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRubberBand_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2362,7 +2362,7 @@ static void _call_cbs_styleChange_1228_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyle &arg1 = args.read (heap); + QStyle &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRubberBand_Adaptor *)cls)->cbs_styleChange_1228_0 (arg1); } @@ -2386,7 +2386,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRubberBand_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2410,7 +2410,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRubberBand_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2449,7 +2449,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRubberBand_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } @@ -2473,7 +2473,7 @@ static void _call_cbs_windowActivationChange_864_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRubberBand_Adaptor *)cls)->cbs_windowActivationChange_864_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQScrollArea.cc b/src/gsiqt/qt4/QtGui/gsiDeclQScrollArea.cc index 2afd5728a..4ea8784bd 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQScrollArea.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQScrollArea.cc @@ -1330,7 +1330,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollArea_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1354,7 +1354,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollArea_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1378,7 +1378,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollArea_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1402,7 +1402,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollArea_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1426,7 +1426,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollArea_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1493,7 +1493,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollArea_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1557,7 +1557,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollArea_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -1581,7 +1581,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollArea_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1605,7 +1605,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollArea_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1629,7 +1629,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollArea_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1672,7 +1672,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollArea_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1696,7 +1696,7 @@ static void _call_cbs_enabledChange_864_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollArea_Adaptor *)cls)->cbs_enabledChange_864_0 (arg1); } @@ -1720,7 +1720,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollArea_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -1744,7 +1744,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QScrollArea_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1769,8 +1769,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QScrollArea_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1793,7 +1793,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollArea_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1831,7 +1831,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QScrollArea_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -1854,7 +1854,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollArea_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -1892,7 +1892,7 @@ static void _call_cbs_fontChange_1801_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollArea_Adaptor *)cls)->cbs_fontChange_1801_0 (arg1); } @@ -1916,7 +1916,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QScrollArea_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -1939,7 +1939,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollArea_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -1963,7 +1963,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollArea_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -1987,7 +1987,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QScrollArea_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2010,7 +2010,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollArea_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2034,7 +2034,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollArea_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2078,7 +2078,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollArea_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2102,7 +2102,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QScrollArea_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2144,7 +2144,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollArea_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2168,7 +2168,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollArea_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2192,7 +2192,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollArea_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2216,7 +2216,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollArea_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2240,7 +2240,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollArea_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2283,7 +2283,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollArea_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2307,7 +2307,7 @@ static void _call_cbs_paletteChange_2113_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPalette &arg1 = args.read (heap); + const QPalette &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollArea_Adaptor *)cls)->cbs_paletteChange_2113_0 (arg1); } @@ -2364,7 +2364,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollArea_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2390,8 +2390,8 @@ static void _call_cbs_scrollContentsBy_1426_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollArea_Adaptor *)cls)->cbs_scrollContentsBy_1426_0 (arg1, arg2); } @@ -2476,7 +2476,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollArea_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2519,7 +2519,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollArea_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2562,7 +2562,7 @@ static void _call_cbs_styleChange_1228_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyle &arg1 = args.read (heap); + QStyle &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollArea_Adaptor *)cls)->cbs_styleChange_1228_0 (arg1); } @@ -2586,7 +2586,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollArea_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2610,7 +2610,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollArea_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2649,7 +2649,7 @@ static void _call_cbs_viewportEvent_1217_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QScrollArea_Adaptor *)cls)->cbs_viewportEvent_1217_0 (arg1)); } @@ -2672,7 +2672,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollArea_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } @@ -2696,7 +2696,7 @@ static void _call_cbs_windowActivationChange_864_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollArea_Adaptor *)cls)->cbs_windowActivationChange_864_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQScrollBar.cc b/src/gsiqt/qt4/QtGui/gsiDeclQScrollBar.cc index 2f0a0b53c..88d233203 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQScrollBar.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQScrollBar.cc @@ -1200,7 +1200,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollBar_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1242,7 +1242,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollBar_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1266,7 +1266,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollBar_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1290,7 +1290,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollBar_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1314,7 +1314,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollBar_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1381,7 +1381,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollBar_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1445,7 +1445,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollBar_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -1469,7 +1469,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollBar_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1493,7 +1493,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollBar_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1517,7 +1517,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollBar_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1541,7 +1541,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollBar_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1565,7 +1565,7 @@ static void _call_cbs_enabledChange_864_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollBar_Adaptor *)cls)->cbs_enabledChange_864_0 (arg1); } @@ -1589,7 +1589,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollBar_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -1613,7 +1613,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QScrollBar_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1638,8 +1638,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QScrollBar_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1662,7 +1662,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollBar_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1700,7 +1700,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QScrollBar_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -1723,7 +1723,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollBar_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -1761,7 +1761,7 @@ static void _call_cbs_fontChange_1801_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollBar_Adaptor *)cls)->cbs_fontChange_1801_0 (arg1); } @@ -1785,7 +1785,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QScrollBar_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -1808,7 +1808,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollBar_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -1851,7 +1851,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollBar_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -1875,7 +1875,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QScrollBar_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -1898,7 +1898,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollBar_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -1922,7 +1922,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollBar_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -1966,7 +1966,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollBar_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -1990,7 +1990,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QScrollBar_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2032,7 +2032,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollBar_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2056,7 +2056,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollBar_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2080,7 +2080,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollBar_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2104,7 +2104,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollBar_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2128,7 +2128,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollBar_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2171,7 +2171,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollBar_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2195,7 +2195,7 @@ static void _call_cbs_paletteChange_2113_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPalette &arg1 = args.read (heap); + const QPalette &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollBar_Adaptor *)cls)->cbs_paletteChange_2113_0 (arg1); } @@ -2287,7 +2287,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollBar_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2350,7 +2350,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollBar_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2374,7 +2374,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollBar_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2417,7 +2417,7 @@ static void _call_cbs_sliderChange_3257_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollBar_Adaptor *)cls)->cbs_sliderChange_3257_0 (arg1); } @@ -2487,7 +2487,7 @@ static void _call_cbs_styleChange_1228_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyle &arg1 = args.read (heap); + QStyle &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollBar_Adaptor *)cls)->cbs_styleChange_1228_0 (arg1); } @@ -2511,7 +2511,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollBar_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2535,7 +2535,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollBar_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2592,7 +2592,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollBar_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } @@ -2616,7 +2616,7 @@ static void _call_cbs_windowActivationChange_864_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollBar_Adaptor *)cls)->cbs_windowActivationChange_864_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQShortcut.cc b/src/gsiqt/qt4/QtGui/gsiDeclQShortcut.cc index 409c548e5..eeb317524 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQShortcut.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQShortcut.cc @@ -646,7 +646,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QShortcut_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -670,7 +670,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QShortcut_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -712,7 +712,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QShortcut_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -736,7 +736,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QShortcut_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -761,8 +761,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QShortcut_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -817,7 +817,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QShortcut_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQSizeGrip.cc b/src/gsiqt/qt4/QtGui/gsiDeclQSizeGrip.cc index ec6834fd8..9b94a45fc 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQSizeGrip.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQSizeGrip.cc @@ -1088,7 +1088,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSizeGrip_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1112,7 +1112,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSizeGrip_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1136,7 +1136,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSizeGrip_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1160,7 +1160,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSizeGrip_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1184,7 +1184,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSizeGrip_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1251,7 +1251,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSizeGrip_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1315,7 +1315,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSizeGrip_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -1339,7 +1339,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSizeGrip_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1363,7 +1363,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSizeGrip_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1387,7 +1387,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSizeGrip_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1411,7 +1411,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSizeGrip_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1435,7 +1435,7 @@ static void _call_cbs_enabledChange_864_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSizeGrip_Adaptor *)cls)->cbs_enabledChange_864_0 (arg1); } @@ -1459,7 +1459,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSizeGrip_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -1483,7 +1483,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSizeGrip_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1508,8 +1508,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSizeGrip_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1532,7 +1532,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSizeGrip_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1570,7 +1570,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSizeGrip_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -1593,7 +1593,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSizeGrip_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -1631,7 +1631,7 @@ static void _call_cbs_fontChange_1801_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSizeGrip_Adaptor *)cls)->cbs_fontChange_1801_0 (arg1); } @@ -1655,7 +1655,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QSizeGrip_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -1678,7 +1678,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSizeGrip_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -1702,7 +1702,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSizeGrip_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -1726,7 +1726,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QSizeGrip_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -1749,7 +1749,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSizeGrip_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -1773,7 +1773,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSizeGrip_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -1817,7 +1817,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSizeGrip_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -1841,7 +1841,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QSizeGrip_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -1883,7 +1883,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSizeGrip_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -1907,7 +1907,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSizeGrip_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -1931,7 +1931,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSizeGrip_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -1955,7 +1955,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSizeGrip_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -1979,7 +1979,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSizeGrip_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2022,7 +2022,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSizeGrip_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2046,7 +2046,7 @@ static void _call_cbs_paletteChange_2113_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPalette &arg1 = args.read (heap); + const QPalette &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSizeGrip_Adaptor *)cls)->cbs_paletteChange_2113_0 (arg1); } @@ -2103,7 +2103,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSizeGrip_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2141,7 +2141,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSizeGrip_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2165,7 +2165,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSizeGrip_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2208,7 +2208,7 @@ static void _call_cbs_styleChange_1228_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyle &arg1 = args.read (heap); + QStyle &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSizeGrip_Adaptor *)cls)->cbs_styleChange_1228_0 (arg1); } @@ -2232,7 +2232,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSizeGrip_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2256,7 +2256,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSizeGrip_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2295,7 +2295,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSizeGrip_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } @@ -2319,7 +2319,7 @@ static void _call_cbs_windowActivationChange_864_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSizeGrip_Adaptor *)cls)->cbs_windowActivationChange_864_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQSlider.cc b/src/gsiqt/qt4/QtGui/gsiDeclQSlider.cc index 6aeadc6eb..e3ec384cd 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQSlider.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQSlider.cc @@ -1290,7 +1290,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSlider_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1332,7 +1332,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSlider_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1356,7 +1356,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSlider_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1380,7 +1380,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSlider_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1404,7 +1404,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSlider_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1471,7 +1471,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSlider_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1535,7 +1535,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSlider_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -1559,7 +1559,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSlider_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1583,7 +1583,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSlider_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1607,7 +1607,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSlider_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1631,7 +1631,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSlider_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1655,7 +1655,7 @@ static void _call_cbs_enabledChange_864_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSlider_Adaptor *)cls)->cbs_enabledChange_864_0 (arg1); } @@ -1679,7 +1679,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSlider_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -1703,7 +1703,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSlider_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1728,8 +1728,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSlider_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1752,7 +1752,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSlider_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1790,7 +1790,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSlider_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -1813,7 +1813,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSlider_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -1851,7 +1851,7 @@ static void _call_cbs_fontChange_1801_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSlider_Adaptor *)cls)->cbs_fontChange_1801_0 (arg1); } @@ -1875,7 +1875,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QSlider_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -1898,7 +1898,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSlider_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -1941,7 +1941,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSlider_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -1965,7 +1965,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QSlider_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -1988,7 +1988,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSlider_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2012,7 +2012,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSlider_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2056,7 +2056,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSlider_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2080,7 +2080,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QSlider_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2122,7 +2122,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSlider_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2146,7 +2146,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSlider_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2170,7 +2170,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSlider_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2194,7 +2194,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSlider_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2218,7 +2218,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSlider_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2261,7 +2261,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSlider_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2285,7 +2285,7 @@ static void _call_cbs_paletteChange_2113_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPalette &arg1 = args.read (heap); + const QPalette &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSlider_Adaptor *)cls)->cbs_paletteChange_2113_0 (arg1); } @@ -2377,7 +2377,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSlider_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2440,7 +2440,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSlider_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2464,7 +2464,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSlider_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2507,7 +2507,7 @@ static void _call_cbs_sliderChange_3257_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSlider_Adaptor *)cls)->cbs_sliderChange_3257_0 (arg1); } @@ -2577,7 +2577,7 @@ static void _call_cbs_styleChange_1228_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyle &arg1 = args.read (heap); + QStyle &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSlider_Adaptor *)cls)->cbs_styleChange_1228_0 (arg1); } @@ -2601,7 +2601,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSlider_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2625,7 +2625,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSlider_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2682,7 +2682,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSlider_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } @@ -2706,7 +2706,7 @@ static void _call_cbs_windowActivationChange_864_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSlider_Adaptor *)cls)->cbs_windowActivationChange_864_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQSortFilterProxyModel.cc b/src/gsiqt/qt4/QtGui/gsiDeclQSortFilterProxyModel.cc index 92a9df04d..9f4aeb8e0 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQSortFilterProxyModel.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQSortFilterProxyModel.cc @@ -2350,7 +2350,7 @@ static void _call_cbs_buddy_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QSortFilterProxyModel_Adaptor *)cls)->cbs_buddy_c2395_0 (arg1)); } @@ -2373,7 +2373,7 @@ static void _call_cbs_canFetchMore_c2395_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSortFilterProxyModel_Adaptor *)cls)->cbs_canFetchMore_c2395_0 (arg1)); } @@ -2440,7 +2440,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSortFilterProxyModel_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -2464,7 +2464,7 @@ static void _call_cbs_columnCount_c2395_1 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((int)((QSortFilterProxyModel_Adaptor *)cls)->cbs_columnCount_c2395_1 (arg1)); } @@ -2559,7 +2559,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSortFilterProxyModel_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -2585,8 +2585,8 @@ static void _call_cbs_data_c3054_1 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::DisplayRole, heap); ret.write ((QVariant)((QSortFilterProxyModel_Adaptor *)cls)->cbs_data_c3054_1 (arg1, arg2)); } @@ -2675,7 +2675,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSortFilterProxyModel_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -2707,11 +2707,11 @@ static void _call_cbs_dropMimeData_7425_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMimeData *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - const QModelIndex &arg5 = args.read (heap); + const QMimeData *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + const QModelIndex &arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSortFilterProxyModel_Adaptor *)cls)->cbs_dropMimeData_7425_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -2861,7 +2861,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSortFilterProxyModel_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -2886,8 +2886,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSortFilterProxyModel_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -2910,7 +2910,7 @@ static void _call_cbs_fetchMore_2395_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSortFilterProxyModel_Adaptor *)cls)->cbs_fetchMore_2395_0 (arg1); } @@ -2936,8 +2936,8 @@ static void _call_cbs_filterAcceptsColumn_c3054_0 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSortFilterProxyModel_Adaptor *)cls)->cbs_filterAcceptsColumn_c3054_0 (arg1, arg2)); } @@ -2962,8 +2962,8 @@ static void _call_cbs_filterAcceptsRow_c3054_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSortFilterProxyModel_Adaptor *)cls)->cbs_filterAcceptsRow_c3054_0 (arg1, arg2)); } @@ -3001,7 +3001,7 @@ static void _call_cbs_flags_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QFlags)((QSortFilterProxyModel_Adaptor *)cls)->cbs_flags_c2395_0 (arg1)); } @@ -3024,7 +3024,7 @@ static void _call_cbs_hasChildren_c2395_1 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QSortFilterProxyModel_Adaptor *)cls)->cbs_hasChildren_c2395_1 (arg1)); } @@ -3051,9 +3051,9 @@ static void _call_cbs_headerData_c3231_1 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::DisplayRole, heap); ret.write ((QVariant)((QSortFilterProxyModel_Adaptor *)cls)->cbs_headerData_c3231_1 (arg1, arg2, arg3)); } @@ -3104,9 +3104,9 @@ static void _call_cbs_index_c3713_1 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((QModelIndex)((QSortFilterProxyModel_Adaptor *)cls)->cbs_index_c3713_1 (arg1, arg2, arg3)); } @@ -3133,9 +3133,9 @@ static void _call_cbs_insertColumns_3713_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QSortFilterProxyModel_Adaptor *)cls)->cbs_insertColumns_3713_1 (arg1, arg2, arg3)); } @@ -3162,9 +3162,9 @@ static void _call_cbs_insertRows_3713_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QSortFilterProxyModel_Adaptor *)cls)->cbs_insertRows_3713_1 (arg1, arg2, arg3)); } @@ -3202,7 +3202,7 @@ static void _call_cbs_itemData_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QMap)((QSortFilterProxyModel_Adaptor *)cls)->cbs_itemData_c2395_0 (arg1)); } @@ -3255,8 +3255,8 @@ static void _call_cbs_lessThan_c4682_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSortFilterProxyModel_Adaptor *)cls)->cbs_lessThan_c4682_0 (arg1, arg2)); } @@ -3279,7 +3279,7 @@ static void _call_cbs_mapFromSource_c2395_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QSortFilterProxyModel_Adaptor *)cls)->cbs_mapFromSource_c2395_0 (arg1)); } @@ -3302,7 +3302,7 @@ static void _call_cbs_mapSelectionFromSource_c2727_0 (const qt_gsi::GenericMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QItemSelection &arg1 = args.read (heap); + const QItemSelection &arg1 = gsi::arg_reader() (args, heap); ret.write ((QItemSelection)((QSortFilterProxyModel_Adaptor *)cls)->cbs_mapSelectionFromSource_c2727_0 (arg1)); } @@ -3325,7 +3325,7 @@ static void _call_cbs_mapSelectionToSource_c2727_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QItemSelection &arg1 = args.read (heap); + const QItemSelection &arg1 = gsi::arg_reader() (args, heap); ret.write ((QItemSelection)((QSortFilterProxyModel_Adaptor *)cls)->cbs_mapSelectionToSource_c2727_0 (arg1)); } @@ -3348,7 +3348,7 @@ static void _call_cbs_mapToSource_c2395_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QSortFilterProxyModel_Adaptor *)cls)->cbs_mapToSource_c2395_0 (arg1)); } @@ -3379,11 +3379,11 @@ static void _call_cbs_match_c7932_2 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - const QVariant &arg3 = args.read (heap); - int arg4 = args.read (heap); - QFlags arg5 = args.read > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QVariant &arg3 = gsi::arg_reader() (args, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (1, heap); + QFlags arg5 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (Qt::MatchFlags(Qt::MatchStartsWith|Qt::MatchWrap), heap); ret.write > ((QList)((QSortFilterProxyModel_Adaptor *)cls)->cbs_match_c7932_2 (arg1, arg2, arg3, arg4, arg5)); } @@ -3406,7 +3406,7 @@ static void _call_cbs_mimeData_c3010_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); ret.write ((QMimeData *)((QSortFilterProxyModel_Adaptor *)cls)->cbs_mimeData_c3010_0 (arg1)); } @@ -3448,7 +3448,7 @@ static void _call_cbs_parent_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QSortFilterProxyModel_Adaptor *)cls)->cbs_parent_c2395_0 (arg1)); } @@ -3507,9 +3507,9 @@ static void _call_cbs_removeColumns_3713_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QSortFilterProxyModel_Adaptor *)cls)->cbs_removeColumns_3713_1 (arg1, arg2, arg3)); } @@ -3536,9 +3536,9 @@ static void _call_cbs_removeRows_3713_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QSortFilterProxyModel_Adaptor *)cls)->cbs_removeRows_3713_1 (arg1, arg2, arg3)); } @@ -3596,7 +3596,7 @@ static void _call_cbs_rowCount_c2395_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((int)((QSortFilterProxyModel_Adaptor *)cls)->cbs_rowCount_c2395_1 (arg1)); } @@ -3637,9 +3637,9 @@ static void _call_cbs_setData_5065_1 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::EditRole, heap); ret.write ((bool)((QSortFilterProxyModel_Adaptor *)cls)->cbs_setData_5065_1 (arg1, arg2, arg3)); } @@ -3668,10 +3668,10 @@ static void _call_cbs_setHeaderData_5242_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - const QVariant &arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + const QVariant &arg3 = gsi::arg_reader() (args, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::EditRole, heap); ret.write ((bool)((QSortFilterProxyModel_Adaptor *)cls)->cbs_setHeaderData_5242_1 (arg1, arg2, arg3, arg4)); } @@ -3696,8 +3696,8 @@ static void _call_cbs_setItemData_5414_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QMap &arg2 = args.read & > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QMap &arg2 = gsi::arg_reader & >() (args, heap); ret.write ((bool)((QSortFilterProxyModel_Adaptor *)cls)->cbs_setItemData_5414_0 (arg1, arg2)); } @@ -3739,7 +3739,7 @@ static void _call_cbs_setSourceModel_2419_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractItemModel *arg1 = args.read (heap); + QAbstractItemModel *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSortFilterProxyModel_Adaptor *)cls)->cbs_setSourceModel_2419_0 (arg1); } @@ -3765,8 +3765,8 @@ static void _call_cbs_sort_2340_1 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::AscendingOrder), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSortFilterProxyModel_Adaptor *)cls)->cbs_sort_2340_1 (arg1, arg2); } @@ -3790,7 +3790,7 @@ static void _call_cbs_span_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QSize)((QSortFilterProxyModel_Adaptor *)cls)->cbs_span_c2395_0 (arg1)); } @@ -3851,7 +3851,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSortFilterProxyModel_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQSound.cc b/src/gsiqt/qt4/QtGui/gsiDeclQSound.cc index 92db46ab6..525b83042 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQSound.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQSound.cc @@ -496,7 +496,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSound_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -520,7 +520,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSound_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -562,7 +562,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSound_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -586,7 +586,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSound_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -611,8 +611,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSound_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -667,7 +667,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSound_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQSpacerItem.cc b/src/gsiqt/qt4/QtGui/gsiDeclQSpacerItem.cc index 5ebf6a984..d92d65bb7 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQSpacerItem.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQSpacerItem.cc @@ -570,7 +570,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QSpacerItem_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -670,7 +670,7 @@ static void _call_cbs_minimumHeightForWidth_c767_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QSpacerItem_Adaptor *)cls)->cbs_minimumHeightForWidth_c767_0 (arg1)); } @@ -712,7 +712,7 @@ static void _call_cbs_setGeometry_1792_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpacerItem_Adaptor *)cls)->cbs_setGeometry_1792_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQSpinBox.cc b/src/gsiqt/qt4/QtGui/gsiDeclQSpinBox.cc index 0dba8e9f9..d67fef4f0 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQSpinBox.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQSpinBox.cc @@ -1469,7 +1469,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpinBox_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1493,7 +1493,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpinBox_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1517,7 +1517,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpinBox_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1561,7 +1561,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpinBox_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1585,7 +1585,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpinBox_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1652,7 +1652,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpinBox_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1716,7 +1716,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpinBox_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -1740,7 +1740,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpinBox_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1764,7 +1764,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpinBox_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1788,7 +1788,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpinBox_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1812,7 +1812,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpinBox_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1850,7 +1850,7 @@ static void _call_cbs_enabledChange_864_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpinBox_Adaptor *)cls)->cbs_enabledChange_864_0 (arg1); } @@ -1874,7 +1874,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpinBox_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -1898,7 +1898,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSpinBox_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1923,8 +1923,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSpinBox_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1947,7 +1947,7 @@ static void _call_cbs_fixup_c1330_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QString &arg1 = args.read (heap); + QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpinBox_Adaptor *)cls)->cbs_fixup_c1330_0 (arg1); } @@ -1971,7 +1971,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpinBox_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -2009,7 +2009,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSpinBox_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -2032,7 +2032,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpinBox_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -2070,7 +2070,7 @@ static void _call_cbs_fontChange_1801_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpinBox_Adaptor *)cls)->cbs_fontChange_1801_0 (arg1); } @@ -2094,7 +2094,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QSpinBox_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -2117,7 +2117,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpinBox_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -2160,7 +2160,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpinBox_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2184,7 +2184,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QSpinBox_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2207,7 +2207,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpinBox_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2231,7 +2231,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpinBox_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2275,7 +2275,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpinBox_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2313,7 +2313,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QSpinBox_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2355,7 +2355,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpinBox_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2379,7 +2379,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpinBox_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2403,7 +2403,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpinBox_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2427,7 +2427,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpinBox_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2451,7 +2451,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpinBox_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2494,7 +2494,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpinBox_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2518,7 +2518,7 @@ static void _call_cbs_paletteChange_2113_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPalette &arg1 = args.read (heap); + const QPalette &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpinBox_Adaptor *)cls)->cbs_paletteChange_2113_0 (arg1); } @@ -2575,7 +2575,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpinBox_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2632,7 +2632,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpinBox_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2656,7 +2656,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpinBox_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2699,7 +2699,7 @@ static void _call_cbs_stepBy_767_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpinBox_Adaptor *)cls)->cbs_stepBy_767_0 (arg1); } @@ -2742,7 +2742,7 @@ static void _call_cbs_styleChange_1228_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyle &arg1 = args.read (heap); + QStyle &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpinBox_Adaptor *)cls)->cbs_styleChange_1228_0 (arg1); } @@ -2766,7 +2766,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpinBox_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2790,7 +2790,7 @@ static void _call_cbs_textFromValue_c767_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QSpinBox_Adaptor *)cls)->cbs_textFromValue_c767_0 (arg1)); } @@ -2813,7 +2813,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpinBox_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2854,8 +2854,8 @@ static void _call_cbs_validate_c2171_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QString &arg1 = args.read (heap); - int &arg2 = args.read (heap); + QString &arg1 = gsi::arg_reader() (args, heap); + int &arg2 = gsi::arg_reader() (args, heap); ret.write::target_type > ((qt_gsi::Converter::target_type)((QSpinBox_Adaptor *)cls)->cbs_validate_c2171_0 (arg1, arg2)); } @@ -2914,7 +2914,7 @@ static void _call_cbs_valueFromText_c2025_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QSpinBox_Adaptor *)cls)->cbs_valueFromText_c2025_0 (arg1)); } @@ -2937,7 +2937,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpinBox_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } @@ -2961,7 +2961,7 @@ static void _call_cbs_windowActivationChange_864_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpinBox_Adaptor *)cls)->cbs_windowActivationChange_864_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQSplashScreen.cc b/src/gsiqt/qt4/QtGui/gsiDeclQSplashScreen.cc index 9a4317fda..6bda4255e 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQSplashScreen.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQSplashScreen.cc @@ -1252,7 +1252,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplashScreen_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1276,7 +1276,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplashScreen_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1300,7 +1300,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplashScreen_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1324,7 +1324,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplashScreen_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1348,7 +1348,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplashScreen_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1415,7 +1415,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplashScreen_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1479,7 +1479,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplashScreen_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -1503,7 +1503,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplashScreen_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1527,7 +1527,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplashScreen_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1551,7 +1551,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplashScreen_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1575,7 +1575,7 @@ static void _call_cbs_drawContents_1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplashScreen_Adaptor *)cls)->cbs_drawContents_1426_0 (arg1); } @@ -1599,7 +1599,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplashScreen_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1623,7 +1623,7 @@ static void _call_cbs_enabledChange_864_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplashScreen_Adaptor *)cls)->cbs_enabledChange_864_0 (arg1); } @@ -1647,7 +1647,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplashScreen_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -1671,7 +1671,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSplashScreen_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1696,8 +1696,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSplashScreen_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1720,7 +1720,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplashScreen_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1758,7 +1758,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSplashScreen_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -1781,7 +1781,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplashScreen_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -1819,7 +1819,7 @@ static void _call_cbs_fontChange_1801_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplashScreen_Adaptor *)cls)->cbs_fontChange_1801_0 (arg1); } @@ -1843,7 +1843,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QSplashScreen_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -1866,7 +1866,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplashScreen_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -1890,7 +1890,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplashScreen_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -1914,7 +1914,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QSplashScreen_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -1937,7 +1937,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplashScreen_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -1961,7 +1961,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplashScreen_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2005,7 +2005,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplashScreen_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2047,7 +2047,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QSplashScreen_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2089,7 +2089,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplashScreen_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2113,7 +2113,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplashScreen_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2137,7 +2137,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplashScreen_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2161,7 +2161,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplashScreen_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2185,7 +2185,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplashScreen_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2228,7 +2228,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplashScreen_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2252,7 +2252,7 @@ static void _call_cbs_paletteChange_2113_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPalette &arg1 = args.read (heap); + const QPalette &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplashScreen_Adaptor *)cls)->cbs_paletteChange_2113_0 (arg1); } @@ -2309,7 +2309,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplashScreen_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2347,7 +2347,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplashScreen_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2371,7 +2371,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplashScreen_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2414,7 +2414,7 @@ static void _call_cbs_styleChange_1228_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyle &arg1 = args.read (heap); + QStyle &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplashScreen_Adaptor *)cls)->cbs_styleChange_1228_0 (arg1); } @@ -2438,7 +2438,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplashScreen_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2462,7 +2462,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplashScreen_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2501,7 +2501,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplashScreen_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } @@ -2525,7 +2525,7 @@ static void _call_cbs_windowActivationChange_864_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplashScreen_Adaptor *)cls)->cbs_windowActivationChange_864_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQSplitter.cc b/src/gsiqt/qt4/QtGui/gsiDeclQSplitter.cc index 284657243..bf2b9885b 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQSplitter.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQSplitter.cc @@ -1620,7 +1620,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1644,7 +1644,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1668,7 +1668,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1692,7 +1692,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1737,7 +1737,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1823,7 +1823,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1887,7 +1887,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -1911,7 +1911,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1935,7 +1935,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1959,7 +1959,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -2002,7 +2002,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -2026,7 +2026,7 @@ static void _call_cbs_enabledChange_864_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter_Adaptor *)cls)->cbs_enabledChange_864_0 (arg1); } @@ -2050,7 +2050,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -2074,7 +2074,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSplitter_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -2099,8 +2099,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSplitter_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -2123,7 +2123,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -2161,7 +2161,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSplitter_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -2184,7 +2184,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -2222,7 +2222,7 @@ static void _call_cbs_fontChange_1801_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter_Adaptor *)cls)->cbs_fontChange_1801_0 (arg1); } @@ -2246,7 +2246,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QSplitter_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -2269,7 +2269,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -2293,7 +2293,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2317,7 +2317,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QSplitter_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2340,7 +2340,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2364,7 +2364,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2408,7 +2408,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2432,7 +2432,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QSplitter_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2474,7 +2474,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2498,7 +2498,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2522,7 +2522,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2546,7 +2546,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2570,7 +2570,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2635,7 +2635,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2659,7 +2659,7 @@ static void _call_cbs_paletteChange_2113_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPalette &arg1 = args.read (heap); + const QPalette &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter_Adaptor *)cls)->cbs_paletteChange_2113_0 (arg1); } @@ -2716,7 +2716,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2773,7 +2773,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2797,7 +2797,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2861,7 +2861,7 @@ static void _call_cbs_styleChange_1228_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyle &arg1 = args.read (heap); + QStyle &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter_Adaptor *)cls)->cbs_styleChange_1228_0 (arg1); } @@ -2885,7 +2885,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2909,7 +2909,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2948,7 +2948,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } @@ -2972,7 +2972,7 @@ static void _call_cbs_windowActivationChange_864_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter_Adaptor *)cls)->cbs_windowActivationChange_864_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQSplitterHandle.cc b/src/gsiqt/qt4/QtGui/gsiDeclQSplitterHandle.cc index 6418320b6..c794c43f6 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQSplitterHandle.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQSplitterHandle.cc @@ -1150,7 +1150,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitterHandle_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1174,7 +1174,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitterHandle_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1198,7 +1198,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitterHandle_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1222,7 +1222,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitterHandle_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1264,7 +1264,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitterHandle_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1331,7 +1331,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitterHandle_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1395,7 +1395,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitterHandle_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -1419,7 +1419,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitterHandle_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1443,7 +1443,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitterHandle_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1467,7 +1467,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitterHandle_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1491,7 +1491,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitterHandle_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1515,7 +1515,7 @@ static void _call_cbs_enabledChange_864_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitterHandle_Adaptor *)cls)->cbs_enabledChange_864_0 (arg1); } @@ -1539,7 +1539,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitterHandle_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -1563,7 +1563,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSplitterHandle_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1588,8 +1588,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSplitterHandle_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1612,7 +1612,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitterHandle_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1650,7 +1650,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSplitterHandle_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -1673,7 +1673,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitterHandle_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -1711,7 +1711,7 @@ static void _call_cbs_fontChange_1801_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitterHandle_Adaptor *)cls)->cbs_fontChange_1801_0 (arg1); } @@ -1735,7 +1735,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QSplitterHandle_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -1758,7 +1758,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitterHandle_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -1782,7 +1782,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitterHandle_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -1806,7 +1806,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QSplitterHandle_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -1829,7 +1829,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitterHandle_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -1853,7 +1853,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitterHandle_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -1897,7 +1897,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitterHandle_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -1921,7 +1921,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QSplitterHandle_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -1963,7 +1963,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitterHandle_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -1987,7 +1987,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitterHandle_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2011,7 +2011,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitterHandle_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2035,7 +2035,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitterHandle_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2059,7 +2059,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitterHandle_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2121,7 +2121,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitterHandle_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2145,7 +2145,7 @@ static void _call_cbs_paletteChange_2113_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPalette &arg1 = args.read (heap); + const QPalette &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitterHandle_Adaptor *)cls)->cbs_paletteChange_2113_0 (arg1); } @@ -2202,7 +2202,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitterHandle_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2240,7 +2240,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitterHandle_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2264,7 +2264,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitterHandle_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2307,7 +2307,7 @@ static void _call_cbs_styleChange_1228_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyle &arg1 = args.read (heap); + QStyle &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitterHandle_Adaptor *)cls)->cbs_styleChange_1228_0 (arg1); } @@ -2331,7 +2331,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitterHandle_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2355,7 +2355,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitterHandle_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2394,7 +2394,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitterHandle_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } @@ -2418,7 +2418,7 @@ static void _call_cbs_windowActivationChange_864_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitterHandle_Adaptor *)cls)->cbs_windowActivationChange_864_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQStackedLayout.cc b/src/gsiqt/qt4/QtGui/gsiDeclQStackedLayout.cc index e017cb7e3..968f1a3a6 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQStackedLayout.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQStackedLayout.cc @@ -1082,7 +1082,8 @@ static void _call_cbs_addItem_1740_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QLayoutItem *arg1 = args.read (heap); + QLayoutItem *arg1 = gsi::arg_reader() (args, heap); + qt_gsi::qt_keep (arg1); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedLayout_Adaptor *)cls)->cbs_addItem_1740_0 (arg1); } @@ -1124,7 +1125,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedLayout_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1185,7 +1186,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedLayout_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1227,7 +1228,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedLayout_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -1251,7 +1252,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QStackedLayout_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1276,8 +1277,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QStackedLayout_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1357,7 +1358,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QStackedLayout_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -1380,7 +1381,7 @@ static void _call_cbs_indexOf_c1315_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QStackedLayout_Adaptor *)cls)->cbs_indexOf_c1315_0 (arg1)); } @@ -1442,7 +1443,7 @@ static void _call_cbs_itemAt_c767_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QLayoutItem *)((QStackedLayout_Adaptor *)cls)->cbs_itemAt_c767_0 (arg1)); } @@ -1503,7 +1504,7 @@ static void _call_cbs_minimumHeightForWidth_c767_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QStackedLayout_Adaptor *)cls)->cbs_minimumHeightForWidth_c767_0 (arg1)); } @@ -1577,7 +1578,7 @@ static void _call_cbs_setGeometry_1792_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedLayout_Adaptor *)cls)->cbs_setGeometry_1792_0 (arg1); } @@ -1639,7 +1640,7 @@ static void _call_cbs_takeAt_767_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QLayoutItem *)((QStackedLayout_Adaptor *)cls)->cbs_takeAt_767_0 (arg1)); } @@ -1662,7 +1663,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedLayout_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQStackedWidget.cc b/src/gsiqt/qt4/QtGui/gsiDeclQStackedWidget.cc index 675a15a00..def57eb91 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQStackedWidget.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQStackedWidget.cc @@ -1270,7 +1270,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedWidget_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1294,7 +1294,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedWidget_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1318,7 +1318,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedWidget_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1342,7 +1342,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedWidget_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1366,7 +1366,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedWidget_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1451,7 +1451,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedWidget_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1515,7 +1515,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedWidget_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -1539,7 +1539,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedWidget_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1563,7 +1563,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedWidget_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1587,7 +1587,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedWidget_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1630,7 +1630,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedWidget_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1654,7 +1654,7 @@ static void _call_cbs_enabledChange_864_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedWidget_Adaptor *)cls)->cbs_enabledChange_864_0 (arg1); } @@ -1678,7 +1678,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedWidget_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -1702,7 +1702,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QStackedWidget_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1727,8 +1727,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QStackedWidget_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1751,7 +1751,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedWidget_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1789,7 +1789,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QStackedWidget_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -1812,7 +1812,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedWidget_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -1850,7 +1850,7 @@ static void _call_cbs_fontChange_1801_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedWidget_Adaptor *)cls)->cbs_fontChange_1801_0 (arg1); } @@ -1874,7 +1874,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QStackedWidget_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -1897,7 +1897,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedWidget_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -1921,7 +1921,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedWidget_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -1945,7 +1945,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QStackedWidget_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -1968,7 +1968,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedWidget_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -1992,7 +1992,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedWidget_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2036,7 +2036,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedWidget_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2060,7 +2060,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QStackedWidget_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2102,7 +2102,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedWidget_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2126,7 +2126,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedWidget_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2150,7 +2150,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedWidget_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2174,7 +2174,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedWidget_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2198,7 +2198,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedWidget_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2241,7 +2241,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedWidget_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2265,7 +2265,7 @@ static void _call_cbs_paletteChange_2113_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPalette &arg1 = args.read (heap); + const QPalette &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedWidget_Adaptor *)cls)->cbs_paletteChange_2113_0 (arg1); } @@ -2322,7 +2322,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedWidget_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2360,7 +2360,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedWidget_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2384,7 +2384,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedWidget_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2427,7 +2427,7 @@ static void _call_cbs_styleChange_1228_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyle &arg1 = args.read (heap); + QStyle &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedWidget_Adaptor *)cls)->cbs_styleChange_1228_0 (arg1); } @@ -2451,7 +2451,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedWidget_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2475,7 +2475,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedWidget_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2514,7 +2514,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedWidget_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } @@ -2556,7 +2556,7 @@ static void _call_cbs_windowActivationChange_864_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedWidget_Adaptor *)cls)->cbs_windowActivationChange_864_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQStandardItem.cc b/src/gsiqt/qt4/QtGui/gsiDeclQStandardItem.cc index 33f66e8fb..f5616f624 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQStandardItem.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQStandardItem.cc @@ -1886,7 +1886,7 @@ static void _call_cbs_data_c767_1 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::UserRole + 1, heap); ret.write ((QVariant)((QStandardItem_Adaptor *)cls)->cbs_data_c767_1 (arg1)); } @@ -1924,7 +1924,7 @@ static void _call_cbs_operator_lt__c2610_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStandardItem &arg1 = args.read (heap); + const QStandardItem &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QStandardItem_Adaptor *)cls)->cbs_operator_lt__c2610_0 (arg1)); } @@ -1947,7 +1947,7 @@ static void _call_cbs_read_1697_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDataStream &arg1 = args.read (heap); + QDataStream &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItem_Adaptor *)cls)->cbs_read_1697_0 (arg1); } @@ -1973,8 +1973,8 @@ static void _call_cbs_setData_2778u1_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVariant &arg1 = args.read (heap); - int arg2 = args.read (heap); + const QVariant &arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::UserRole + 1, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItem_Adaptor *)cls)->cbs_setData_2778u1_1 (arg1, arg2); } @@ -2017,7 +2017,7 @@ static void _call_cbs_write_c1697_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDataStream &arg1 = args.read (heap); + QDataStream &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItem_Adaptor *)cls)->cbs_write_c1697_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQStandardItemModel.cc b/src/gsiqt/qt4/QtGui/gsiDeclQStandardItemModel.cc index 41da66b10..8b1e6cd7e 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQStandardItemModel.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQStandardItemModel.cc @@ -2360,7 +2360,7 @@ static void _call_cbs_buddy_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QStandardItemModel_Adaptor *)cls)->cbs_buddy_c2395_0 (arg1)); } @@ -2383,7 +2383,7 @@ static void _call_cbs_canFetchMore_c2395_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QStandardItemModel_Adaptor *)cls)->cbs_canFetchMore_c2395_0 (arg1)); } @@ -2450,7 +2450,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItemModel_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -2474,7 +2474,7 @@ static void _call_cbs_columnCount_c2395_1 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((int)((QStandardItemModel_Adaptor *)cls)->cbs_columnCount_c2395_1 (arg1)); } @@ -2569,7 +2569,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItemModel_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -2595,8 +2595,8 @@ static void _call_cbs_data_c3054_1 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::DisplayRole, heap); ret.write ((QVariant)((QStandardItemModel_Adaptor *)cls)->cbs_data_c3054_1 (arg1, arg2)); } @@ -2685,7 +2685,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItemModel_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -2717,11 +2717,11 @@ static void _call_cbs_dropMimeData_7425_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMimeData *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - const QModelIndex &arg5 = args.read (heap); + const QMimeData *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + const QModelIndex &arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QStandardItemModel_Adaptor *)cls)->cbs_dropMimeData_7425_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -2871,7 +2871,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QStandardItemModel_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -2896,8 +2896,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QStandardItemModel_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -2920,7 +2920,7 @@ static void _call_cbs_fetchMore_2395_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItemModel_Adaptor *)cls)->cbs_fetchMore_2395_0 (arg1); } @@ -2944,7 +2944,7 @@ static void _call_cbs_flags_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QFlags)((QStandardItemModel_Adaptor *)cls)->cbs_flags_c2395_0 (arg1)); } @@ -2967,7 +2967,7 @@ static void _call_cbs_hasChildren_c2395_1 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QStandardItemModel_Adaptor *)cls)->cbs_hasChildren_c2395_1 (arg1)); } @@ -2994,9 +2994,9 @@ static void _call_cbs_headerData_c3231_1 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::DisplayRole, heap); ret.write ((QVariant)((QStandardItemModel_Adaptor *)cls)->cbs_headerData_c3231_1 (arg1, arg2, arg3)); } @@ -3047,9 +3047,9 @@ static void _call_cbs_index_c3713_1 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((QModelIndex)((QStandardItemModel_Adaptor *)cls)->cbs_index_c3713_1 (arg1, arg2, arg3)); } @@ -3076,9 +3076,9 @@ static void _call_cbs_insertColumns_3713_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QStandardItemModel_Adaptor *)cls)->cbs_insertColumns_3713_1 (arg1, arg2, arg3)); } @@ -3105,9 +3105,9 @@ static void _call_cbs_insertRows_3713_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QStandardItemModel_Adaptor *)cls)->cbs_insertRows_3713_1 (arg1, arg2, arg3)); } @@ -3148,7 +3148,7 @@ static void _call_cbs_itemData_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QMap)((QStandardItemModel_Adaptor *)cls)->cbs_itemData_c2395_0 (arg1)); } @@ -3207,11 +3207,11 @@ static void _call_cbs_match_c7932_2 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - const QVariant &arg3 = args.read (heap); - int arg4 = args.read (heap); - QFlags arg5 = args.read > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QVariant &arg3 = gsi::arg_reader() (args, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (1, heap); + QFlags arg5 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (Qt::MatchFlags(Qt::MatchStartsWith|Qt::MatchWrap), heap); ret.write > ((QList)((QStandardItemModel_Adaptor *)cls)->cbs_match_c7932_2 (arg1, arg2, arg3, arg4, arg5)); } @@ -3234,7 +3234,7 @@ static void _call_cbs_mimeData_c3010_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); ret.write ((QMimeData *)((QStandardItemModel_Adaptor *)cls)->cbs_mimeData_c3010_0 (arg1)); } @@ -3276,7 +3276,7 @@ static void _call_cbs_parent_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QStandardItemModel_Adaptor *)cls)->cbs_parent_c2395_0 (arg1)); } @@ -3335,9 +3335,9 @@ static void _call_cbs_removeColumns_3713_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QStandardItemModel_Adaptor *)cls)->cbs_removeColumns_3713_1 (arg1, arg2, arg3)); } @@ -3364,9 +3364,9 @@ static void _call_cbs_removeRows_3713_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QStandardItemModel_Adaptor *)cls)->cbs_removeRows_3713_1 (arg1, arg2, arg3)); } @@ -3424,7 +3424,7 @@ static void _call_cbs_rowCount_c2395_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((int)((QStandardItemModel_Adaptor *)cls)->cbs_rowCount_c2395_1 (arg1)); } @@ -3465,9 +3465,9 @@ static void _call_cbs_setData_5065_1 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::EditRole, heap); ret.write ((bool)((QStandardItemModel_Adaptor *)cls)->cbs_setData_5065_1 (arg1, arg2, arg3)); } @@ -3496,10 +3496,10 @@ static void _call_cbs_setHeaderData_5242_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - const QVariant &arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + const QVariant &arg3 = gsi::arg_reader() (args, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::EditRole, heap); ret.write ((bool)((QStandardItemModel_Adaptor *)cls)->cbs_setHeaderData_5242_1 (arg1, arg2, arg3, arg4)); } @@ -3524,8 +3524,8 @@ static void _call_cbs_setItemData_5414_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QMap &arg2 = args.read & > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QMap &arg2 = gsi::arg_reader & >() (args, heap); ret.write ((bool)((QStandardItemModel_Adaptor *)cls)->cbs_setItemData_5414_0 (arg1, arg2)); } @@ -3569,8 +3569,8 @@ static void _call_cbs_sort_2340_1 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::AscendingOrder), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItemModel_Adaptor *)cls)->cbs_sort_2340_1 (arg1, arg2); } @@ -3594,7 +3594,7 @@ static void _call_cbs_span_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QSize)((QStandardItemModel_Adaptor *)cls)->cbs_span_c2395_0 (arg1)); } @@ -3655,7 +3655,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItemModel_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQStatusBar.cc b/src/gsiqt/qt4/QtGui/gsiDeclQStatusBar.cc index 3148cd8a7..17243d541 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQStatusBar.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQStatusBar.cc @@ -1289,7 +1289,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStatusBar_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1313,7 +1313,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStatusBar_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1337,7 +1337,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStatusBar_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1361,7 +1361,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStatusBar_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1385,7 +1385,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStatusBar_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1452,7 +1452,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStatusBar_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1516,7 +1516,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStatusBar_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -1540,7 +1540,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStatusBar_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1564,7 +1564,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStatusBar_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1588,7 +1588,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStatusBar_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1612,7 +1612,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStatusBar_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1636,7 +1636,7 @@ static void _call_cbs_enabledChange_864_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStatusBar_Adaptor *)cls)->cbs_enabledChange_864_0 (arg1); } @@ -1660,7 +1660,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStatusBar_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -1684,7 +1684,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QStatusBar_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1709,8 +1709,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QStatusBar_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1733,7 +1733,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStatusBar_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1771,7 +1771,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QStatusBar_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -1794,7 +1794,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStatusBar_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -1832,7 +1832,7 @@ static void _call_cbs_fontChange_1801_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStatusBar_Adaptor *)cls)->cbs_fontChange_1801_0 (arg1); } @@ -1856,7 +1856,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QStatusBar_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -1879,7 +1879,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStatusBar_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -1918,7 +1918,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStatusBar_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -1942,7 +1942,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QStatusBar_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -1965,7 +1965,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStatusBar_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -1989,7 +1989,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStatusBar_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2033,7 +2033,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStatusBar_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2075,7 +2075,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QStatusBar_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2117,7 +2117,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStatusBar_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2141,7 +2141,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStatusBar_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2165,7 +2165,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStatusBar_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2189,7 +2189,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStatusBar_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2213,7 +2213,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStatusBar_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2256,7 +2256,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStatusBar_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2280,7 +2280,7 @@ static void _call_cbs_paletteChange_2113_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPalette &arg1 = args.read (heap); + const QPalette &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStatusBar_Adaptor *)cls)->cbs_paletteChange_2113_0 (arg1); } @@ -2352,7 +2352,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStatusBar_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2390,7 +2390,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStatusBar_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2414,7 +2414,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStatusBar_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2457,7 +2457,7 @@ static void _call_cbs_styleChange_1228_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyle &arg1 = args.read (heap); + QStyle &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStatusBar_Adaptor *)cls)->cbs_styleChange_1228_0 (arg1); } @@ -2481,7 +2481,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStatusBar_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2505,7 +2505,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStatusBar_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2544,7 +2544,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStatusBar_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } @@ -2568,7 +2568,7 @@ static void _call_cbs_windowActivationChange_864_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStatusBar_Adaptor *)cls)->cbs_windowActivationChange_864_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQStringListModel.cc b/src/gsiqt/qt4/QtGui/gsiDeclQStringListModel.cc index ac0f780b6..f90f6bb64 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQStringListModel.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQStringListModel.cc @@ -1315,7 +1315,7 @@ static void _call_cbs_buddy_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QStringListModel_Adaptor *)cls)->cbs_buddy_c2395_0 (arg1)); } @@ -1338,7 +1338,7 @@ static void _call_cbs_canFetchMore_c2395_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QStringListModel_Adaptor *)cls)->cbs_canFetchMore_c2395_0 (arg1)); } @@ -1405,7 +1405,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStringListModel_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1501,7 +1501,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStringListModel_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1527,8 +1527,8 @@ static void _call_cbs_data_c3054_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QStringListModel_Adaptor *)cls)->cbs_data_c3054_0 (arg1, arg2)); } @@ -1617,7 +1617,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStringListModel_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -1649,11 +1649,11 @@ static void _call_cbs_dropMimeData_7425_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMimeData *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - const QModelIndex &arg5 = args.read (heap); + const QMimeData *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + const QModelIndex &arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QStringListModel_Adaptor *)cls)->cbs_dropMimeData_7425_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -1803,7 +1803,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QStringListModel_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1828,8 +1828,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QStringListModel_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1852,7 +1852,7 @@ static void _call_cbs_fetchMore_2395_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStringListModel_Adaptor *)cls)->cbs_fetchMore_2395_0 (arg1); } @@ -1876,7 +1876,7 @@ static void _call_cbs_flags_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QFlags)((QStringListModel_Adaptor *)cls)->cbs_flags_c2395_0 (arg1)); } @@ -1903,9 +1903,9 @@ static void _call_cbs_headerData_c3231_1 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::DisplayRole, heap); ret.write ((QVariant)((QStringListModel_Adaptor *)cls)->cbs_headerData_c3231_1 (arg1, arg2, arg3)); } @@ -1956,9 +1956,9 @@ static void _call_cbs_index_c3713_2 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((QModelIndex)((QStringListModel_Adaptor *)cls)->cbs_index_c3713_2 (arg1, arg2, arg3)); } @@ -1985,9 +1985,9 @@ static void _call_cbs_insertColumns_3713_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QStringListModel_Adaptor *)cls)->cbs_insertColumns_3713_1 (arg1, arg2, arg3)); } @@ -2014,9 +2014,9 @@ static void _call_cbs_insertRows_3713_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QStringListModel_Adaptor *)cls)->cbs_insertRows_3713_1 (arg1, arg2, arg3)); } @@ -2039,7 +2039,7 @@ static void _call_cbs_itemData_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QMap)((QStringListModel_Adaptor *)cls)->cbs_itemData_c2395_0 (arg1)); } @@ -2098,11 +2098,11 @@ static void _call_cbs_match_c7932_2 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - const QVariant &arg3 = args.read (heap); - int arg4 = args.read (heap); - QFlags arg5 = args.read > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QVariant &arg3 = gsi::arg_reader() (args, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (1, heap); + QFlags arg5 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (Qt::MatchFlags(Qt::MatchStartsWith|Qt::MatchWrap), heap); ret.write > ((QList)((QStringListModel_Adaptor *)cls)->cbs_match_c7932_2 (arg1, arg2, arg3, arg4, arg5)); } @@ -2125,7 +2125,7 @@ static void _call_cbs_mimeData_c3010_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); ret.write ((QMimeData *)((QStringListModel_Adaptor *)cls)->cbs_mimeData_c3010_0 (arg1)); } @@ -2203,9 +2203,9 @@ static void _call_cbs_removeColumns_3713_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QStringListModel_Adaptor *)cls)->cbs_removeColumns_3713_1 (arg1, arg2, arg3)); } @@ -2232,9 +2232,9 @@ static void _call_cbs_removeRows_3713_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QStringListModel_Adaptor *)cls)->cbs_removeRows_3713_1 (arg1, arg2, arg3)); } @@ -2292,7 +2292,7 @@ static void _call_cbs_rowCount_c2395_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((int)((QStringListModel_Adaptor *)cls)->cbs_rowCount_c2395_1 (arg1)); } @@ -2333,9 +2333,9 @@ static void _call_cbs_setData_5065_1 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::EditRole, heap); ret.write ((bool)((QStringListModel_Adaptor *)cls)->cbs_setData_5065_1 (arg1, arg2, arg3)); } @@ -2364,10 +2364,10 @@ static void _call_cbs_setHeaderData_5242_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - const QVariant &arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + const QVariant &arg3 = gsi::arg_reader() (args, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::EditRole, heap); ret.write ((bool)((QStringListModel_Adaptor *)cls)->cbs_setHeaderData_5242_1 (arg1, arg2, arg3, arg4)); } @@ -2392,8 +2392,8 @@ static void _call_cbs_setItemData_5414_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QMap &arg2 = args.read & > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QMap &arg2 = gsi::arg_reader & >() (args, heap); ret.write ((bool)((QStringListModel_Adaptor *)cls)->cbs_setItemData_5414_0 (arg1, arg2)); } @@ -2437,8 +2437,8 @@ static void _call_cbs_sort_2340_1 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::AscendingOrder), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStringListModel_Adaptor *)cls)->cbs_sort_2340_1 (arg1, arg2); } @@ -2462,7 +2462,7 @@ static void _call_cbs_span_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QSize)((QStringListModel_Adaptor *)cls)->cbs_span_c2395_0 (arg1)); } @@ -2523,7 +2523,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStringListModel_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQStyle.cc b/src/gsiqt/qt4/QtGui/gsiDeclQStyle.cc index ae1c0b8a5..7cf749409 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQStyle.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQStyle.cc @@ -1558,7 +1558,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStyle_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1582,7 +1582,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStyle_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1624,7 +1624,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStyle_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -1654,10 +1654,10 @@ static void _call_cbs_drawComplexControl_c9027_1 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOptionComplex *arg2 = args.read (heap); - QPainter *arg3 = args.read (heap); - const QWidget *arg4 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOptionComplex *arg2 = gsi::arg_reader() (args, heap); + QPainter *arg3 = gsi::arg_reader() (args, heap); + const QWidget *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStyle_Adaptor *)cls)->cbs_drawComplexControl_c9027_1 (arg1, arg2, arg3, arg4); } @@ -1687,10 +1687,10 @@ static void _call_cbs_drawControl_c8285_1 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args.read (heap); - QPainter *arg3 = args.read (heap); - const QWidget *arg4 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = gsi::arg_reader() (args, heap); + QPainter *arg3 = gsi::arg_reader() (args, heap); + const QWidget *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStyle_Adaptor *)cls)->cbs_drawControl_c8285_1 (arg1, arg2, arg3, arg4); } @@ -1720,10 +1720,10 @@ static void _call_cbs_drawItemPixmap_c5678_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QRect &arg2 = args.read (heap); - int arg3 = args.read (heap); - const QPixmap &arg4 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QRect &arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QPixmap &arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStyle_Adaptor *)cls)->cbs_drawItemPixmap_c5678_0 (arg1, arg2, arg3, arg4); } @@ -1759,13 +1759,13 @@ static void _call_cbs_drawItemText_c10604_1 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QRect &arg2 = args.read (heap); - int arg3 = args.read (heap); - const QPalette &arg4 = args.read (heap); - bool arg5 = args.read (heap); - const QString &arg6 = args.read (heap); - const qt_gsi::Converter::target_type & arg7 = args.read::target_type & > (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QRect &arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QPalette &arg4 = gsi::arg_reader() (args, heap); + bool arg5 = gsi::arg_reader() (args, heap); + const QString &arg6 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg7 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QPalette::NoRole), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStyle_Adaptor *)cls)->cbs_drawItemText_c10604_1 (arg1, arg2, arg3, arg4, arg5, arg6, arg7); } @@ -1795,10 +1795,10 @@ static void _call_cbs_drawPrimitive_c8501_1 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args.read (heap); - QPainter *arg3 = args.read (heap); - const QWidget *arg4 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = gsi::arg_reader() (args, heap); + QPainter *arg3 = gsi::arg_reader() (args, heap); + const QWidget *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStyle_Adaptor *)cls)->cbs_drawPrimitive_c8501_1 (arg1, arg2, arg3, arg4); } @@ -1822,7 +1822,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QStyle_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1847,8 +1847,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QStyle_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1875,9 +1875,9 @@ static void _call_cbs_generatedIconPixmap_c5776_0 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QPixmap &arg2 = args.read (heap); - const QStyleOption *arg3 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QPixmap &arg2 = gsi::arg_reader() (args, heap); + const QStyleOption *arg3 = gsi::arg_reader() (args, heap); ret.write ((QPixmap)((QStyle_Adaptor *)cls)->cbs_generatedIconPixmap_c5776_0 (arg1, arg2, arg3)); } @@ -1906,10 +1906,10 @@ static void _call_cbs_hitTestComplexControl_c9517_1 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOptionComplex *arg2 = args.read (heap); - const QPoint &arg3 = args.read (heap); - const QWidget *arg4 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOptionComplex *arg2 = gsi::arg_reader() (args, heap); + const QPoint &arg3 = gsi::arg_reader() (args, heap); + const QWidget *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write::target_type > ((qt_gsi::Converter::target_type)((QStyle_Adaptor *)cls)->cbs_hitTestComplexControl_c9517_1 (arg1, arg2, arg3, arg4)); } @@ -1936,9 +1936,9 @@ static void _call_cbs_itemPixmapRect_c4360_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); - int arg2 = args.read (heap); - const QPixmap &arg3 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QPixmap &arg3 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QStyle_Adaptor *)cls)->cbs_itemPixmapRect_c4360_0 (arg1, arg2, arg3)); } @@ -1969,11 +1969,11 @@ static void _call_cbs_itemTextRect_c7544_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFontMetrics &arg1 = args.read (heap); - const QRect &arg2 = args.read (heap); - int arg3 = args.read (heap); - bool arg4 = args.read (heap); - const QString &arg5 = args.read (heap); + const QFontMetrics &arg1 = gsi::arg_reader() (args, heap); + const QRect &arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + bool arg4 = gsi::arg_reader() (args, heap); + const QString &arg5 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QStyle_Adaptor *)cls)->cbs_itemTextRect_c7544_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -2030,9 +2030,9 @@ static void _call_cbs_pixelMetric_c6642_2 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args.read (heap); - const QWidget *arg3 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + const QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((int)((QStyle_Adaptor *)cls)->cbs_pixelMetric_c6642_2 (arg1, arg2, arg3)); } @@ -2055,7 +2055,7 @@ static void _call_cbs_polish_1315_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStyle_Adaptor *)cls)->cbs_polish_1315_0 (arg1); } @@ -2079,7 +2079,7 @@ static void _call_cbs_polish_1843_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QApplication *arg1 = args.read (heap); + QApplication *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStyle_Adaptor *)cls)->cbs_polish_1843_0 (arg1); } @@ -2103,7 +2103,7 @@ static void _call_cbs_polish_1418_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPalette &arg1 = args.read (heap); + QPalette &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStyle_Adaptor *)cls)->cbs_polish_1418_0 (arg1); } @@ -2165,10 +2165,10 @@ static void _call_cbs_sizeFromContents_c8477_1 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args.read (heap); - const QSize &arg3 = args.read (heap); - const QWidget *arg4 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = gsi::arg_reader() (args, heap); + const QSize &arg3 = gsi::arg_reader() (args, heap); + const QWidget *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QSize)((QStyle_Adaptor *)cls)->cbs_sizeFromContents_c8477_1 (arg1, arg2, arg3, arg4)); } @@ -2238,9 +2238,9 @@ static void _call_cbs_standardPixmap_c6956_2 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args.read (heap); - const QWidget *arg3 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + const QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QPixmap)((QStyle_Adaptor *)cls)->cbs_standardPixmap_c6956_2 (arg1, arg2, arg3)); } @@ -2269,10 +2269,10 @@ static void _call_cbs_styleHint_c8615_3 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args.read (heap); - const QWidget *arg3 = args.read (heap); - QStyleHintReturn *arg4 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + const QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + QStyleHintReturn *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((int)((QStyle_Adaptor *)cls)->cbs_styleHint_c8615_3 (arg1, arg2, arg3, arg4)); } @@ -2301,10 +2301,10 @@ static void _call_cbs_subControlRect_c9798_1 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOptionComplex *arg2 = args.read (heap); - const qt_gsi::Converter::target_type & arg3 = args.read::target_type & > (heap); - const QWidget *arg4 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOptionComplex *arg2 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg3 = gsi::arg_reader::target_type & >() (args, heap); + const QWidget *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QRect)((QStyle_Adaptor *)cls)->cbs_subControlRect_c9798_1 (arg1, arg2, arg3, arg4)); } @@ -2331,9 +2331,9 @@ static void _call_cbs_subElementRect_c6528_1 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args.read (heap); - const QWidget *arg3 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = gsi::arg_reader() (args, heap); + const QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QRect)((QStyle_Adaptor *)cls)->cbs_subElementRect_c6528_1 (arg1, arg2, arg3)); } @@ -2356,7 +2356,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStyle_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2380,7 +2380,7 @@ static void _call_cbs_unpolish_1315_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStyle_Adaptor *)cls)->cbs_unpolish_1315_0 (arg1); } @@ -2404,7 +2404,7 @@ static void _call_cbs_unpolish_1843_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QApplication *arg1 = args.read (heap); + QApplication *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStyle_Adaptor *)cls)->cbs_unpolish_1843_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQStylePlugin.cc b/src/gsiqt/qt4/QtGui/gsiDeclQStylePlugin.cc index b77d251c2..e7ba0ee4f 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQStylePlugin.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQStylePlugin.cc @@ -407,7 +407,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStylePlugin_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -431,7 +431,7 @@ static void _call_cbs_create_2025_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QStyle *)((QStylePlugin_Adaptor *)cls)->cbs_create_2025_0 (arg1)); } @@ -454,7 +454,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStylePlugin_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -496,7 +496,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStylePlugin_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -520,7 +520,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QStylePlugin_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -545,8 +545,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QStylePlugin_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -620,7 +620,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStylePlugin_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQStyledItemDelegate.cc b/src/gsiqt/qt4/QtGui/gsiDeclQStyledItemDelegate.cc index c5839c5c2..a689a04ba 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQStyledItemDelegate.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQStyledItemDelegate.cc @@ -727,7 +727,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStyledItemDelegate_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -794,9 +794,9 @@ static void _call_cbs_createEditor_c6860_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - const QStyleOptionViewItem &arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionViewItem &arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); ret.write ((QWidget *)((QStyledItemDelegate_Adaptor *)cls)->cbs_createEditor_c6860_0 (arg1, arg2, arg3)); } @@ -819,7 +819,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStyledItemDelegate_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -861,7 +861,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStyledItemDelegate_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -887,8 +887,8 @@ static void _call_cbs_displayText_c3997_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVariant &arg1 = args.read (heap); - const QLocale &arg2 = args.read (heap); + const QVariant &arg1 = gsi::arg_reader() (args, heap); + const QLocale &arg2 = gsi::arg_reader() (args, heap); ret.write ((QString)((QStyledItemDelegate_Adaptor *)cls)->cbs_displayText_c3997_0 (arg1, arg2)); } @@ -917,10 +917,10 @@ static void _call_cbs_editorEvent_9073_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); - QAbstractItemModel *arg2 = args.read (heap); - const QStyleOptionViewItem &arg3 = args.read (heap); - const QModelIndex &arg4 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); + QAbstractItemModel *arg2 = gsi::arg_reader() (args, heap); + const QStyleOptionViewItem &arg3 = gsi::arg_reader() (args, heap); + const QModelIndex &arg4 = gsi::arg_reader() (args, heap); ret.write ((bool)((QStyledItemDelegate_Adaptor *)cls)->cbs_editorEvent_9073_0 (arg1, arg2, arg3, arg4)); } @@ -943,7 +943,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QStyledItemDelegate_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -968,8 +968,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QStyledItemDelegate_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -994,8 +994,8 @@ static void _call_cbs_initStyleOption_c4962_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionViewItem *arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + QStyleOptionViewItem *arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStyledItemDelegate_Adaptor *)cls)->cbs_initStyleOption_c4962_0 (arg1, arg2); } @@ -1023,9 +1023,9 @@ static void _call_cbs_paint_c6971_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QStyleOptionViewItem &arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionViewItem &arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStyledItemDelegate_Adaptor *)cls)->cbs_paint_c6971_0 (arg1, arg2, arg3); } @@ -1083,8 +1083,8 @@ static void _call_cbs_setEditorData_c3602_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStyledItemDelegate_Adaptor *)cls)->cbs_setEditorData_c3602_0 (arg1, arg2); } @@ -1112,9 +1112,9 @@ static void _call_cbs_setModelData_c5913_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - QAbstractItemModel *arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + QAbstractItemModel *arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStyledItemDelegate_Adaptor *)cls)->cbs_setModelData_c5913_0 (arg1, arg2, arg3); } @@ -1140,8 +1140,8 @@ static void _call_cbs_sizeHint_c5653_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStyleOptionViewItem &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + const QStyleOptionViewItem &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); ret.write ((QSize)((QStyledItemDelegate_Adaptor *)cls)->cbs_sizeHint_c5653_0 (arg1, arg2)); } @@ -1182,7 +1182,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStyledItemDelegate_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -1210,9 +1210,9 @@ static void _call_cbs_updateEditorGeometry_c6860_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - const QStyleOptionViewItem &arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionViewItem &arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStyledItemDelegate_Adaptor *)cls)->cbs_updateEditorGeometry_c6860_0 (arg1, arg2, arg3); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQSwipeGesture.cc b/src/gsiqt/qt4/QtGui/gsiDeclQSwipeGesture.cc index bd973a941..3e395e99e 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQSwipeGesture.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQSwipeGesture.cc @@ -407,7 +407,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSwipeGesture_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -431,7 +431,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSwipeGesture_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -473,7 +473,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSwipeGesture_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -497,7 +497,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSwipeGesture_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -522,8 +522,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSwipeGesture_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -578,7 +578,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSwipeGesture_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQSyntaxHighlighter.cc b/src/gsiqt/qt4/QtGui/gsiDeclQSyntaxHighlighter.cc index f589f1e06..9e20ae524 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQSyntaxHighlighter.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQSyntaxHighlighter.cc @@ -528,7 +528,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSyntaxHighlighter_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -594,7 +594,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSyntaxHighlighter_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -636,7 +636,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSyntaxHighlighter_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -660,7 +660,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSyntaxHighlighter_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -685,8 +685,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSyntaxHighlighter_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -727,7 +727,7 @@ static void _call_cbs_highlightBlock_2025_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSyntaxHighlighter_Adaptor *)cls)->cbs_highlightBlock_2025_0 (arg1); } @@ -910,7 +910,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSyntaxHighlighter_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQSystemTrayIcon.cc b/src/gsiqt/qt4/QtGui/gsiDeclQSystemTrayIcon.cc index 9d11dbeac..72cb205ee 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQSystemTrayIcon.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQSystemTrayIcon.cc @@ -665,7 +665,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSystemTrayIcon_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -689,7 +689,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSystemTrayIcon_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -731,7 +731,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSystemTrayIcon_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -755,7 +755,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSystemTrayIcon_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -780,8 +780,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSystemTrayIcon_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -850,7 +850,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSystemTrayIcon_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQTabBar.cc b/src/gsiqt/qt4/QtGui/gsiDeclQTabBar.cc index ce11440c3..75e6fac3f 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQTabBar.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQTabBar.cc @@ -2139,7 +2139,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -2163,7 +2163,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -2187,7 +2187,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -2211,7 +2211,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -2235,7 +2235,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -2320,7 +2320,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -2384,7 +2384,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -2408,7 +2408,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -2432,7 +2432,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -2456,7 +2456,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -2480,7 +2480,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -2504,7 +2504,7 @@ static void _call_cbs_enabledChange_864_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar_Adaptor *)cls)->cbs_enabledChange_864_0 (arg1); } @@ -2528,7 +2528,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -2552,7 +2552,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTabBar_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -2577,8 +2577,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTabBar_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -2601,7 +2601,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -2639,7 +2639,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTabBar_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -2662,7 +2662,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -2700,7 +2700,7 @@ static void _call_cbs_fontChange_1801_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar_Adaptor *)cls)->cbs_fontChange_1801_0 (arg1); } @@ -2724,7 +2724,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTabBar_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -2747,7 +2747,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -2793,7 +2793,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2817,7 +2817,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QTabBar_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2840,7 +2840,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2864,7 +2864,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2908,7 +2908,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2932,7 +2932,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QTabBar_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2974,7 +2974,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2998,7 +2998,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -3022,7 +3022,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -3046,7 +3046,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -3070,7 +3070,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -3113,7 +3113,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -3137,7 +3137,7 @@ static void _call_cbs_paletteChange_2113_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPalette &arg1 = args.read (heap); + const QPalette &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar_Adaptor *)cls)->cbs_paletteChange_2113_0 (arg1); } @@ -3194,7 +3194,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -3232,7 +3232,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -3256,7 +3256,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -3299,7 +3299,7 @@ static void _call_cbs_styleChange_1228_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyle &arg1 = args.read (heap); + QStyle &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar_Adaptor *)cls)->cbs_styleChange_1228_0 (arg1); } @@ -3341,7 +3341,7 @@ static void _call_cbs_tabInserted_767_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar_Adaptor *)cls)->cbs_tabInserted_767_0 (arg1); } @@ -3406,7 +3406,7 @@ static void _call_cbs_tabRemoved_767_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar_Adaptor *)cls)->cbs_tabRemoved_767_0 (arg1); } @@ -3430,7 +3430,7 @@ static void _call_cbs_tabSizeHint_c767_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QSize)((QTabBar_Adaptor *)cls)->cbs_tabSizeHint_c767_0 (arg1)); } @@ -3453,7 +3453,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -3477,7 +3477,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -3516,7 +3516,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } @@ -3540,7 +3540,7 @@ static void _call_cbs_windowActivationChange_864_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar_Adaptor *)cls)->cbs_windowActivationChange_864_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQTabWidget.cc b/src/gsiqt/qt4/QtGui/gsiDeclQTabWidget.cc index ef2bd6a7c..7de567482 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQTabWidget.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQTabWidget.cc @@ -1984,7 +1984,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -2008,7 +2008,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -2032,7 +2032,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -2056,7 +2056,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -2080,7 +2080,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -2165,7 +2165,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -2229,7 +2229,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -2253,7 +2253,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -2277,7 +2277,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -2301,7 +2301,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -2325,7 +2325,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -2349,7 +2349,7 @@ static void _call_cbs_enabledChange_864_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget_Adaptor *)cls)->cbs_enabledChange_864_0 (arg1); } @@ -2373,7 +2373,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -2397,7 +2397,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTabWidget_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -2422,8 +2422,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTabWidget_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -2446,7 +2446,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -2484,7 +2484,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTabWidget_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -2507,7 +2507,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -2545,7 +2545,7 @@ static void _call_cbs_fontChange_1801_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget_Adaptor *)cls)->cbs_fontChange_1801_0 (arg1); } @@ -2569,7 +2569,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTabWidget_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -2592,7 +2592,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -2635,7 +2635,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2659,7 +2659,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QTabWidget_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2682,7 +2682,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2706,7 +2706,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2750,7 +2750,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2774,7 +2774,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QTabWidget_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2816,7 +2816,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2840,7 +2840,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2864,7 +2864,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2888,7 +2888,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2912,7 +2912,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2955,7 +2955,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2979,7 +2979,7 @@ static void _call_cbs_paletteChange_2113_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPalette &arg1 = args.read (heap); + const QPalette &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget_Adaptor *)cls)->cbs_paletteChange_2113_0 (arg1); } @@ -3036,7 +3036,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -3093,7 +3093,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -3117,7 +3117,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -3160,7 +3160,7 @@ static void _call_cbs_styleChange_1228_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyle &arg1 = args.read (heap); + QStyle &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget_Adaptor *)cls)->cbs_styleChange_1228_0 (arg1); } @@ -3216,7 +3216,7 @@ static void _call_cbs_tabInserted_767_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget_Adaptor *)cls)->cbs_tabInserted_767_0 (arg1); } @@ -3240,7 +3240,7 @@ static void _call_cbs_tabRemoved_767_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget_Adaptor *)cls)->cbs_tabRemoved_767_0 (arg1); } @@ -3264,7 +3264,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -3288,7 +3288,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -3327,7 +3327,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } @@ -3351,7 +3351,7 @@ static void _call_cbs_windowActivationChange_864_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget_Adaptor *)cls)->cbs_windowActivationChange_864_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQTableView.cc b/src/gsiqt/qt4/QtGui/gsiDeclQTableView.cc index 2f89875a3..c01a153c0 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQTableView.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQTableView.cc @@ -2854,7 +2854,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -2896,7 +2896,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -2920,7 +2920,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -2964,8 +2964,8 @@ static void _call_cbs_closeEditor_4926_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_closeEditor_4926_0 (arg1, arg2); } @@ -2989,7 +2989,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -3085,7 +3085,7 @@ static void _call_cbs_commitData_1315_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_commitData_1315_0 (arg1); } @@ -3109,7 +3109,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -3160,8 +3160,8 @@ static void _call_cbs_currentChanged_4682_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_currentChanged_4682_0 (arg1, arg2); } @@ -3203,7 +3203,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -3229,8 +3229,8 @@ static void _call_cbs_dataChanged_4682_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_dataChanged_4682_0 (arg1, arg2); } @@ -3308,7 +3308,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -3385,7 +3385,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -3409,7 +3409,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -3433,7 +3433,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -3476,7 +3476,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -3518,9 +3518,9 @@ static void _call_cbs_edit_6773_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - QEvent *arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + QEvent *arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTableView_Adaptor *)cls)->cbs_edit_6773_0 (arg1, arg2, arg3)); } @@ -3543,7 +3543,7 @@ static void _call_cbs_editorDestroyed_1302_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_editorDestroyed_1302_0 (arg1); } @@ -3567,7 +3567,7 @@ static void _call_cbs_enabledChange_864_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_enabledChange_864_0 (arg1); } @@ -3591,7 +3591,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -3633,7 +3633,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTableView_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -3658,8 +3658,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTableView_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -3697,7 +3697,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -3735,7 +3735,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTableView_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -3758,7 +3758,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -3796,7 +3796,7 @@ static void _call_cbs_fontChange_1801_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_fontChange_1801_0 (arg1); } @@ -3820,7 +3820,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTableView_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -3843,7 +3843,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -3886,7 +3886,7 @@ static void _call_cbs_horizontalScrollbarAction_767_0 (const qt_gsi::GenericMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_horizontalScrollbarAction_767_0 (arg1); } @@ -3910,7 +3910,7 @@ static void _call_cbs_horizontalScrollbarValueChanged_767_0 (const qt_gsi::Gener { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_horizontalScrollbarValueChanged_767_0 (arg1); } @@ -3948,7 +3948,7 @@ static void _call_cbs_indexAt_c1916_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QTableView_Adaptor *)cls)->cbs_indexAt_c1916_0 (arg1)); } @@ -3971,7 +3971,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -3995,7 +3995,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QTableView_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -4018,7 +4018,7 @@ static void _call_cbs_isIndexHidden_c2395_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTableView_Adaptor *)cls)->cbs_isIndexHidden_c2395_0 (arg1)); } @@ -4041,7 +4041,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -4065,7 +4065,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -4089,7 +4089,7 @@ static void _call_cbs_keyboardSearch_2025_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_keyboardSearch_2025_0 (arg1); } @@ -4133,7 +4133,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -4157,7 +4157,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QTableView_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -4199,7 +4199,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -4223,7 +4223,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -4247,7 +4247,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -4271,7 +4271,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -4297,8 +4297,8 @@ static void _call_cbs_moveCursor_6476_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); - QFlags arg2 = args.read > (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); ret.write ((QModelIndex)((QTableView_Adaptor *)cls)->cbs_moveCursor_6476_0 (arg1, arg2)); } @@ -4321,7 +4321,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -4364,7 +4364,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -4388,7 +4388,7 @@ static void _call_cbs_paletteChange_2113_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPalette &arg1 = args.read (heap); + const QPalette &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_paletteChange_2113_0 (arg1); } @@ -4483,7 +4483,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -4583,9 +4583,9 @@ static void _call_cbs_rowsAboutToBeRemoved_3713_0 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_rowsAboutToBeRemoved_3713_0 (arg1, arg2, arg3); } @@ -4613,9 +4613,9 @@ static void _call_cbs_rowsInserted_3713_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_rowsInserted_3713_0 (arg1, arg2, arg3); } @@ -4656,8 +4656,8 @@ static void _call_cbs_scrollContentsBy_1426_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_scrollContentsBy_1426_0 (arg1, arg2); } @@ -4705,8 +4705,8 @@ static void _call_cbs_scrollTo_5576_1 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QAbstractItemView::EnsureVisible), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_scrollTo_5576_1 (arg1, arg2); } @@ -4771,8 +4771,8 @@ static void _call_cbs_selectionChanged_5346_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QItemSelection &arg1 = args.read (heap); - const QItemSelection &arg2 = args.read (heap); + const QItemSelection &arg1 = gsi::arg_reader() (args, heap); + const QItemSelection &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_selectionChanged_5346_0 (arg1, arg2); } @@ -4798,8 +4798,8 @@ static void _call_cbs_selectionCommand_c4199_1 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QEvent *arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QEvent *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write > ((QFlags)((QTableView_Adaptor *)cls)->cbs_selectionCommand_c4199_1 (arg1, arg2)); } @@ -4874,7 +4874,7 @@ static void _call_cbs_setModel_2419_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractItemModel *arg1 = args.read (heap); + QAbstractItemModel *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_setModel_2419_0 (arg1); } @@ -4898,7 +4898,7 @@ static void _call_cbs_setRootIndex_2395_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_setRootIndex_2395_0 (arg1); } @@ -4924,8 +4924,8 @@ static void _call_cbs_setSelection_6155_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); - QFlags arg2 = args.read > (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_setSelection_6155_0 (arg1, arg2); } @@ -4949,7 +4949,7 @@ static void _call_cbs_setSelectionModel_2533_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QItemSelectionModel *arg1 = args.read (heap); + QItemSelectionModel *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_setSelectionModel_2533_0 (arg1); } @@ -5058,7 +5058,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -5101,7 +5101,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -5144,7 +5144,7 @@ static void _call_cbs_sizeHintForColumn_c767_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTableView_Adaptor *)cls)->cbs_sizeHintForColumn_c767_0 (arg1)); } @@ -5167,7 +5167,7 @@ static void _call_cbs_sizeHintForRow_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTableView_Adaptor *)cls)->cbs_sizeHintForRow_c767_0 (arg1)); } @@ -5205,7 +5205,7 @@ static void _call_cbs_startDrag_2456_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_startDrag_2456_0 (arg1); } @@ -5258,7 +5258,7 @@ static void _call_cbs_styleChange_1228_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyle &arg1 = args.read (heap); + QStyle &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_styleChange_1228_0 (arg1); } @@ -5282,7 +5282,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -5306,7 +5306,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -5424,7 +5424,7 @@ static void _call_cbs_verticalScrollbarAction_767_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_verticalScrollbarAction_767_0 (arg1); } @@ -5448,7 +5448,7 @@ static void _call_cbs_verticalScrollbarValueChanged_767_0 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_verticalScrollbarValueChanged_767_0 (arg1); } @@ -5519,7 +5519,7 @@ static void _call_cbs_viewportEvent_1217_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTableView_Adaptor *)cls)->cbs_viewportEvent_1217_0 (arg1)); } @@ -5542,7 +5542,7 @@ static void _call_cbs_visualRect_c2395_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QTableView_Adaptor *)cls)->cbs_visualRect_c2395_0 (arg1)); } @@ -5565,7 +5565,7 @@ static void _call_cbs_visualRegionForSelection_c2727_0 (const qt_gsi::GenericMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QItemSelection &arg1 = args.read (heap); + const QItemSelection &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRegion)((QTableView_Adaptor *)cls)->cbs_visualRegionForSelection_c2727_0 (arg1)); } @@ -5588,7 +5588,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } @@ -5612,7 +5612,7 @@ static void _call_cbs_windowActivationChange_864_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_windowActivationChange_864_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQTableWidget.cc b/src/gsiqt/qt4/QtGui/gsiDeclQTableWidget.cc index 705c1271e..66a51645c 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQTableWidget.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQTableWidget.cc @@ -3184,7 +3184,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -3352,7 +3352,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -3376,7 +3376,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -3420,8 +3420,8 @@ static void _call_cbs_closeEditor_4926_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_closeEditor_4926_0 (arg1, arg2); } @@ -3445,7 +3445,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -3541,7 +3541,7 @@ static void _call_cbs_commitData_1315_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_commitData_1315_0 (arg1); } @@ -3565,7 +3565,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -3643,8 +3643,8 @@ static void _call_cbs_currentChanged_4682_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_currentChanged_4682_0 (arg1, arg2); } @@ -3707,7 +3707,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -3733,8 +3733,8 @@ static void _call_cbs_dataChanged_4682_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_dataChanged_4682_0 (arg1, arg2); } @@ -3812,7 +3812,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -3889,7 +3889,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -3913,7 +3913,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -3937,7 +3937,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -3980,7 +3980,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -4024,10 +4024,10 @@ static void _call_cbs_dropMimeData_5138_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QMimeData *arg3 = args.read (heap); - const qt_gsi::Converter::target_type & arg4 = args.read::target_type & > (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QMimeData *arg3 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg4 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((bool)((QTableWidget_Adaptor *)cls)->cbs_dropMimeData_5138_0 (arg1, arg2, arg3, arg4)); } @@ -4054,9 +4054,9 @@ static void _call_cbs_edit_6773_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - QEvent *arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + QEvent *arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTableWidget_Adaptor *)cls)->cbs_edit_6773_0 (arg1, arg2, arg3)); } @@ -4079,7 +4079,7 @@ static void _call_cbs_editorDestroyed_1302_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_editorDestroyed_1302_0 (arg1); } @@ -4103,7 +4103,7 @@ static void _call_cbs_enabledChange_864_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_enabledChange_864_0 (arg1); } @@ -4127,7 +4127,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -4169,7 +4169,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTableWidget_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -4194,8 +4194,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTableWidget_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -4233,7 +4233,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -4271,7 +4271,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTableWidget_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -4294,7 +4294,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -4332,7 +4332,7 @@ static void _call_cbs_fontChange_1801_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_fontChange_1801_0 (arg1); } @@ -4356,7 +4356,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTableWidget_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -4379,7 +4379,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -4422,7 +4422,7 @@ static void _call_cbs_horizontalScrollbarAction_767_0 (const qt_gsi::GenericMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_horizontalScrollbarAction_767_0 (arg1); } @@ -4446,7 +4446,7 @@ static void _call_cbs_horizontalScrollbarValueChanged_767_0 (const qt_gsi::Gener { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_horizontalScrollbarValueChanged_767_0 (arg1); } @@ -4484,7 +4484,7 @@ static void _call_cbs_indexAt_c1916_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QTableWidget_Adaptor *)cls)->cbs_indexAt_c1916_0 (arg1)); } @@ -4525,7 +4525,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -4549,7 +4549,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QTableWidget_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -4572,7 +4572,7 @@ static void _call_cbs_isIndexHidden_c2395_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTableWidget_Adaptor *)cls)->cbs_isIndexHidden_c2395_0 (arg1)); } @@ -4753,7 +4753,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -4777,7 +4777,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -4801,7 +4801,7 @@ static void _call_cbs_keyboardSearch_2025_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_keyboardSearch_2025_0 (arg1); } @@ -4845,7 +4845,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -4869,7 +4869,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QTableWidget_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -4892,7 +4892,7 @@ static void _call_cbs_mimeData_c3368_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList arg1 = args.read > (heap); + const QList arg1 = gsi::arg_reader >() (args, heap); ret.write ((QMimeData *)((QTableWidget_Adaptor *)cls)->cbs_mimeData_c3368_0 (arg1)); } @@ -4953,7 +4953,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -4977,7 +4977,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -5001,7 +5001,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -5025,7 +5025,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -5051,8 +5051,8 @@ static void _call_cbs_moveCursor_6476_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); - QFlags arg2 = args.read > (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); ret.write ((QModelIndex)((QTableWidget_Adaptor *)cls)->cbs_moveCursor_6476_0 (arg1, arg2)); } @@ -5075,7 +5075,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -5118,7 +5118,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -5142,7 +5142,7 @@ static void _call_cbs_paletteChange_2113_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPalette &arg1 = args.read (heap); + const QPalette &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_paletteChange_2113_0 (arg1); } @@ -5237,7 +5237,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -5337,9 +5337,9 @@ static void _call_cbs_rowsAboutToBeRemoved_3713_0 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_rowsAboutToBeRemoved_3713_0 (arg1, arg2, arg3); } @@ -5367,9 +5367,9 @@ static void _call_cbs_rowsInserted_3713_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_rowsInserted_3713_0 (arg1, arg2, arg3); } @@ -5410,8 +5410,8 @@ static void _call_cbs_scrollContentsBy_1426_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_scrollContentsBy_1426_0 (arg1, arg2); } @@ -5459,8 +5459,8 @@ static void _call_cbs_scrollTo_5576_1 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QAbstractItemView::EnsureVisible), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_scrollTo_5576_1 (arg1, arg2); } @@ -5525,8 +5525,8 @@ static void _call_cbs_selectionChanged_5346_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QItemSelection &arg1 = args.read (heap); - const QItemSelection &arg2 = args.read (heap); + const QItemSelection &arg1 = gsi::arg_reader() (args, heap); + const QItemSelection &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_selectionChanged_5346_0 (arg1, arg2); } @@ -5552,8 +5552,8 @@ static void _call_cbs_selectionCommand_c4199_1 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QEvent *arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QEvent *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write > ((QFlags)((QTableWidget_Adaptor *)cls)->cbs_selectionCommand_c4199_1 (arg1, arg2)); } @@ -5628,7 +5628,7 @@ static void _call_cbs_setRootIndex_2395_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_setRootIndex_2395_0 (arg1); } @@ -5654,8 +5654,8 @@ static void _call_cbs_setSelection_6155_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); - QFlags arg2 = args.read > (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_setSelection_6155_0 (arg1, arg2); } @@ -5679,7 +5679,7 @@ static void _call_cbs_setSelectionModel_2533_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QItemSelectionModel *arg1 = args.read (heap); + QItemSelectionModel *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_setSelectionModel_2533_0 (arg1); } @@ -5788,7 +5788,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -5831,7 +5831,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -5874,7 +5874,7 @@ static void _call_cbs_sizeHintForColumn_c767_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTableWidget_Adaptor *)cls)->cbs_sizeHintForColumn_c767_0 (arg1)); } @@ -5897,7 +5897,7 @@ static void _call_cbs_sizeHintForRow_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTableWidget_Adaptor *)cls)->cbs_sizeHintForRow_c767_0 (arg1)); } @@ -5935,7 +5935,7 @@ static void _call_cbs_startDrag_2456_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_startDrag_2456_0 (arg1); } @@ -5988,7 +5988,7 @@ static void _call_cbs_styleChange_1228_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyle &arg1 = args.read (heap); + QStyle &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_styleChange_1228_0 (arg1); } @@ -6031,7 +6031,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -6055,7 +6055,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -6173,7 +6173,7 @@ static void _call_cbs_verticalScrollbarAction_767_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_verticalScrollbarAction_767_0 (arg1); } @@ -6197,7 +6197,7 @@ static void _call_cbs_verticalScrollbarValueChanged_767_0 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_verticalScrollbarValueChanged_767_0 (arg1); } @@ -6268,7 +6268,7 @@ static void _call_cbs_viewportEvent_1217_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTableWidget_Adaptor *)cls)->cbs_viewportEvent_1217_0 (arg1)); } @@ -6291,7 +6291,7 @@ static void _call_cbs_visualRect_c2395_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QTableWidget_Adaptor *)cls)->cbs_visualRect_c2395_0 (arg1)); } @@ -6314,7 +6314,7 @@ static void _call_cbs_visualRegionForSelection_c2727_0 (const qt_gsi::GenericMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QItemSelection &arg1 = args.read (heap); + const QItemSelection &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRegion)((QTableWidget_Adaptor *)cls)->cbs_visualRegionForSelection_c2727_0 (arg1)); } @@ -6337,7 +6337,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } @@ -6361,7 +6361,7 @@ static void _call_cbs_windowActivationChange_864_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_windowActivationChange_864_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQTableWidgetItem.cc b/src/gsiqt/qt4/QtGui/gsiDeclQTableWidgetItem.cc index a9ce80530..6075075fc 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQTableWidgetItem.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQTableWidgetItem.cc @@ -1081,7 +1081,7 @@ static void _call_cbs_data_c767_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QTableWidgetItem_Adaptor *)cls)->cbs_data_c767_0 (arg1)); } @@ -1104,7 +1104,7 @@ static void _call_cbs_operator_lt__c2893_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTableWidgetItem &arg1 = args.read (heap); + const QTableWidgetItem &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTableWidgetItem_Adaptor *)cls)->cbs_operator_lt__c2893_0 (arg1)); } @@ -1127,7 +1127,7 @@ static void _call_cbs_read_1697_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDataStream &arg1 = args.read (heap); + QDataStream &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidgetItem_Adaptor *)cls)->cbs_read_1697_0 (arg1); } @@ -1153,8 +1153,8 @@ static void _call_cbs_setData_2778_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidgetItem_Adaptor *)cls)->cbs_setData_2778_0 (arg1, arg2); } @@ -1178,7 +1178,7 @@ static void _call_cbs_write_c1697_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDataStream &arg1 = args.read (heap); + QDataStream &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidgetItem_Adaptor *)cls)->cbs_write_c1697_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQTapAndHoldGesture.cc b/src/gsiqt/qt4/QtGui/gsiDeclQTapAndHoldGesture.cc index 2eb38e5ac..da785ba01 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQTapAndHoldGesture.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQTapAndHoldGesture.cc @@ -375,7 +375,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTapAndHoldGesture_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -399,7 +399,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTapAndHoldGesture_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -441,7 +441,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTapAndHoldGesture_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -465,7 +465,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTapAndHoldGesture_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -490,8 +490,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTapAndHoldGesture_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -546,7 +546,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTapAndHoldGesture_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQTapGesture.cc b/src/gsiqt/qt4/QtGui/gsiDeclQTapGesture.cc index e256528c2..8531a9b62 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQTapGesture.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQTapGesture.cc @@ -375,7 +375,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTapGesture_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -399,7 +399,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTapGesture_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -441,7 +441,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTapGesture_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -465,7 +465,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTapGesture_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -490,8 +490,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTapGesture_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -546,7 +546,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTapGesture_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQTextBlockGroup.cc b/src/gsiqt/qt4/QtGui/gsiDeclQTextBlockGroup.cc index 49e874173..123058697 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQTextBlockGroup.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQTextBlockGroup.cc @@ -368,7 +368,7 @@ static void _call_cbs_blockFormatChanged_2306_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextBlock &arg1 = args.read (heap); + const QTextBlock &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBlockGroup_Adaptor *)cls)->cbs_blockFormatChanged_2306_0 (arg1); } @@ -392,7 +392,7 @@ static void _call_cbs_blockInserted_2306_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextBlock &arg1 = args.read (heap); + const QTextBlock &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBlockGroup_Adaptor *)cls)->cbs_blockInserted_2306_0 (arg1); } @@ -430,7 +430,7 @@ static void _call_cbs_blockRemoved_2306_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextBlock &arg1 = args.read (heap); + const QTextBlock &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBlockGroup_Adaptor *)cls)->cbs_blockRemoved_2306_0 (arg1); } @@ -454,7 +454,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBlockGroup_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -478,7 +478,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBlockGroup_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -520,7 +520,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBlockGroup_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -544,7 +544,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextBlockGroup_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -569,8 +569,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextBlockGroup_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -644,7 +644,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBlockGroup_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQTextBrowser.cc b/src/gsiqt/qt4/QtGui/gsiDeclQTextBrowser.cc index fb94320c9..4b3cb63d7 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQTextBrowser.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQTextBrowser.cc @@ -1720,7 +1720,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1800,7 +1800,7 @@ static void _call_cbs_canInsertFromMimeData_c2168_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMimeData *arg1 = args.read (heap); + const QMimeData *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextBrowser_Adaptor *)cls)->cbs_canInsertFromMimeData_c2168_0 (arg1)); } @@ -1823,7 +1823,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1847,7 +1847,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1871,7 +1871,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1895,7 +1895,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -2031,7 +2031,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -2095,7 +2095,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -2119,7 +2119,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -2143,7 +2143,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -2167,7 +2167,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -2210,7 +2210,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -2234,7 +2234,7 @@ static void _call_cbs_enabledChange_864_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser_Adaptor *)cls)->cbs_enabledChange_864_0 (arg1); } @@ -2258,7 +2258,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -2282,7 +2282,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextBrowser_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -2307,8 +2307,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextBrowser_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -2331,7 +2331,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -2369,7 +2369,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextBrowser_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -2392,7 +2392,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -2430,7 +2430,7 @@ static void _call_cbs_fontChange_1801_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser_Adaptor *)cls)->cbs_fontChange_1801_0 (arg1); } @@ -2492,7 +2492,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTextBrowser_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -2515,7 +2515,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -2609,7 +2609,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2633,7 +2633,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QTextBrowser_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2656,7 +2656,7 @@ static void _call_cbs_insertFromMimeData_2168_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMimeData *arg1 = args.read (heap); + const QMimeData *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser_Adaptor *)cls)->cbs_insertFromMimeData_2168_0 (arg1); } @@ -2680,7 +2680,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2704,7 +2704,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2748,7 +2748,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2774,8 +2774,8 @@ static void _call_cbs_loadResource_2360_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QUrl &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QUrl &arg2 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QTextBrowser_Adaptor *)cls)->cbs_loadResource_2360_0 (arg1, arg2)); } @@ -2798,7 +2798,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QTextBrowser_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2840,7 +2840,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2864,7 +2864,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2888,7 +2888,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2912,7 +2912,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2936,7 +2936,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2979,7 +2979,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -3003,7 +3003,7 @@ static void _call_cbs_paletteChange_2113_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPalette &arg1 = args.read (heap); + const QPalette &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser_Adaptor *)cls)->cbs_paletteChange_2113_0 (arg1); } @@ -3098,7 +3098,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -3124,8 +3124,8 @@ static void _call_cbs_scrollContentsBy_1426_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser_Adaptor *)cls)->cbs_scrollContentsBy_1426_0 (arg1, arg2); } @@ -3177,7 +3177,7 @@ static void _call_cbs_setSource_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QUrl &arg1 = args.read (heap); + const QUrl &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser_Adaptor *)cls)->cbs_setSource_1701_0 (arg1); } @@ -3248,7 +3248,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -3291,7 +3291,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -3352,7 +3352,7 @@ static void _call_cbs_styleChange_1228_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyle &arg1 = args.read (heap); + QStyle &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser_Adaptor *)cls)->cbs_styleChange_1228_0 (arg1); } @@ -3376,7 +3376,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -3414,7 +3414,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -3471,7 +3471,7 @@ static void _call_cbs_viewportEvent_1217_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextBrowser_Adaptor *)cls)->cbs_viewportEvent_1217_0 (arg1)); } @@ -3494,7 +3494,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } @@ -3518,7 +3518,7 @@ static void _call_cbs_windowActivationChange_864_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser_Adaptor *)cls)->cbs_windowActivationChange_864_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQTextDocument.cc b/src/gsiqt/qt4/QtGui/gsiDeclQTextDocument.cc index cba06d736..51c8d643f 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQTextDocument.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQTextDocument.cc @@ -1860,7 +1860,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextDocument_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1942,7 +1942,7 @@ static void _call_cbs_createObject_2432_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextFormat &arg1 = args.read (heap); + const QTextFormat &arg1 = gsi::arg_reader() (args, heap); ret.write ((QTextObject *)((QTextDocument_Adaptor *)cls)->cbs_createObject_2432_0 (arg1)); } @@ -1983,7 +1983,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextDocument_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -2025,7 +2025,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextDocument_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -2063,7 +2063,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextDocument_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -2088,8 +2088,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextDocument_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -2114,8 +2114,8 @@ static void _call_cbs_loadResource_2360_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QUrl &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QUrl &arg2 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QTextDocument_Adaptor *)cls)->cbs_loadResource_2360_0 (arg1, arg2)); } @@ -2206,7 +2206,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextDocument_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQTextEdit.cc b/src/gsiqt/qt4/QtGui/gsiDeclQTextEdit.cc index 444f7aa9f..8e4515425 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQTextEdit.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQTextEdit.cc @@ -2823,7 +2823,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -2847,7 +2847,7 @@ static void _call_cbs_canInsertFromMimeData_c2168_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMimeData *arg1 = args.read (heap); + const QMimeData *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextEdit_Adaptor *)cls)->cbs_canInsertFromMimeData_c2168_0 (arg1)); } @@ -2870,7 +2870,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -2894,7 +2894,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -2918,7 +2918,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -2942,7 +2942,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -3078,7 +3078,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -3142,7 +3142,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -3166,7 +3166,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -3190,7 +3190,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -3214,7 +3214,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -3257,7 +3257,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -3281,7 +3281,7 @@ static void _call_cbs_enabledChange_864_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit_Adaptor *)cls)->cbs_enabledChange_864_0 (arg1); } @@ -3305,7 +3305,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -3329,7 +3329,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextEdit_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -3354,8 +3354,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextEdit_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -3378,7 +3378,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -3416,7 +3416,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextEdit_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -3439,7 +3439,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -3477,7 +3477,7 @@ static void _call_cbs_fontChange_1801_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit_Adaptor *)cls)->cbs_fontChange_1801_0 (arg1); } @@ -3501,7 +3501,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTextEdit_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -3524,7 +3524,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -3548,7 +3548,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -3572,7 +3572,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QTextEdit_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -3595,7 +3595,7 @@ static void _call_cbs_insertFromMimeData_2168_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMimeData *arg1 = args.read (heap); + const QMimeData *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit_Adaptor *)cls)->cbs_insertFromMimeData_2168_0 (arg1); } @@ -3619,7 +3619,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -3643,7 +3643,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -3687,7 +3687,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -3713,8 +3713,8 @@ static void _call_cbs_loadResource_2360_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QUrl &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QUrl &arg2 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QTextEdit_Adaptor *)cls)->cbs_loadResource_2360_0 (arg1, arg2)); } @@ -3737,7 +3737,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QTextEdit_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -3779,7 +3779,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -3803,7 +3803,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -3827,7 +3827,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -3851,7 +3851,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -3875,7 +3875,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -3918,7 +3918,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -3942,7 +3942,7 @@ static void _call_cbs_paletteChange_2113_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPalette &arg1 = args.read (heap); + const QPalette &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit_Adaptor *)cls)->cbs_paletteChange_2113_0 (arg1); } @@ -4017,7 +4017,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -4043,8 +4043,8 @@ static void _call_cbs_scrollContentsBy_1426_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit_Adaptor *)cls)->cbs_scrollContentsBy_1426_0 (arg1, arg2); } @@ -4143,7 +4143,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -4186,7 +4186,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -4229,7 +4229,7 @@ static void _call_cbs_styleChange_1228_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyle &arg1 = args.read (heap); + QStyle &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit_Adaptor *)cls)->cbs_styleChange_1228_0 (arg1); } @@ -4253,7 +4253,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -4291,7 +4291,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -4348,7 +4348,7 @@ static void _call_cbs_viewportEvent_1217_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextEdit_Adaptor *)cls)->cbs_viewportEvent_1217_0 (arg1)); } @@ -4371,7 +4371,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } @@ -4395,7 +4395,7 @@ static void _call_cbs_windowActivationChange_864_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit_Adaptor *)cls)->cbs_windowActivationChange_864_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQTextFrame.cc b/src/gsiqt/qt4/QtGui/gsiDeclQTextFrame.cc index f0074dfe3..de99359e1 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQTextFrame.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQTextFrame.cc @@ -473,7 +473,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextFrame_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -497,7 +497,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextFrame_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -539,7 +539,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextFrame_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -563,7 +563,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextFrame_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -588,8 +588,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextFrame_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -663,7 +663,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextFrame_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQTextList.cc b/src/gsiqt/qt4/QtGui/gsiDeclQTextList.cc index 754ad9d22..81832c026 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQTextList.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQTextList.cc @@ -579,7 +579,7 @@ static void _call_cbs_blockFormatChanged_2306_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextBlock &arg1 = args.read (heap); + const QTextBlock &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextList_Adaptor *)cls)->cbs_blockFormatChanged_2306_0 (arg1); } @@ -603,7 +603,7 @@ static void _call_cbs_blockInserted_2306_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextBlock &arg1 = args.read (heap); + const QTextBlock &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextList_Adaptor *)cls)->cbs_blockInserted_2306_0 (arg1); } @@ -641,7 +641,7 @@ static void _call_cbs_blockRemoved_2306_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextBlock &arg1 = args.read (heap); + const QTextBlock &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextList_Adaptor *)cls)->cbs_blockRemoved_2306_0 (arg1); } @@ -665,7 +665,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextList_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -689,7 +689,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextList_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -731,7 +731,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextList_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -755,7 +755,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextList_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -780,8 +780,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextList_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -836,7 +836,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextList_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQTextObject.cc b/src/gsiqt/qt4/QtGui/gsiDeclQTextObject.cc index 05b566d03..f7e217ba3 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQTextObject.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQTextObject.cc @@ -378,7 +378,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextObject_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -402,7 +402,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextObject_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -444,7 +444,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextObject_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -468,7 +468,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextObject_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -493,8 +493,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextObject_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -568,7 +568,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextObject_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQTextObjectInterface.cc b/src/gsiqt/qt4/QtGui/gsiDeclQTextObjectInterface.cc index e14fa65b1..3bc03ba1c 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQTextObjectInterface.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQTextObjectInterface.cc @@ -207,11 +207,11 @@ static void _call_cbs_drawObject_8010_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QRectF &arg2 = args.read (heap); - QTextDocument *arg3 = args.read (heap); - int arg4 = args.read (heap); - const QTextFormat &arg5 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QRectF &arg2 = gsi::arg_reader() (args, heap); + QTextDocument *arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + const QTextFormat &arg5 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextObjectInterface_Adaptor *)cls)->cbs_drawObject_8010_0 (arg1, arg2, arg3, arg4, arg5); } @@ -239,9 +239,9 @@ static void _call_cbs_intrinsicSize_4938_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTextDocument *arg1 = args.read (heap); - int arg2 = args.read (heap); - const QTextFormat &arg3 = args.read (heap); + QTextDocument *arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QTextFormat &arg3 = gsi::arg_reader() (args, heap); ret.write ((QSizeF)((QTextObjectInterface_Adaptor *)cls)->cbs_intrinsicSize_4938_0 (arg1, arg2, arg3)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQTextTable.cc b/src/gsiqt/qt4/QtGui/gsiDeclQTextTable.cc index 2af862816..7835e3edc 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQTextTable.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQTextTable.cc @@ -752,7 +752,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextTable_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -776,7 +776,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextTable_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -818,7 +818,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextTable_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -842,7 +842,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextTable_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -867,8 +867,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextTable_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -923,7 +923,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextTable_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQTimeEdit.cc b/src/gsiqt/qt4/QtGui/gsiDeclQTimeEdit.cc index 849c2606c..1cb80efcf 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQTimeEdit.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQTimeEdit.cc @@ -1251,7 +1251,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeEdit_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1275,7 +1275,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeEdit_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1299,7 +1299,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeEdit_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1343,7 +1343,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeEdit_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1367,7 +1367,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeEdit_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1434,7 +1434,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeEdit_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1494,7 +1494,7 @@ static void _call_cbs_dateTimeFromText_c2025_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QDateTime)((QTimeEdit_Adaptor *)cls)->cbs_dateTimeFromText_c2025_0 (arg1)); } @@ -1557,7 +1557,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeEdit_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -1581,7 +1581,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeEdit_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1605,7 +1605,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeEdit_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1629,7 +1629,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeEdit_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1653,7 +1653,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeEdit_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1691,7 +1691,7 @@ static void _call_cbs_enabledChange_864_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeEdit_Adaptor *)cls)->cbs_enabledChange_864_0 (arg1); } @@ -1715,7 +1715,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeEdit_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -1739,7 +1739,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTimeEdit_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1764,8 +1764,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTimeEdit_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1788,7 +1788,7 @@ static void _call_cbs_fixup_c1330_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QString &arg1 = args.read (heap); + QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeEdit_Adaptor *)cls)->cbs_fixup_c1330_0 (arg1); } @@ -1812,7 +1812,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeEdit_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1850,7 +1850,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTimeEdit_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -1873,7 +1873,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeEdit_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -1911,7 +1911,7 @@ static void _call_cbs_fontChange_1801_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeEdit_Adaptor *)cls)->cbs_fontChange_1801_0 (arg1); } @@ -1935,7 +1935,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTimeEdit_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -1958,7 +1958,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeEdit_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -2001,7 +2001,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeEdit_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2025,7 +2025,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QTimeEdit_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2048,7 +2048,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeEdit_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2072,7 +2072,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeEdit_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2116,7 +2116,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeEdit_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2154,7 +2154,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QTimeEdit_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2196,7 +2196,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeEdit_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2220,7 +2220,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeEdit_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2244,7 +2244,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeEdit_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2268,7 +2268,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeEdit_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2292,7 +2292,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeEdit_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2335,7 +2335,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeEdit_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2359,7 +2359,7 @@ static void _call_cbs_paletteChange_2113_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPalette &arg1 = args.read (heap); + const QPalette &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeEdit_Adaptor *)cls)->cbs_paletteChange_2113_0 (arg1); } @@ -2416,7 +2416,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeEdit_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2473,7 +2473,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeEdit_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2497,7 +2497,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeEdit_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2540,7 +2540,7 @@ static void _call_cbs_stepBy_767_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeEdit_Adaptor *)cls)->cbs_stepBy_767_0 (arg1); } @@ -2583,7 +2583,7 @@ static void _call_cbs_styleChange_1228_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyle &arg1 = args.read (heap); + QStyle &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeEdit_Adaptor *)cls)->cbs_styleChange_1228_0 (arg1); } @@ -2607,7 +2607,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeEdit_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2631,7 +2631,7 @@ static void _call_cbs_textFromDateTime_c2175_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDateTime &arg1 = args.read (heap); + const QDateTime &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QTimeEdit_Adaptor *)cls)->cbs_textFromDateTime_c2175_0 (arg1)); } @@ -2672,7 +2672,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeEdit_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2713,8 +2713,8 @@ static void _call_cbs_validate_c2171_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QString &arg1 = args.read (heap); - int &arg2 = args.read (heap); + QString &arg1 = gsi::arg_reader() (args, heap); + int &arg2 = gsi::arg_reader() (args, heap); ret.write::target_type > ((qt_gsi::Converter::target_type)((QTimeEdit_Adaptor *)cls)->cbs_validate_c2171_0 (arg1, arg2)); } @@ -2737,7 +2737,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeEdit_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } @@ -2761,7 +2761,7 @@ static void _call_cbs_windowActivationChange_864_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeEdit_Adaptor *)cls)->cbs_windowActivationChange_864_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQToolBar.cc b/src/gsiqt/qt4/QtGui/gsiDeclQToolBar.cc index 5945ee875..08baeebf8 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQToolBar.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQToolBar.cc @@ -1717,7 +1717,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBar_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1777,7 +1777,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBar_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1801,7 +1801,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBar_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1825,7 +1825,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBar_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1849,7 +1849,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBar_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1916,7 +1916,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBar_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1980,7 +1980,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBar_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -2004,7 +2004,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBar_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -2028,7 +2028,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBar_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -2052,7 +2052,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBar_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -2076,7 +2076,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBar_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -2100,7 +2100,7 @@ static void _call_cbs_enabledChange_864_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBar_Adaptor *)cls)->cbs_enabledChange_864_0 (arg1); } @@ -2124,7 +2124,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBar_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -2148,7 +2148,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QToolBar_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -2173,8 +2173,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QToolBar_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -2197,7 +2197,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBar_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -2235,7 +2235,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QToolBar_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -2258,7 +2258,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBar_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -2296,7 +2296,7 @@ static void _call_cbs_fontChange_1801_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBar_Adaptor *)cls)->cbs_fontChange_1801_0 (arg1); } @@ -2320,7 +2320,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QToolBar_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -2343,7 +2343,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBar_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -2404,7 +2404,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBar_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2428,7 +2428,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QToolBar_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2451,7 +2451,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBar_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2475,7 +2475,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBar_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2519,7 +2519,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBar_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2543,7 +2543,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QToolBar_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2585,7 +2585,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBar_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2609,7 +2609,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBar_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2633,7 +2633,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBar_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2657,7 +2657,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBar_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2699,7 +2699,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBar_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2760,7 +2760,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBar_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2784,7 +2784,7 @@ static void _call_cbs_paletteChange_2113_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPalette &arg1 = args.read (heap); + const QPalette &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBar_Adaptor *)cls)->cbs_paletteChange_2113_0 (arg1); } @@ -2841,7 +2841,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBar_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2879,7 +2879,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBar_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2903,7 +2903,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBar_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2946,7 +2946,7 @@ static void _call_cbs_styleChange_1228_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyle &arg1 = args.read (heap); + QStyle &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBar_Adaptor *)cls)->cbs_styleChange_1228_0 (arg1); } @@ -2970,7 +2970,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBar_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2994,7 +2994,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBar_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -3069,7 +3069,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBar_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } @@ -3093,7 +3093,7 @@ static void _call_cbs_windowActivationChange_864_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBar_Adaptor *)cls)->cbs_windowActivationChange_864_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQToolBox.cc b/src/gsiqt/qt4/QtGui/gsiDeclQToolBox.cc index f42ef8943..53c70d153 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQToolBox.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQToolBox.cc @@ -1541,7 +1541,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBox_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1565,7 +1565,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBox_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1589,7 +1589,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBox_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1613,7 +1613,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBox_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1637,7 +1637,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBox_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1722,7 +1722,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBox_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1786,7 +1786,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBox_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -1810,7 +1810,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBox_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1834,7 +1834,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBox_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1858,7 +1858,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBox_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1901,7 +1901,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBox_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1925,7 +1925,7 @@ static void _call_cbs_enabledChange_864_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBox_Adaptor *)cls)->cbs_enabledChange_864_0 (arg1); } @@ -1949,7 +1949,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBox_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -1973,7 +1973,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QToolBox_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1998,8 +1998,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QToolBox_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -2022,7 +2022,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBox_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -2060,7 +2060,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QToolBox_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -2083,7 +2083,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBox_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -2121,7 +2121,7 @@ static void _call_cbs_fontChange_1801_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBox_Adaptor *)cls)->cbs_fontChange_1801_0 (arg1); } @@ -2145,7 +2145,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QToolBox_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -2168,7 +2168,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBox_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -2192,7 +2192,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBox_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2216,7 +2216,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QToolBox_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2239,7 +2239,7 @@ static void _call_cbs_itemInserted_767_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBox_Adaptor *)cls)->cbs_itemInserted_767_0 (arg1); } @@ -2263,7 +2263,7 @@ static void _call_cbs_itemRemoved_767_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBox_Adaptor *)cls)->cbs_itemRemoved_767_0 (arg1); } @@ -2287,7 +2287,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBox_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2311,7 +2311,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBox_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2355,7 +2355,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBox_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2379,7 +2379,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QToolBox_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2421,7 +2421,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBox_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2445,7 +2445,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBox_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2469,7 +2469,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBox_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2493,7 +2493,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBox_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2517,7 +2517,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBox_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2560,7 +2560,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBox_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2584,7 +2584,7 @@ static void _call_cbs_paletteChange_2113_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPalette &arg1 = args.read (heap); + const QPalette &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBox_Adaptor *)cls)->cbs_paletteChange_2113_0 (arg1); } @@ -2641,7 +2641,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBox_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2679,7 +2679,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBox_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2703,7 +2703,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBox_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2746,7 +2746,7 @@ static void _call_cbs_styleChange_1228_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyle &arg1 = args.read (heap); + QStyle &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBox_Adaptor *)cls)->cbs_styleChange_1228_0 (arg1); } @@ -2770,7 +2770,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBox_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2794,7 +2794,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBox_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2833,7 +2833,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBox_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } @@ -2857,7 +2857,7 @@ static void _call_cbs_windowActivationChange_864_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBox_Adaptor *)cls)->cbs_windowActivationChange_864_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQToolButton.cc b/src/gsiqt/qt4/QtGui/gsiDeclQToolButton.cc index b8aab6190..323de83d4 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQToolButton.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQToolButton.cc @@ -1419,7 +1419,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolButton_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1443,7 +1443,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolButton_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1487,7 +1487,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolButton_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1529,7 +1529,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolButton_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1553,7 +1553,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolButton_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1620,7 +1620,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolButton_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1684,7 +1684,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolButton_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -1708,7 +1708,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolButton_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1732,7 +1732,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolButton_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1756,7 +1756,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolButton_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1780,7 +1780,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolButton_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1804,7 +1804,7 @@ static void _call_cbs_enabledChange_864_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolButton_Adaptor *)cls)->cbs_enabledChange_864_0 (arg1); } @@ -1828,7 +1828,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolButton_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -1852,7 +1852,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QToolButton_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1877,8 +1877,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QToolButton_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1901,7 +1901,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolButton_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1939,7 +1939,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QToolButton_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -1962,7 +1962,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolButton_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -2000,7 +2000,7 @@ static void _call_cbs_fontChange_1801_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolButton_Adaptor *)cls)->cbs_fontChange_1801_0 (arg1); } @@ -2024,7 +2024,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QToolButton_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -2047,7 +2047,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolButton_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -2071,7 +2071,7 @@ static void _call_cbs_hitButton_c1916_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QToolButton_Adaptor *)cls)->cbs_hitButton_c1916_0 (arg1)); } @@ -2113,7 +2113,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolButton_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2137,7 +2137,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QToolButton_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2160,7 +2160,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolButton_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2184,7 +2184,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolButton_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2228,7 +2228,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolButton_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2252,7 +2252,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QToolButton_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2294,7 +2294,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolButton_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2318,7 +2318,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolButton_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2342,7 +2342,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolButton_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2366,7 +2366,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolButton_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2390,7 +2390,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolButton_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2453,7 +2453,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolButton_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2477,7 +2477,7 @@ static void _call_cbs_paletteChange_2113_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPalette &arg1 = args.read (heap); + const QPalette &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolButton_Adaptor *)cls)->cbs_paletteChange_2113_0 (arg1); } @@ -2562,7 +2562,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolButton_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2600,7 +2600,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolButton_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2624,7 +2624,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolButton_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2667,7 +2667,7 @@ static void _call_cbs_styleChange_1228_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyle &arg1 = args.read (heap); + QStyle &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolButton_Adaptor *)cls)->cbs_styleChange_1228_0 (arg1); } @@ -2691,7 +2691,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolButton_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2715,7 +2715,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolButton_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2790,7 +2790,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolButton_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } @@ -2814,7 +2814,7 @@ static void _call_cbs_windowActivationChange_864_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolButton_Adaptor *)cls)->cbs_windowActivationChange_864_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQTreeView.cc b/src/gsiqt/qt4/QtGui/gsiDeclQTreeView.cc index fb362d99d..03adc4fc6 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQTreeView.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQTreeView.cc @@ -3112,7 +3112,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -3154,7 +3154,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -3178,7 +3178,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -3222,8 +3222,8 @@ static void _call_cbs_closeEditor_4926_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_closeEditor_4926_0 (arg1, arg2); } @@ -3247,7 +3247,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -3351,7 +3351,7 @@ static void _call_cbs_commitData_1315_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_commitData_1315_0 (arg1); } @@ -3375,7 +3375,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -3426,8 +3426,8 @@ static void _call_cbs_currentChanged_4682_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_currentChanged_4682_0 (arg1, arg2); } @@ -3469,7 +3469,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -3495,8 +3495,8 @@ static void _call_cbs_dataChanged_4682_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_dataChanged_4682_0 (arg1, arg2); } @@ -3574,7 +3574,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -3651,7 +3651,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -3675,7 +3675,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -3699,7 +3699,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -3727,9 +3727,9 @@ static void _call_cbs_drawBranches_c5397_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QRect &arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QRect &arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_drawBranches_c5397_0 (arg1, arg2, arg3); } @@ -3776,9 +3776,9 @@ static void _call_cbs_drawRow_c6971_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QStyleOptionViewItem &arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionViewItem &arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_drawRow_c6971_0 (arg1, arg2, arg3); } @@ -3824,7 +3824,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -3866,9 +3866,9 @@ static void _call_cbs_edit_6773_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - QEvent *arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + QEvent *arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTreeView_Adaptor *)cls)->cbs_edit_6773_0 (arg1, arg2, arg3)); } @@ -3891,7 +3891,7 @@ static void _call_cbs_editorDestroyed_1302_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_editorDestroyed_1302_0 (arg1); } @@ -3915,7 +3915,7 @@ static void _call_cbs_enabledChange_864_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_enabledChange_864_0 (arg1); } @@ -3939,7 +3939,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -3981,7 +3981,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTreeView_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -4006,8 +4006,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTreeView_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -4063,7 +4063,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -4101,7 +4101,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTreeView_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -4124,7 +4124,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -4162,7 +4162,7 @@ static void _call_cbs_fontChange_1801_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_fontChange_1801_0 (arg1); } @@ -4186,7 +4186,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTreeView_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -4209,7 +4209,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -4252,7 +4252,7 @@ static void _call_cbs_horizontalScrollbarAction_767_0 (const qt_gsi::GenericMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_horizontalScrollbarAction_767_0 (arg1); } @@ -4276,7 +4276,7 @@ static void _call_cbs_horizontalScrollbarValueChanged_767_0 (const qt_gsi::Gener { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_horizontalScrollbarValueChanged_767_0 (arg1); } @@ -4314,7 +4314,7 @@ static void _call_cbs_indexAt_c1916_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QTreeView_Adaptor *)cls)->cbs_indexAt_c1916_0 (arg1)); } @@ -4355,7 +4355,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -4379,7 +4379,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QTreeView_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -4402,7 +4402,7 @@ static void _call_cbs_isIndexHidden_c2395_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTreeView_Adaptor *)cls)->cbs_isIndexHidden_c2395_0 (arg1)); } @@ -4425,7 +4425,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -4449,7 +4449,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -4473,7 +4473,7 @@ static void _call_cbs_keyboardSearch_2025_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_keyboardSearch_2025_0 (arg1); } @@ -4517,7 +4517,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -4541,7 +4541,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QTreeView_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -4583,7 +4583,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -4607,7 +4607,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -4631,7 +4631,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -4655,7 +4655,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -4681,8 +4681,8 @@ static void _call_cbs_moveCursor_6476_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); - QFlags arg2 = args.read > (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); ret.write ((QModelIndex)((QTreeView_Adaptor *)cls)->cbs_moveCursor_6476_0 (arg1, arg2)); } @@ -4705,7 +4705,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -4748,7 +4748,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -4772,7 +4772,7 @@ static void _call_cbs_paletteChange_2113_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPalette &arg1 = args.read (heap); + const QPalette &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_paletteChange_2113_0 (arg1); } @@ -4882,7 +4882,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -4928,9 +4928,9 @@ static void _call_cbs_rowsAboutToBeRemoved_3713_0 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_rowsAboutToBeRemoved_3713_0 (arg1, arg2, arg3); } @@ -4958,9 +4958,9 @@ static void _call_cbs_rowsInserted_3713_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_rowsInserted_3713_0 (arg1, arg2, arg3); } @@ -5026,8 +5026,8 @@ static void _call_cbs_scrollContentsBy_1426_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_scrollContentsBy_1426_0 (arg1, arg2); } @@ -5075,8 +5075,8 @@ static void _call_cbs_scrollTo_5576_1 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QAbstractItemView::EnsureVisible), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_scrollTo_5576_1 (arg1, arg2); } @@ -5141,8 +5141,8 @@ static void _call_cbs_selectionChanged_5346_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QItemSelection &arg1 = args.read (heap); - const QItemSelection &arg2 = args.read (heap); + const QItemSelection &arg1 = gsi::arg_reader() (args, heap); + const QItemSelection &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_selectionChanged_5346_0 (arg1, arg2); } @@ -5168,8 +5168,8 @@ static void _call_cbs_selectionCommand_c4199_1 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QEvent *arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QEvent *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write > ((QFlags)((QTreeView_Adaptor *)cls)->cbs_selectionCommand_c4199_1 (arg1, arg2)); } @@ -5244,7 +5244,7 @@ static void _call_cbs_setModel_2419_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractItemModel *arg1 = args.read (heap); + QAbstractItemModel *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_setModel_2419_0 (arg1); } @@ -5268,7 +5268,7 @@ static void _call_cbs_setRootIndex_2395_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_setRootIndex_2395_0 (arg1); } @@ -5294,8 +5294,8 @@ static void _call_cbs_setSelection_6155_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); - QFlags arg2 = args.read > (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_setSelection_6155_0 (arg1, arg2); } @@ -5319,7 +5319,7 @@ static void _call_cbs_setSelectionModel_2533_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QItemSelectionModel *arg1 = args.read (heap); + QItemSelectionModel *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_setSelectionModel_2533_0 (arg1); } @@ -5428,7 +5428,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -5471,7 +5471,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -5514,7 +5514,7 @@ static void _call_cbs_sizeHintForColumn_c767_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTreeView_Adaptor *)cls)->cbs_sizeHintForColumn_c767_0 (arg1)); } @@ -5537,7 +5537,7 @@ static void _call_cbs_sizeHintForRow_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTreeView_Adaptor *)cls)->cbs_sizeHintForRow_c767_0 (arg1)); } @@ -5575,7 +5575,7 @@ static void _call_cbs_startDrag_2456_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_startDrag_2456_0 (arg1); } @@ -5628,7 +5628,7 @@ static void _call_cbs_styleChange_1228_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyle &arg1 = args.read (heap); + QStyle &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_styleChange_1228_0 (arg1); } @@ -5652,7 +5652,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -5676,7 +5676,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -5794,7 +5794,7 @@ static void _call_cbs_verticalScrollbarAction_767_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_verticalScrollbarAction_767_0 (arg1); } @@ -5818,7 +5818,7 @@ static void _call_cbs_verticalScrollbarValueChanged_767_0 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_verticalScrollbarValueChanged_767_0 (arg1); } @@ -5889,7 +5889,7 @@ static void _call_cbs_viewportEvent_1217_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTreeView_Adaptor *)cls)->cbs_viewportEvent_1217_0 (arg1)); } @@ -5912,7 +5912,7 @@ static void _call_cbs_visualRect_c2395_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QTreeView_Adaptor *)cls)->cbs_visualRect_c2395_0 (arg1)); } @@ -5935,7 +5935,7 @@ static void _call_cbs_visualRegionForSelection_c2727_0 (const qt_gsi::GenericMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QItemSelection &arg1 = args.read (heap); + const QItemSelection &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRegion)((QTreeView_Adaptor *)cls)->cbs_visualRegionForSelection_c2727_0 (arg1)); } @@ -5958,7 +5958,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } @@ -5982,7 +5982,7 @@ static void _call_cbs_windowActivationChange_864_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_windowActivationChange_864_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQTreeWidget.cc b/src/gsiqt/qt4/QtGui/gsiDeclQTreeWidget.cc index 355147298..0798f777c 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQTreeWidget.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQTreeWidget.cc @@ -3137,7 +3137,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -3179,7 +3179,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -3203,7 +3203,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -3247,8 +3247,8 @@ static void _call_cbs_closeEditor_4926_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_closeEditor_4926_0 (arg1, arg2); } @@ -3272,7 +3272,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -3376,7 +3376,7 @@ static void _call_cbs_commitData_1315_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_commitData_1315_0 (arg1); } @@ -3400,7 +3400,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -3451,8 +3451,8 @@ static void _call_cbs_currentChanged_4682_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_currentChanged_4682_0 (arg1, arg2); } @@ -3515,7 +3515,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -3541,8 +3541,8 @@ static void _call_cbs_dataChanged_4682_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_dataChanged_4682_0 (arg1, arg2); } @@ -3620,7 +3620,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -3697,7 +3697,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -3721,7 +3721,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -3745,7 +3745,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -3773,9 +3773,9 @@ static void _call_cbs_drawBranches_c5397_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QRect &arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QRect &arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_drawBranches_c5397_0 (arg1, arg2, arg3); } @@ -3822,9 +3822,9 @@ static void _call_cbs_drawRow_c6971_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QStyleOptionViewItem &arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionViewItem &arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_drawRow_c6971_0 (arg1, arg2, arg3); } @@ -3870,7 +3870,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -3914,10 +3914,10 @@ static void _call_cbs_dropMimeData_6485_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTreeWidgetItem *arg1 = args.read (heap); - int arg2 = args.read (heap); - const QMimeData *arg3 = args.read (heap); - const qt_gsi::Converter::target_type & arg4 = args.read::target_type & > (heap); + QTreeWidgetItem *arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QMimeData *arg3 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg4 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((bool)((QTreeWidget_Adaptor *)cls)->cbs_dropMimeData_6485_0 (arg1, arg2, arg3, arg4)); } @@ -3944,9 +3944,9 @@ static void _call_cbs_edit_6773_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - QEvent *arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + QEvent *arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTreeWidget_Adaptor *)cls)->cbs_edit_6773_0 (arg1, arg2, arg3)); } @@ -3969,7 +3969,7 @@ static void _call_cbs_editorDestroyed_1302_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_editorDestroyed_1302_0 (arg1); } @@ -3993,7 +3993,7 @@ static void _call_cbs_enabledChange_864_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_enabledChange_864_0 (arg1); } @@ -4017,7 +4017,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -4059,7 +4059,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTreeWidget_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -4084,8 +4084,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTreeWidget_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -4141,7 +4141,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -4179,7 +4179,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTreeWidget_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -4202,7 +4202,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -4240,7 +4240,7 @@ static void _call_cbs_fontChange_1801_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_fontChange_1801_0 (arg1); } @@ -4264,7 +4264,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTreeWidget_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -4287,7 +4287,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -4330,7 +4330,7 @@ static void _call_cbs_horizontalScrollbarAction_767_0 (const qt_gsi::GenericMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_horizontalScrollbarAction_767_0 (arg1); } @@ -4354,7 +4354,7 @@ static void _call_cbs_horizontalScrollbarValueChanged_767_0 (const qt_gsi::Gener { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_horizontalScrollbarValueChanged_767_0 (arg1); } @@ -4392,7 +4392,7 @@ static void _call_cbs_indexAt_c1916_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QTreeWidget_Adaptor *)cls)->cbs_indexAt_c1916_0 (arg1)); } @@ -4454,7 +4454,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -4478,7 +4478,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QTreeWidget_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -4501,7 +4501,7 @@ static void _call_cbs_isIndexHidden_c2395_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTreeWidget_Adaptor *)cls)->cbs_isIndexHidden_c2395_0 (arg1)); } @@ -4736,7 +4736,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -4760,7 +4760,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -4784,7 +4784,7 @@ static void _call_cbs_keyboardSearch_2025_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_keyboardSearch_2025_0 (arg1); } @@ -4828,7 +4828,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -4852,7 +4852,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QTreeWidget_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -4875,7 +4875,7 @@ static void _call_cbs_mimeData_c3280_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList arg1 = args.read > (heap); + const QList arg1 = gsi::arg_reader >() (args, heap); ret.write ((QMimeData *)((QTreeWidget_Adaptor *)cls)->cbs_mimeData_c3280_0 (arg1)); } @@ -4936,7 +4936,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -4960,7 +4960,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -4984,7 +4984,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -5008,7 +5008,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -5034,8 +5034,8 @@ static void _call_cbs_moveCursor_6476_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); - QFlags arg2 = args.read > (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); ret.write ((QModelIndex)((QTreeWidget_Adaptor *)cls)->cbs_moveCursor_6476_0 (arg1, arg2)); } @@ -5058,7 +5058,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -5101,7 +5101,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -5125,7 +5125,7 @@ static void _call_cbs_paletteChange_2113_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPalette &arg1 = args.read (heap); + const QPalette &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_paletteChange_2113_0 (arg1); } @@ -5235,7 +5235,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -5281,9 +5281,9 @@ static void _call_cbs_rowsAboutToBeRemoved_3713_0 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_rowsAboutToBeRemoved_3713_0 (arg1, arg2, arg3); } @@ -5311,9 +5311,9 @@ static void _call_cbs_rowsInserted_3713_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_rowsInserted_3713_0 (arg1, arg2, arg3); } @@ -5379,8 +5379,8 @@ static void _call_cbs_scrollContentsBy_1426_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_scrollContentsBy_1426_0 (arg1, arg2); } @@ -5428,8 +5428,8 @@ static void _call_cbs_scrollTo_5576_1 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QAbstractItemView::EnsureVisible), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_scrollTo_5576_1 (arg1, arg2); } @@ -5494,8 +5494,8 @@ static void _call_cbs_selectionChanged_5346_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QItemSelection &arg1 = args.read (heap); - const QItemSelection &arg2 = args.read (heap); + const QItemSelection &arg1 = gsi::arg_reader() (args, heap); + const QItemSelection &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_selectionChanged_5346_0 (arg1, arg2); } @@ -5521,8 +5521,8 @@ static void _call_cbs_selectionCommand_c4199_1 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QEvent *arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QEvent *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write > ((QFlags)((QTreeWidget_Adaptor *)cls)->cbs_selectionCommand_c4199_1 (arg1, arg2)); } @@ -5597,7 +5597,7 @@ static void _call_cbs_setRootIndex_2395_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_setRootIndex_2395_0 (arg1); } @@ -5623,8 +5623,8 @@ static void _call_cbs_setSelection_6155_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); - QFlags arg2 = args.read > (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_setSelection_6155_0 (arg1, arg2); } @@ -5648,7 +5648,7 @@ static void _call_cbs_setSelectionModel_2533_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QItemSelectionModel *arg1 = args.read (heap); + QItemSelectionModel *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_setSelectionModel_2533_0 (arg1); } @@ -5757,7 +5757,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -5800,7 +5800,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -5843,7 +5843,7 @@ static void _call_cbs_sizeHintForColumn_c767_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTreeWidget_Adaptor *)cls)->cbs_sizeHintForColumn_c767_0 (arg1)); } @@ -5866,7 +5866,7 @@ static void _call_cbs_sizeHintForRow_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTreeWidget_Adaptor *)cls)->cbs_sizeHintForRow_c767_0 (arg1)); } @@ -5904,7 +5904,7 @@ static void _call_cbs_startDrag_2456_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_startDrag_2456_0 (arg1); } @@ -5957,7 +5957,7 @@ static void _call_cbs_styleChange_1228_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyle &arg1 = args.read (heap); + QStyle &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_styleChange_1228_0 (arg1); } @@ -6000,7 +6000,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -6024,7 +6024,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -6142,7 +6142,7 @@ static void _call_cbs_verticalScrollbarAction_767_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_verticalScrollbarAction_767_0 (arg1); } @@ -6166,7 +6166,7 @@ static void _call_cbs_verticalScrollbarValueChanged_767_0 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_verticalScrollbarValueChanged_767_0 (arg1); } @@ -6237,7 +6237,7 @@ static void _call_cbs_viewportEvent_1217_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTreeWidget_Adaptor *)cls)->cbs_viewportEvent_1217_0 (arg1)); } @@ -6260,7 +6260,7 @@ static void _call_cbs_visualRect_c2395_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QTreeWidget_Adaptor *)cls)->cbs_visualRect_c2395_0 (arg1)); } @@ -6283,7 +6283,7 @@ static void _call_cbs_visualRegionForSelection_c2727_0 (const qt_gsi::GenericMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QItemSelection &arg1 = args.read (heap); + const QItemSelection &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRegion)((QTreeWidget_Adaptor *)cls)->cbs_visualRegionForSelection_c2727_0 (arg1)); } @@ -6306,7 +6306,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } @@ -6330,7 +6330,7 @@ static void _call_cbs_windowActivationChange_864_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_windowActivationChange_864_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQTreeWidgetItem.cc b/src/gsiqt/qt4/QtGui/gsiDeclQTreeWidgetItem.cc index 70535c6b6..bb18cffa7 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQTreeWidgetItem.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQTreeWidgetItem.cc @@ -1787,8 +1787,8 @@ static void _call_cbs_data_c1426_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QTreeWidgetItem_Adaptor *)cls)->cbs_data_c1426_0 (arg1, arg2)); } @@ -1826,7 +1826,7 @@ static void _call_cbs_operator_lt__c2805_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTreeWidgetItem &arg1 = args.read (heap); + const QTreeWidgetItem &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTreeWidgetItem_Adaptor *)cls)->cbs_operator_lt__c2805_0 (arg1)); } @@ -1849,7 +1849,7 @@ static void _call_cbs_read_1697_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDataStream &arg1 = args.read (heap); + QDataStream &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidgetItem_Adaptor *)cls)->cbs_read_1697_0 (arg1); } @@ -1877,9 +1877,9 @@ static void _call_cbs_setData_3437_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QVariant &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QVariant &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidgetItem_Adaptor *)cls)->cbs_setData_3437_0 (arg1, arg2, arg3); } @@ -1903,7 +1903,7 @@ static void _call_cbs_write_c1697_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDataStream &arg1 = args.read (heap); + QDataStream &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidgetItem_Adaptor *)cls)->cbs_write_c1697_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQUndoCommand.cc b/src/gsiqt/qt4/QtGui/gsiDeclQUndoCommand.cc index 9e7deea2d..5876aa254 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQUndoCommand.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQUndoCommand.cc @@ -364,7 +364,7 @@ static void _call_cbs_mergeWith_2507_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QUndoCommand *arg1 = args.read (heap); + const QUndoCommand *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QUndoCommand_Adaptor *)cls)->cbs_mergeWith_2507_0 (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQUndoGroup.cc b/src/gsiqt/qt4/QtGui/gsiDeclQUndoGroup.cc index b375918e8..927078dd3 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQUndoGroup.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQUndoGroup.cc @@ -697,7 +697,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoGroup_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -739,7 +739,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoGroup_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -781,7 +781,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoGroup_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -805,7 +805,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QUndoGroup_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -830,8 +830,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QUndoGroup_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -922,7 +922,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoGroup_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQUndoStack.cc b/src/gsiqt/qt4/QtGui/gsiDeclQUndoStack.cc index 9a5de573b..755f465a5 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQUndoStack.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQUndoStack.cc @@ -853,7 +853,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoStack_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -895,7 +895,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoStack_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -937,7 +937,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoStack_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -961,7 +961,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QUndoStack_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -986,8 +986,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QUndoStack_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1078,7 +1078,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoStack_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQUndoView.cc b/src/gsiqt/qt4/QtGui/gsiDeclQUndoView.cc index 33cadb924..781a2c610 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQUndoView.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQUndoView.cc @@ -2094,7 +2094,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -2136,7 +2136,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -2160,7 +2160,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -2204,8 +2204,8 @@ static void _call_cbs_closeEditor_4926_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_closeEditor_4926_0 (arg1, arg2); } @@ -2229,7 +2229,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -2253,7 +2253,7 @@ static void _call_cbs_commitData_1315_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_commitData_1315_0 (arg1); } @@ -2291,7 +2291,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -2342,8 +2342,8 @@ static void _call_cbs_currentChanged_4682_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_currentChanged_4682_0 (arg1, arg2); } @@ -2385,7 +2385,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -2411,8 +2411,8 @@ static void _call_cbs_dataChanged_4682_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_dataChanged_4682_0 (arg1, arg2); } @@ -2490,7 +2490,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -2567,7 +2567,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -2591,7 +2591,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -2615,7 +2615,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -2658,7 +2658,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -2700,9 +2700,9 @@ static void _call_cbs_edit_6773_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - QEvent *arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + QEvent *arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QUndoView_Adaptor *)cls)->cbs_edit_6773_0 (arg1, arg2, arg3)); } @@ -2725,7 +2725,7 @@ static void _call_cbs_editorDestroyed_1302_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_editorDestroyed_1302_0 (arg1); } @@ -2749,7 +2749,7 @@ static void _call_cbs_enabledChange_864_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_enabledChange_864_0 (arg1); } @@ -2773,7 +2773,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -2815,7 +2815,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QUndoView_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -2840,8 +2840,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QUndoView_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -2879,7 +2879,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -2917,7 +2917,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QUndoView_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -2940,7 +2940,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -2978,7 +2978,7 @@ static void _call_cbs_fontChange_1801_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_fontChange_1801_0 (arg1); } @@ -3002,7 +3002,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QUndoView_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -3025,7 +3025,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -3068,7 +3068,7 @@ static void _call_cbs_horizontalScrollbarAction_767_0 (const qt_gsi::GenericMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_horizontalScrollbarAction_767_0 (arg1); } @@ -3092,7 +3092,7 @@ static void _call_cbs_horizontalScrollbarValueChanged_767_0 (const qt_gsi::Gener { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_horizontalScrollbarValueChanged_767_0 (arg1); } @@ -3130,7 +3130,7 @@ static void _call_cbs_indexAt_c1916_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QUndoView_Adaptor *)cls)->cbs_indexAt_c1916_0 (arg1)); } @@ -3171,7 +3171,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -3195,7 +3195,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QUndoView_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -3256,7 +3256,7 @@ static void _call_cbs_isIndexHidden_c2395_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QUndoView_Adaptor *)cls)->cbs_isIndexHidden_c2395_0 (arg1)); } @@ -3279,7 +3279,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -3303,7 +3303,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -3327,7 +3327,7 @@ static void _call_cbs_keyboardSearch_2025_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_keyboardSearch_2025_0 (arg1); } @@ -3371,7 +3371,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -3395,7 +3395,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QUndoView_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -3437,7 +3437,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -3461,7 +3461,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -3485,7 +3485,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -3509,7 +3509,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -3535,8 +3535,8 @@ static void _call_cbs_moveCursor_6476_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); - QFlags arg2 = args.read > (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); ret.write ((QModelIndex)((QUndoView_Adaptor *)cls)->cbs_moveCursor_6476_0 (arg1, arg2)); } @@ -3559,7 +3559,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -3602,7 +3602,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -3626,7 +3626,7 @@ static void _call_cbs_paletteChange_2113_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPalette &arg1 = args.read (heap); + const QPalette &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_paletteChange_2113_0 (arg1); } @@ -3761,7 +3761,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -3789,9 +3789,9 @@ static void _call_cbs_rowsAboutToBeRemoved_3713_0 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_rowsAboutToBeRemoved_3713_0 (arg1, arg2, arg3); } @@ -3819,9 +3819,9 @@ static void _call_cbs_rowsInserted_3713_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_rowsInserted_3713_0 (arg1, arg2, arg3); } @@ -3862,8 +3862,8 @@ static void _call_cbs_scrollContentsBy_1426_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_scrollContentsBy_1426_0 (arg1, arg2); } @@ -3911,8 +3911,8 @@ static void _call_cbs_scrollTo_5576_1 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QAbstractItemView::EnsureVisible), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_scrollTo_5576_1 (arg1, arg2); } @@ -3977,8 +3977,8 @@ static void _call_cbs_selectionChanged_5346_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QItemSelection &arg1 = args.read (heap); - const QItemSelection &arg2 = args.read (heap); + const QItemSelection &arg1 = gsi::arg_reader() (args, heap); + const QItemSelection &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_selectionChanged_5346_0 (arg1, arg2); } @@ -4004,8 +4004,8 @@ static void _call_cbs_selectionCommand_c4199_1 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QEvent *arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QEvent *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write > ((QFlags)((QUndoView_Adaptor *)cls)->cbs_selectionCommand_c4199_1 (arg1, arg2)); } @@ -4080,7 +4080,7 @@ static void _call_cbs_setModel_2419_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractItemModel *arg1 = args.read (heap); + QAbstractItemModel *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_setModel_2419_0 (arg1); } @@ -4126,7 +4126,7 @@ static void _call_cbs_setRootIndex_2395_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_setRootIndex_2395_0 (arg1); } @@ -4152,8 +4152,8 @@ static void _call_cbs_setSelection_6155_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); - QFlags arg2 = args.read > (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_setSelection_6155_0 (arg1, arg2); } @@ -4177,7 +4177,7 @@ static void _call_cbs_setSelectionModel_2533_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QItemSelectionModel *arg1 = args.read (heap); + QItemSelectionModel *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_setSelectionModel_2533_0 (arg1); } @@ -4286,7 +4286,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -4329,7 +4329,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -4372,7 +4372,7 @@ static void _call_cbs_sizeHintForColumn_c767_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QUndoView_Adaptor *)cls)->cbs_sizeHintForColumn_c767_0 (arg1)); } @@ -4395,7 +4395,7 @@ static void _call_cbs_sizeHintForRow_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QUndoView_Adaptor *)cls)->cbs_sizeHintForRow_c767_0 (arg1)); } @@ -4433,7 +4433,7 @@ static void _call_cbs_startDrag_2456_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_startDrag_2456_0 (arg1); } @@ -4486,7 +4486,7 @@ static void _call_cbs_styleChange_1228_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyle &arg1 = args.read (heap); + QStyle &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_styleChange_1228_0 (arg1); } @@ -4510,7 +4510,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -4534,7 +4534,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -4652,7 +4652,7 @@ static void _call_cbs_verticalScrollbarAction_767_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_verticalScrollbarAction_767_0 (arg1); } @@ -4676,7 +4676,7 @@ static void _call_cbs_verticalScrollbarValueChanged_767_0 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_verticalScrollbarValueChanged_767_0 (arg1); } @@ -4747,7 +4747,7 @@ static void _call_cbs_viewportEvent_1217_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QUndoView_Adaptor *)cls)->cbs_viewportEvent_1217_0 (arg1)); } @@ -4770,7 +4770,7 @@ static void _call_cbs_visualRect_c2395_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QUndoView_Adaptor *)cls)->cbs_visualRect_c2395_0 (arg1)); } @@ -4793,7 +4793,7 @@ static void _call_cbs_visualRegionForSelection_c2727_0 (const qt_gsi::GenericMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QItemSelection &arg1 = args.read (heap); + const QItemSelection &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRegion)((QUndoView_Adaptor *)cls)->cbs_visualRegionForSelection_c2727_0 (arg1)); } @@ -4816,7 +4816,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } @@ -4840,7 +4840,7 @@ static void _call_cbs_windowActivationChange_864_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_windowActivationChange_864_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQUnixPrintWidget.cc b/src/gsiqt/qt4/QtGui/gsiDeclQUnixPrintWidget.cc index 2691dc0d1..9f36c2c62 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQUnixPrintWidget.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQUnixPrintWidget.cc @@ -1074,7 +1074,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUnixPrintWidget_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1098,7 +1098,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUnixPrintWidget_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1122,7 +1122,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUnixPrintWidget_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1146,7 +1146,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUnixPrintWidget_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1170,7 +1170,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUnixPrintWidget_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1238,7 +1238,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUnixPrintWidget_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1303,7 +1303,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUnixPrintWidget_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -1327,7 +1327,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUnixPrintWidget_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1351,7 +1351,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUnixPrintWidget_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1375,7 +1375,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUnixPrintWidget_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1399,7 +1399,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUnixPrintWidget_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1423,7 +1423,7 @@ static void _call_cbs_enabledChange_864_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUnixPrintWidget_Adaptor *)cls)->cbs_enabledChange_864_0 (arg1); } @@ -1447,7 +1447,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUnixPrintWidget_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -1471,7 +1471,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QUnixPrintWidget_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1496,8 +1496,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QUnixPrintWidget_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1520,7 +1520,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUnixPrintWidget_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1558,7 +1558,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QUnixPrintWidget_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -1581,7 +1581,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUnixPrintWidget_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -1619,7 +1619,7 @@ static void _call_cbs_fontChange_1801_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUnixPrintWidget_Adaptor *)cls)->cbs_fontChange_1801_0 (arg1); } @@ -1643,7 +1643,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QUnixPrintWidget_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -1666,7 +1666,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUnixPrintWidget_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -1690,7 +1690,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUnixPrintWidget_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -1714,7 +1714,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QUnixPrintWidget_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -1737,7 +1737,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUnixPrintWidget_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -1761,7 +1761,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUnixPrintWidget_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -1805,7 +1805,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUnixPrintWidget_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -1829,7 +1829,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QUnixPrintWidget_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -1871,7 +1871,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUnixPrintWidget_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -1895,7 +1895,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUnixPrintWidget_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -1919,7 +1919,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUnixPrintWidget_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -1943,7 +1943,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUnixPrintWidget_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -1967,7 +1967,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUnixPrintWidget_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2010,7 +2010,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUnixPrintWidget_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2034,7 +2034,7 @@ static void _call_cbs_paletteChange_2113_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPalette &arg1 = args.read (heap); + const QPalette &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUnixPrintWidget_Adaptor *)cls)->cbs_paletteChange_2113_0 (arg1); } @@ -2091,7 +2091,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUnixPrintWidget_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2129,7 +2129,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUnixPrintWidget_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2153,7 +2153,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUnixPrintWidget_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2196,7 +2196,7 @@ static void _call_cbs_styleChange_1228_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyle &arg1 = args.read (heap); + QStyle &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUnixPrintWidget_Adaptor *)cls)->cbs_styleChange_1228_0 (arg1); } @@ -2220,7 +2220,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUnixPrintWidget_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2244,7 +2244,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUnixPrintWidget_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2283,7 +2283,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUnixPrintWidget_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } @@ -2307,7 +2307,7 @@ static void _call_cbs_windowActivationChange_864_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUnixPrintWidget_Adaptor *)cls)->cbs_windowActivationChange_864_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQVBoxLayout.cc b/src/gsiqt/qt4/QtGui/gsiDeclQVBoxLayout.cc index eb15ed563..ff6e5af80 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQVBoxLayout.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQVBoxLayout.cc @@ -726,7 +726,8 @@ static void _call_cbs_addItem_1740_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QLayoutItem *arg1 = args.read (heap); + QLayoutItem *arg1 = gsi::arg_reader() (args, heap); + qt_gsi::qt_keep (arg1); __SUPPRESS_UNUSED_WARNING(ret); ((QVBoxLayout_Adaptor *)cls)->cbs_addItem_1740_0 (arg1); } @@ -768,7 +769,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVBoxLayout_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -811,7 +812,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVBoxLayout_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -853,7 +854,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVBoxLayout_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -877,7 +878,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QVBoxLayout_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -902,8 +903,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QVBoxLayout_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -983,7 +984,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QVBoxLayout_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -1006,7 +1007,7 @@ static void _call_cbs_indexOf_c1315_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QVBoxLayout_Adaptor *)cls)->cbs_indexOf_c1315_0 (arg1)); } @@ -1091,7 +1092,7 @@ static void _call_cbs_itemAt_c767_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QLayoutItem *)((QVBoxLayout_Adaptor *)cls)->cbs_itemAt_c767_0 (arg1)); } @@ -1152,7 +1153,7 @@ static void _call_cbs_minimumHeightForWidth_c767_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QVBoxLayout_Adaptor *)cls)->cbs_minimumHeightForWidth_c767_0 (arg1)); } @@ -1226,7 +1227,7 @@ static void _call_cbs_setGeometry_1792_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVBoxLayout_Adaptor *)cls)->cbs_setGeometry_1792_0 (arg1); } @@ -1288,7 +1289,7 @@ static void _call_cbs_takeAt_767_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QLayoutItem *)((QVBoxLayout_Adaptor *)cls)->cbs_takeAt_767_0 (arg1)); } @@ -1311,7 +1312,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVBoxLayout_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQValidator.cc b/src/gsiqt/qt4/QtGui/gsiDeclQValidator.cc index 5a7ae2b8e..741d31978 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQValidator.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQValidator.cc @@ -453,7 +453,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QValidator_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -477,7 +477,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QValidator_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -519,7 +519,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QValidator_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -543,7 +543,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QValidator_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -568,8 +568,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QValidator_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -592,7 +592,7 @@ static void _call_cbs_fixup_c1330_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QString &arg1 = args.read (heap); + QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QValidator_Adaptor *)cls)->cbs_fixup_c1330_0 (arg1); } @@ -648,7 +648,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QValidator_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -674,8 +674,8 @@ static void _call_cbs_validate_c2171_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QString &arg1 = args.read (heap); - int &arg2 = args.read (heap); + QString &arg1 = gsi::arg_reader() (args, heap); + int &arg2 = gsi::arg_reader() (args, heap); ret.write::target_type > ((qt_gsi::Converter::target_type)((QValidator_Adaptor *)cls)->cbs_validate_c2171_0 (arg1, arg2)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQWidget.cc b/src/gsiqt/qt4/QtGui/gsiDeclQWidget.cc index e81ae00bb..fef303dda 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQWidget.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQWidget.cc @@ -5654,7 +5654,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -5678,7 +5678,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -5702,7 +5702,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -5726,7 +5726,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -5750,7 +5750,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -5817,7 +5817,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -5881,7 +5881,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -5905,7 +5905,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -5929,7 +5929,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -5953,7 +5953,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -5977,7 +5977,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -6001,7 +6001,7 @@ static void _call_cbs_enabledChange_864_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget_Adaptor *)cls)->cbs_enabledChange_864_0 (arg1); } @@ -6025,7 +6025,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -6049,7 +6049,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QWidget_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -6074,8 +6074,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QWidget_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -6098,7 +6098,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -6136,7 +6136,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QWidget_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -6159,7 +6159,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -6197,7 +6197,7 @@ static void _call_cbs_fontChange_1801_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget_Adaptor *)cls)->cbs_fontChange_1801_0 (arg1); } @@ -6221,7 +6221,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QWidget_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -6244,7 +6244,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -6268,7 +6268,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -6292,7 +6292,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QWidget_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -6315,7 +6315,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -6339,7 +6339,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -6383,7 +6383,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -6407,7 +6407,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QWidget_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -6449,7 +6449,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -6473,7 +6473,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -6497,7 +6497,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -6521,7 +6521,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -6545,7 +6545,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -6588,7 +6588,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -6612,7 +6612,7 @@ static void _call_cbs_paletteChange_2113_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPalette &arg1 = args.read (heap); + const QPalette &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget_Adaptor *)cls)->cbs_paletteChange_2113_0 (arg1); } @@ -6669,7 +6669,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -6707,7 +6707,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -6731,7 +6731,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -6774,7 +6774,7 @@ static void _call_cbs_styleChange_1228_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyle &arg1 = args.read (heap); + QStyle &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget_Adaptor *)cls)->cbs_styleChange_1228_0 (arg1); } @@ -6798,7 +6798,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -6822,7 +6822,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -6861,7 +6861,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } @@ -6885,7 +6885,7 @@ static void _call_cbs_windowActivationChange_864_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget_Adaptor *)cls)->cbs_windowActivationChange_864_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQWidgetAction.cc b/src/gsiqt/qt4/QtGui/gsiDeclQWidgetAction.cc index aa4cf18a3..bb22b111f 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQWidgetAction.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQWidgetAction.cc @@ -494,7 +494,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidgetAction_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -518,7 +518,7 @@ static void _call_cbs_createWidget_1315_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); ret.write ((QWidget *)((QWidgetAction_Adaptor *)cls)->cbs_createWidget_1315_0 (arg1)); } @@ -555,7 +555,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidgetAction_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -579,7 +579,7 @@ static void _call_cbs_deleteWidget_1315_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidgetAction_Adaptor *)cls)->cbs_deleteWidget_1315_0 (arg1); } @@ -621,7 +621,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidgetAction_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -645,7 +645,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QWidgetAction_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -670,8 +670,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QWidgetAction_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -740,7 +740,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidgetAction_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQWidgetItem.cc b/src/gsiqt/qt4/QtGui/gsiDeclQWidgetItem.cc index bc85fd7de..b1beaa56f 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQWidgetItem.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQWidgetItem.cc @@ -556,7 +556,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QWidgetItem_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -656,7 +656,7 @@ static void _call_cbs_minimumHeightForWidth_c767_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QWidgetItem_Adaptor *)cls)->cbs_minimumHeightForWidth_c767_0 (arg1)); } @@ -698,7 +698,7 @@ static void _call_cbs_setGeometry_1792_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidgetItem_Adaptor *)cls)->cbs_setGeometry_1792_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQWindowsStyle.cc b/src/gsiqt/qt4/QtGui/gsiDeclQWindowsStyle.cc index 6be8c9df5..79b8e2384 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQWindowsStyle.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQWindowsStyle.cc @@ -1018,7 +1018,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWindowsStyle_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1042,7 +1042,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWindowsStyle_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1084,7 +1084,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWindowsStyle_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -1114,10 +1114,10 @@ static void _call_cbs_drawComplexControl_c9027_1 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOptionComplex *arg2 = args.read (heap); - QPainter *arg3 = args.read (heap); - const QWidget *arg4 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOptionComplex *arg2 = gsi::arg_reader() (args, heap); + QPainter *arg3 = gsi::arg_reader() (args, heap); + const QWidget *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWindowsStyle_Adaptor *)cls)->cbs_drawComplexControl_c9027_1 (arg1, arg2, arg3, arg4); } @@ -1147,10 +1147,10 @@ static void _call_cbs_drawControl_c8285_1 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args.read (heap); - QPainter *arg3 = args.read (heap); - const QWidget *arg4 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = gsi::arg_reader() (args, heap); + QPainter *arg3 = gsi::arg_reader() (args, heap); + const QWidget *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWindowsStyle_Adaptor *)cls)->cbs_drawControl_c8285_1 (arg1, arg2, arg3, arg4); } @@ -1180,10 +1180,10 @@ static void _call_cbs_drawItemPixmap_c5678_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QRect &arg2 = args.read (heap); - int arg3 = args.read (heap); - const QPixmap &arg4 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QRect &arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QPixmap &arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWindowsStyle_Adaptor *)cls)->cbs_drawItemPixmap_c5678_0 (arg1, arg2, arg3, arg4); } @@ -1219,13 +1219,13 @@ static void _call_cbs_drawItemText_c10604_1 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QRect &arg2 = args.read (heap); - int arg3 = args.read (heap); - const QPalette &arg4 = args.read (heap); - bool arg5 = args.read (heap); - const QString &arg6 = args.read (heap); - const qt_gsi::Converter::target_type & arg7 = args.read::target_type & > (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QRect &arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QPalette &arg4 = gsi::arg_reader() (args, heap); + bool arg5 = gsi::arg_reader() (args, heap); + const QString &arg6 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg7 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QPalette::NoRole), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWindowsStyle_Adaptor *)cls)->cbs_drawItemText_c10604_1 (arg1, arg2, arg3, arg4, arg5, arg6, arg7); } @@ -1255,10 +1255,10 @@ static void _call_cbs_drawPrimitive_c8501_1 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args.read (heap); - QPainter *arg3 = args.read (heap); - const QWidget *arg4 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = gsi::arg_reader() (args, heap); + QPainter *arg3 = gsi::arg_reader() (args, heap); + const QWidget *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWindowsStyle_Adaptor *)cls)->cbs_drawPrimitive_c8501_1 (arg1, arg2, arg3, arg4); } @@ -1282,7 +1282,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QWindowsStyle_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1307,8 +1307,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QWindowsStyle_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1335,9 +1335,9 @@ static void _call_cbs_generatedIconPixmap_c5776_0 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QPixmap &arg2 = args.read (heap); - const QStyleOption *arg3 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QPixmap &arg2 = gsi::arg_reader() (args, heap); + const QStyleOption *arg3 = gsi::arg_reader() (args, heap); ret.write ((QPixmap)((QWindowsStyle_Adaptor *)cls)->cbs_generatedIconPixmap_c5776_0 (arg1, arg2, arg3)); } @@ -1366,10 +1366,10 @@ static void _call_cbs_hitTestComplexControl_c9517_1 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOptionComplex *arg2 = args.read (heap); - const QPoint &arg3 = args.read (heap); - const QWidget *arg4 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOptionComplex *arg2 = gsi::arg_reader() (args, heap); + const QPoint &arg3 = gsi::arg_reader() (args, heap); + const QWidget *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write::target_type > ((qt_gsi::Converter::target_type)((QWindowsStyle_Adaptor *)cls)->cbs_hitTestComplexControl_c9517_1 (arg1, arg2, arg3, arg4)); } @@ -1396,9 +1396,9 @@ static void _call_cbs_itemPixmapRect_c4360_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); - int arg2 = args.read (heap); - const QPixmap &arg3 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QPixmap &arg3 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QWindowsStyle_Adaptor *)cls)->cbs_itemPixmapRect_c4360_0 (arg1, arg2, arg3)); } @@ -1429,11 +1429,11 @@ static void _call_cbs_itemTextRect_c7544_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFontMetrics &arg1 = args.read (heap); - const QRect &arg2 = args.read (heap); - int arg3 = args.read (heap); - bool arg4 = args.read (heap); - const QString &arg5 = args.read (heap); + const QFontMetrics &arg1 = gsi::arg_reader() (args, heap); + const QRect &arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + bool arg4 = gsi::arg_reader() (args, heap); + const QString &arg5 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QWindowsStyle_Adaptor *)cls)->cbs_itemTextRect_c7544_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -1490,9 +1490,9 @@ static void _call_cbs_pixelMetric_c6642_2 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args.read (heap); - const QWidget *arg3 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + const QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((int)((QWindowsStyle_Adaptor *)cls)->cbs_pixelMetric_c6642_2 (arg1, arg2, arg3)); } @@ -1515,7 +1515,7 @@ static void _call_cbs_polish_1843_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QApplication *arg1 = args.read (heap); + QApplication *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWindowsStyle_Adaptor *)cls)->cbs_polish_1843_0 (arg1); } @@ -1539,7 +1539,7 @@ static void _call_cbs_polish_1315_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWindowsStyle_Adaptor *)cls)->cbs_polish_1315_0 (arg1); } @@ -1563,7 +1563,7 @@ static void _call_cbs_polish_1418_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPalette &arg1 = args.read (heap); + QPalette &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWindowsStyle_Adaptor *)cls)->cbs_polish_1418_0 (arg1); } @@ -1625,10 +1625,10 @@ static void _call_cbs_sizeFromContents_c8477_1 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args.read (heap); - const QSize &arg3 = args.read (heap); - const QWidget *arg4 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = gsi::arg_reader() (args, heap); + const QSize &arg3 = gsi::arg_reader() (args, heap); + const QWidget *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QSize)((QWindowsStyle_Adaptor *)cls)->cbs_sizeFromContents_c8477_1 (arg1, arg2, arg3, arg4)); } @@ -1698,9 +1698,9 @@ static void _call_cbs_standardPixmap_c6956_1 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args.read (heap); - const QWidget *arg3 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = gsi::arg_reader() (args, heap); + const QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QPixmap)((QWindowsStyle_Adaptor *)cls)->cbs_standardPixmap_c6956_1 (arg1, arg2, arg3)); } @@ -1729,10 +1729,10 @@ static void _call_cbs_styleHint_c8615_3 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args.read (heap); - const QWidget *arg3 = args.read (heap); - QStyleHintReturn *arg4 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + const QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + QStyleHintReturn *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((int)((QWindowsStyle_Adaptor *)cls)->cbs_styleHint_c8615_3 (arg1, arg2, arg3, arg4)); } @@ -1761,10 +1761,10 @@ static void _call_cbs_subControlRect_c9798_1 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOptionComplex *arg2 = args.read (heap); - const qt_gsi::Converter::target_type & arg3 = args.read::target_type & > (heap); - const QWidget *arg4 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOptionComplex *arg2 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg3 = gsi::arg_reader::target_type & >() (args, heap); + const QWidget *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QRect)((QWindowsStyle_Adaptor *)cls)->cbs_subControlRect_c9798_1 (arg1, arg2, arg3, arg4)); } @@ -1791,9 +1791,9 @@ static void _call_cbs_subElementRect_c6528_1 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args.read (heap); - const QWidget *arg3 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = gsi::arg_reader() (args, heap); + const QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QRect)((QWindowsStyle_Adaptor *)cls)->cbs_subElementRect_c6528_1 (arg1, arg2, arg3)); } @@ -1816,7 +1816,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWindowsStyle_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -1840,7 +1840,7 @@ static void _call_cbs_unpolish_1843_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QApplication *arg1 = args.read (heap); + QApplication *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWindowsStyle_Adaptor *)cls)->cbs_unpolish_1843_0 (arg1); } @@ -1864,7 +1864,7 @@ static void _call_cbs_unpolish_1315_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWindowsStyle_Adaptor *)cls)->cbs_unpolish_1315_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQWizard.cc b/src/gsiqt/qt4/QtGui/gsiDeclQWizard.cc index 3461183c8..81827d243 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQWizard.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQWizard.cc @@ -2004,7 +2004,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -2047,7 +2047,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -2071,7 +2071,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -2095,7 +2095,7 @@ static void _call_cbs_cleanupPage_767_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard_Adaptor *)cls)->cbs_cleanupPage_767_0 (arg1); } @@ -2119,7 +2119,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -2143,7 +2143,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -2246,7 +2246,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -2310,7 +2310,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -2334,7 +2334,7 @@ static void _call_cbs_done_767_0 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard_Adaptor *)cls)->cbs_done_767_0 (arg1); } @@ -2358,7 +2358,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -2382,7 +2382,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -2406,7 +2406,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -2430,7 +2430,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -2454,7 +2454,7 @@ static void _call_cbs_enabledChange_864_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard_Adaptor *)cls)->cbs_enabledChange_864_0 (arg1); } @@ -2478,7 +2478,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -2502,7 +2502,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QWizard_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -2527,8 +2527,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QWizard_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -2569,7 +2569,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -2607,7 +2607,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QWizard_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -2630,7 +2630,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -2668,7 +2668,7 @@ static void _call_cbs_fontChange_1801_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard_Adaptor *)cls)->cbs_fontChange_1801_0 (arg1); } @@ -2692,7 +2692,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QWizard_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -2729,7 +2729,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -2753,7 +2753,7 @@ static void _call_cbs_initializePage_767_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard_Adaptor *)cls)->cbs_initializePage_767_0 (arg1); } @@ -2777,7 +2777,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2801,7 +2801,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QWizard_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2824,7 +2824,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2848,7 +2848,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2892,7 +2892,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2916,7 +2916,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QWizard_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2958,7 +2958,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2982,7 +2982,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -3006,7 +3006,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -3030,7 +3030,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -3054,7 +3054,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -3116,7 +3116,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -3140,7 +3140,7 @@ static void _call_cbs_paletteChange_2113_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPalette &arg1 = args.read (heap); + const QPalette &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard_Adaptor *)cls)->cbs_paletteChange_2113_0 (arg1); } @@ -3231,7 +3231,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -3269,7 +3269,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -3293,7 +3293,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -3336,7 +3336,7 @@ static void _call_cbs_styleChange_1228_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyle &arg1 = args.read (heap); + QStyle &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard_Adaptor *)cls)->cbs_styleChange_1228_0 (arg1); } @@ -3360,7 +3360,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -3384,7 +3384,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -3442,7 +3442,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } @@ -3466,7 +3466,7 @@ static void _call_cbs_windowActivationChange_864_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard_Adaptor *)cls)->cbs_windowActivationChange_864_0 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQWizardPage.cc b/src/gsiqt/qt4/QtGui/gsiDeclQWizardPage.cc index d87d3fae9..93976efae 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQWizardPage.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQWizardPage.cc @@ -1484,7 +1484,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizardPage_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1508,7 +1508,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizardPage_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1532,7 +1532,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizardPage_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1576,7 +1576,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizardPage_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1614,7 +1614,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizardPage_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1681,7 +1681,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizardPage_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1745,7 +1745,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizardPage_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -1769,7 +1769,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizardPage_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1793,7 +1793,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizardPage_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1817,7 +1817,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizardPage_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1841,7 +1841,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizardPage_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1865,7 +1865,7 @@ static void _call_cbs_enabledChange_864_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizardPage_Adaptor *)cls)->cbs_enabledChange_864_0 (arg1); } @@ -1889,7 +1889,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizardPage_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -1913,7 +1913,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QWizardPage_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1938,8 +1938,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QWizardPage_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1980,7 +1980,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizardPage_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -2018,7 +2018,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QWizardPage_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -2041,7 +2041,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizardPage_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -2079,7 +2079,7 @@ static void _call_cbs_fontChange_1801_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizardPage_Adaptor *)cls)->cbs_fontChange_1801_0 (arg1); } @@ -2103,7 +2103,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QWizardPage_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -2126,7 +2126,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizardPage_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -2170,7 +2170,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizardPage_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2194,7 +2194,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QWizardPage_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2236,7 +2236,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizardPage_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2260,7 +2260,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizardPage_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2304,7 +2304,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizardPage_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2328,7 +2328,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QWizardPage_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2370,7 +2370,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizardPage_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2394,7 +2394,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizardPage_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2418,7 +2418,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizardPage_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2442,7 +2442,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizardPage_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2466,7 +2466,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizardPage_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2528,7 +2528,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizardPage_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2552,7 +2552,7 @@ static void _call_cbs_paletteChange_2113_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPalette &arg1 = args.read (heap); + const QPalette &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizardPage_Adaptor *)cls)->cbs_paletteChange_2113_0 (arg1); } @@ -2637,7 +2637,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizardPage_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2697,7 +2697,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizardPage_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2721,7 +2721,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizardPage_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2764,7 +2764,7 @@ static void _call_cbs_styleChange_1228_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyle &arg1 = args.read (heap); + QStyle &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizardPage_Adaptor *)cls)->cbs_styleChange_1228_0 (arg1); } @@ -2788,7 +2788,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizardPage_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2812,7 +2812,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizardPage_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2870,7 +2870,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizardPage_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } @@ -2894,7 +2894,7 @@ static void _call_cbs_windowActivationChange_864_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizardPage_Adaptor *)cls)->cbs_windowActivationChange_864_0 (arg1); } diff --git a/src/gsiqt/qt4/QtNetwork/gsiDeclQAbstractNetworkCache.cc b/src/gsiqt/qt4/QtNetwork/gsiDeclQAbstractNetworkCache.cc index c27a70fdf..662d99b7e 100644 --- a/src/gsiqt/qt4/QtNetwork/gsiDeclQAbstractNetworkCache.cc +++ b/src/gsiqt/qt4/QtNetwork/gsiDeclQAbstractNetworkCache.cc @@ -638,7 +638,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractNetworkCache_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -682,7 +682,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractNetworkCache_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -706,7 +706,7 @@ static void _call_cbs_data_1701_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QUrl &arg1 = args.read (heap); + const QUrl &arg1 = gsi::arg_reader() (args, heap); ret.write ((QIODevice *)((QAbstractNetworkCache_Adaptor *)cls)->cbs_data_1701_0 (arg1)); } @@ -747,7 +747,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractNetworkCache_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -771,7 +771,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractNetworkCache_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -796,8 +796,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractNetworkCache_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -820,7 +820,7 @@ static void _call_cbs_insert_1447_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QIODevice *arg1 = args.read (heap); + QIODevice *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractNetworkCache_Adaptor *)cls)->cbs_insert_1447_0 (arg1); } @@ -844,7 +844,7 @@ static void _call_cbs_metaData_1701_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QUrl &arg1 = args.read (heap); + const QUrl &arg1 = gsi::arg_reader() (args, heap); ret.write ((QNetworkCacheMetaData)((QAbstractNetworkCache_Adaptor *)cls)->cbs_metaData_1701_0 (arg1)); } @@ -867,7 +867,7 @@ static void _call_cbs_prepare_3377_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkCacheMetaData &arg1 = args.read (heap); + const QNetworkCacheMetaData &arg1 = gsi::arg_reader() (args, heap); ret.write ((QIODevice *)((QAbstractNetworkCache_Adaptor *)cls)->cbs_prepare_3377_0 (arg1)); } @@ -908,7 +908,7 @@ static void _call_cbs_remove_1701_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QUrl &arg1 = args.read (heap); + const QUrl &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractNetworkCache_Adaptor *)cls)->cbs_remove_1701_0 (arg1)); } @@ -945,7 +945,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractNetworkCache_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -969,7 +969,7 @@ static void _call_cbs_updateMetaData_3377_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkCacheMetaData &arg1 = args.read (heap); + const QNetworkCacheMetaData &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractNetworkCache_Adaptor *)cls)->cbs_updateMetaData_3377_0 (arg1); } diff --git a/src/gsiqt/qt4/QtNetwork/gsiDeclQFtp.cc b/src/gsiqt/qt4/QtNetwork/gsiDeclQFtp.cc index 96c10e5f2..e56106b23 100644 --- a/src/gsiqt/qt4/QtNetwork/gsiDeclQFtp.cc +++ b/src/gsiqt/qt4/QtNetwork/gsiDeclQFtp.cc @@ -899,7 +899,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFtp_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -962,7 +962,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFtp_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1025,7 +1025,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFtp_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -1067,7 +1067,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFtp_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1092,8 +1092,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFtp_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1219,7 +1219,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFtp_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt4/QtNetwork/gsiDeclQLocalServer.cc b/src/gsiqt/qt4/QtNetwork/gsiDeclQLocalServer.cc index e22aee2c9..26ef3c4a5 100644 --- a/src/gsiqt/qt4/QtNetwork/gsiDeclQLocalServer.cc +++ b/src/gsiqt/qt4/QtNetwork/gsiDeclQLocalServer.cc @@ -622,7 +622,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLocalServer_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -646,7 +646,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLocalServer_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -688,7 +688,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLocalServer_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -712,7 +712,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QLocalServer_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -737,8 +737,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QLocalServer_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -780,7 +780,7 @@ static void _call_cbs_incomingConnection_1339_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - quintptr arg1 = args.read (heap); + quintptr arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLocalServer_Adaptor *)cls)->cbs_incomingConnection_1339_0 (arg1); } @@ -869,7 +869,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLocalServer_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt4/QtNetwork/gsiDeclQNetworkAccessManager.cc b/src/gsiqt/qt4/QtNetwork/gsiDeclQNetworkAccessManager.cc index 30102245b..4e3065cd7 100644 --- a/src/gsiqt/qt4/QtNetwork/gsiDeclQNetworkAccessManager.cc +++ b/src/gsiqt/qt4/QtNetwork/gsiDeclQNetworkAccessManager.cc @@ -711,7 +711,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkAccessManager_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -739,9 +739,9 @@ static void _call_cbs_createRequest_7733_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QNetworkRequest &arg2 = args.read (heap); - QIODevice *arg3 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QNetworkRequest &arg2 = gsi::arg_reader() (args, heap); + QIODevice *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QNetworkReply *)((QNetworkAccessManager_Adaptor *)cls)->cbs_createRequest_7733_1 (arg1, arg2, arg3)); } @@ -764,7 +764,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkAccessManager_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -806,7 +806,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkAccessManager_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -830,7 +830,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QNetworkAccessManager_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -855,8 +855,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QNetworkAccessManager_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -971,7 +971,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkAccessManager_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt4/QtNetwork/gsiDeclQNetworkCookieJar.cc b/src/gsiqt/qt4/QtNetwork/gsiDeclQNetworkCookieJar.cc index 5345a8ec5..a84cccb9c 100644 --- a/src/gsiqt/qt4/QtNetwork/gsiDeclQNetworkCookieJar.cc +++ b/src/gsiqt/qt4/QtNetwork/gsiDeclQNetworkCookieJar.cc @@ -438,7 +438,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkCookieJar_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -462,7 +462,7 @@ static void _call_cbs_cookiesForUrl_c1701_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QUrl &arg1 = args.read (heap); + const QUrl &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QList)((QNetworkCookieJar_Adaptor *)cls)->cbs_cookiesForUrl_c1701_0 (arg1)); } @@ -485,7 +485,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkCookieJar_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -527,7 +527,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkCookieJar_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -551,7 +551,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QNetworkCookieJar_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -576,8 +576,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QNetworkCookieJar_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -653,8 +653,8 @@ static void _call_cbs_setCookiesFromUrl_4950_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); - const QUrl &arg2 = args.read (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); + const QUrl &arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QNetworkCookieJar_Adaptor *)cls)->cbs_setCookiesFromUrl_4950_0 (arg1, arg2)); } @@ -677,7 +677,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkCookieJar_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt4/QtNetwork/gsiDeclQNetworkDiskCache.cc b/src/gsiqt/qt4/QtNetwork/gsiDeclQNetworkDiskCache.cc index ce680da98..5878bb6d1 100644 --- a/src/gsiqt/qt4/QtNetwork/gsiDeclQNetworkDiskCache.cc +++ b/src/gsiqt/qt4/QtNetwork/gsiDeclQNetworkDiskCache.cc @@ -752,7 +752,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkDiskCache_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -796,7 +796,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkDiskCache_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -820,7 +820,7 @@ static void _call_cbs_data_1701_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QUrl &arg1 = args.read (heap); + const QUrl &arg1 = gsi::arg_reader() (args, heap); ret.write ((QIODevice *)((QNetworkDiskCache_Adaptor *)cls)->cbs_data_1701_0 (arg1)); } @@ -861,7 +861,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkDiskCache_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -885,7 +885,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QNetworkDiskCache_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -910,8 +910,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QNetworkDiskCache_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -953,7 +953,7 @@ static void _call_cbs_insert_1447_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QIODevice *arg1 = args.read (heap); + QIODevice *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkDiskCache_Adaptor *)cls)->cbs_insert_1447_0 (arg1); } @@ -977,7 +977,7 @@ static void _call_cbs_metaData_1701_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QUrl &arg1 = args.read (heap); + const QUrl &arg1 = gsi::arg_reader() (args, heap); ret.write ((QNetworkCacheMetaData)((QNetworkDiskCache_Adaptor *)cls)->cbs_metaData_1701_0 (arg1)); } @@ -1000,7 +1000,7 @@ static void _call_cbs_prepare_3377_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkCacheMetaData &arg1 = args.read (heap); + const QNetworkCacheMetaData &arg1 = gsi::arg_reader() (args, heap); ret.write ((QIODevice *)((QNetworkDiskCache_Adaptor *)cls)->cbs_prepare_3377_0 (arg1)); } @@ -1041,7 +1041,7 @@ static void _call_cbs_remove_1701_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QUrl &arg1 = args.read (heap); + const QUrl &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QNetworkDiskCache_Adaptor *)cls)->cbs_remove_1701_0 (arg1)); } @@ -1078,7 +1078,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkDiskCache_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -1102,7 +1102,7 @@ static void _call_cbs_updateMetaData_3377_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkCacheMetaData &arg1 = args.read (heap); + const QNetworkCacheMetaData &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkDiskCache_Adaptor *)cls)->cbs_updateMetaData_3377_0 (arg1); } diff --git a/src/gsiqt/qt4/QtNetwork/gsiDeclQNetworkProxyFactory.cc b/src/gsiqt/qt4/QtNetwork/gsiDeclQNetworkProxyFactory.cc index 593d03775..23b0b0f90 100644 --- a/src/gsiqt/qt4/QtNetwork/gsiDeclQNetworkProxyFactory.cc +++ b/src/gsiqt/qt4/QtNetwork/gsiDeclQNetworkProxyFactory.cc @@ -216,7 +216,7 @@ static void _call_cbs_queryProxy_3220_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkProxyQuery &arg1 = args.read (heap); + const QNetworkProxyQuery &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QNetworkProxyQuery(), heap); ret.write > ((QList)((QNetworkProxyFactory_Adaptor *)cls)->cbs_queryProxy_3220_1 (arg1)); } diff --git a/src/gsiqt/qt4/QtNetwork/gsiDeclQTcpServer.cc b/src/gsiqt/qt4/QtNetwork/gsiDeclQTcpServer.cc index 4efcfde71..f068a91f0 100644 --- a/src/gsiqt/qt4/QtNetwork/gsiDeclQTcpServer.cc +++ b/src/gsiqt/qt4/QtNetwork/gsiDeclQTcpServer.cc @@ -680,7 +680,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTcpServer_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -704,7 +704,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTcpServer_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -746,7 +746,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTcpServer_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -770,7 +770,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTcpServer_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -795,8 +795,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTcpServer_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -838,7 +838,7 @@ static void _call_cbs_incomingConnection_767_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTcpServer_Adaptor *)cls)->cbs_incomingConnection_767_0 (arg1); } @@ -927,7 +927,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTcpServer_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt4/QtNetwork/gsiDeclQUrlInfo.cc b/src/gsiqt/qt4/QtNetwork/gsiDeclQUrlInfo.cc index e0e1e8032..498f1a628 100644 --- a/src/gsiqt/qt4/QtNetwork/gsiDeclQUrlInfo.cc +++ b/src/gsiqt/qt4/QtNetwork/gsiDeclQUrlInfo.cc @@ -910,7 +910,7 @@ static void _call_cbs_setDir_864_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUrlInfo_Adaptor *)cls)->cbs_setDir_864_0 (arg1); } @@ -934,7 +934,7 @@ static void _call_cbs_setFile_864_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUrlInfo_Adaptor *)cls)->cbs_setFile_864_0 (arg1); } @@ -958,7 +958,7 @@ static void _call_cbs_setGroup_2025_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUrlInfo_Adaptor *)cls)->cbs_setGroup_2025_0 (arg1); } @@ -982,7 +982,7 @@ static void _call_cbs_setLastModified_2175_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDateTime &arg1 = args.read (heap); + const QDateTime &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUrlInfo_Adaptor *)cls)->cbs_setLastModified_2175_0 (arg1); } @@ -1006,7 +1006,7 @@ static void _call_cbs_setName_2025_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUrlInfo_Adaptor *)cls)->cbs_setName_2025_0 (arg1); } @@ -1030,7 +1030,7 @@ static void _call_cbs_setOwner_2025_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUrlInfo_Adaptor *)cls)->cbs_setOwner_2025_0 (arg1); } @@ -1054,7 +1054,7 @@ static void _call_cbs_setPermissions_767_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUrlInfo_Adaptor *)cls)->cbs_setPermissions_767_0 (arg1); } @@ -1078,7 +1078,7 @@ static void _call_cbs_setReadable_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUrlInfo_Adaptor *)cls)->cbs_setReadable_864_0 (arg1); } @@ -1102,7 +1102,7 @@ static void _call_cbs_setSize_986_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - qint64 arg1 = args.read (heap); + qint64 arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUrlInfo_Adaptor *)cls)->cbs_setSize_986_0 (arg1); } @@ -1126,7 +1126,7 @@ static void _call_cbs_setSymLink_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUrlInfo_Adaptor *)cls)->cbs_setSymLink_864_0 (arg1); } @@ -1150,7 +1150,7 @@ static void _call_cbs_setWritable_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUrlInfo_Adaptor *)cls)->cbs_setWritable_864_0 (arg1); } diff --git a/src/gsiqt/qt4/QtSql/gsiDeclQSqlDriver.cc b/src/gsiqt/qt4/QtSql/gsiDeclQSqlDriver.cc index 89f5325c3..ca64cd58e 100644 --- a/src/gsiqt/qt4/QtSql/gsiDeclQSqlDriver.cc +++ b/src/gsiqt/qt4/QtSql/gsiDeclQSqlDriver.cc @@ -1162,7 +1162,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlDriver_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1244,7 +1244,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlDriver_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1286,7 +1286,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlDriver_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -1312,8 +1312,8 @@ static void _call_cbs_escapeIdentifier_c4919_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QString)((QSqlDriver_Adaptor *)cls)->cbs_escapeIdentifier_c4919_0 (arg1, arg2)); } @@ -1336,7 +1336,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlDriver_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1361,8 +1361,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlDriver_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1387,8 +1387,8 @@ static void _call_cbs_formatValue_c2938_1 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSqlField &arg1 = args.read (heap); - bool arg2 = args.read (heap); + const QSqlField &arg1 = gsi::arg_reader() (args, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (false, heap); ret.write ((QString)((QSqlDriver_Adaptor *)cls)->cbs_formatValue_c2938_1 (arg1, arg2)); } @@ -1430,7 +1430,7 @@ static void _call_cbs_hasFeature_c2893_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((bool)((QSqlDriver_Adaptor *)cls)->cbs_hasFeature_c2893_0 (arg1)); } @@ -1521,12 +1521,12 @@ static void _call_cbs_open_10352_5 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QString &arg3 = args.read (heap); - const QString &arg4 = args.read (heap); - int arg5 = args.read (heap); - const QString &arg6 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); + const QString &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); + const QString &arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); + int arg5 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); + const QString &arg6 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); ret.write ((bool)((QSqlDriver_Adaptor *)cls)->cbs_open_10352_5 (arg1, arg2, arg3, arg4, arg5, arg6)); } @@ -1549,7 +1549,7 @@ static void _call_cbs_primaryIndex_c2025_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QSqlIndex)((QSqlDriver_Adaptor *)cls)->cbs_primaryIndex_c2025_0 (arg1)); } @@ -1590,7 +1590,7 @@ static void _call_cbs_record_c2025_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QSqlRecord)((QSqlDriver_Adaptor *)cls)->cbs_record_c2025_0 (arg1)); } @@ -1646,7 +1646,7 @@ static void _call_cbs_setLastError_2220_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSqlError &arg1 = args.read (heap); + const QSqlError &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlDriver_Adaptor *)cls)->cbs_setLastError_2220_0 (arg1); } @@ -1670,7 +1670,7 @@ static void _call_cbs_setOpen_864_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlDriver_Adaptor *)cls)->cbs_setOpen_864_0 (arg1); } @@ -1694,7 +1694,7 @@ static void _call_cbs_setOpenError_864_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlDriver_Adaptor *)cls)->cbs_setOpenError_864_0 (arg1); } @@ -1724,10 +1724,10 @@ static void _call_cbs_sqlStatement_c7794_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QString &arg2 = args.read (heap); - const QSqlRecord &arg3 = args.read (heap); - bool arg4 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QSqlRecord &arg3 = gsi::arg_reader() (args, heap); + bool arg4 = gsi::arg_reader() (args, heap); ret.write ((QString)((QSqlDriver_Adaptor *)cls)->cbs_sqlStatement_c7794_0 (arg1, arg2, arg3, arg4)); } @@ -1803,7 +1803,7 @@ static void _call_cbs_tables_c1843_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QStringList)((QSqlDriver_Adaptor *)cls)->cbs_tables_c1843_0 (arg1)); } @@ -1826,7 +1826,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlDriver_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt4/QtSql/gsiDeclQSqlQueryModel.cc b/src/gsiqt/qt4/QtSql/gsiDeclQSqlQueryModel.cc index 251d98d30..8b1bd6bf5 100644 --- a/src/gsiqt/qt4/QtSql/gsiDeclQSqlQueryModel.cc +++ b/src/gsiqt/qt4/QtSql/gsiDeclQSqlQueryModel.cc @@ -1467,7 +1467,7 @@ static void _call_cbs_buddy_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QSqlQueryModel_Adaptor *)cls)->cbs_buddy_c2395_0 (arg1)); } @@ -1490,7 +1490,7 @@ static void _call_cbs_canFetchMore_c2395_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QSqlQueryModel_Adaptor *)cls)->cbs_canFetchMore_c2395_1 (arg1)); } @@ -1557,7 +1557,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlQueryModel_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1601,7 +1601,7 @@ static void _call_cbs_columnCount_c2395_1 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((int)((QSqlQueryModel_Adaptor *)cls)->cbs_columnCount_c2395_1 (arg1)); } @@ -1696,7 +1696,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlQueryModel_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1722,8 +1722,8 @@ static void _call_cbs_data_c3054_1 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::DisplayRole, heap); ret.write ((QVariant)((QSqlQueryModel_Adaptor *)cls)->cbs_data_c3054_1 (arg1, arg2)); } @@ -1812,7 +1812,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlQueryModel_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -1844,11 +1844,11 @@ static void _call_cbs_dropMimeData_7425_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMimeData *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - const QModelIndex &arg5 = args.read (heap); + const QMimeData *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + const QModelIndex &arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlQueryModel_Adaptor *)cls)->cbs_dropMimeData_7425_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -1998,7 +1998,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlQueryModel_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -2023,8 +2023,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlQueryModel_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -2047,7 +2047,7 @@ static void _call_cbs_fetchMore_2395_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlQueryModel_Adaptor *)cls)->cbs_fetchMore_2395_1 (arg1); } @@ -2071,7 +2071,7 @@ static void _call_cbs_flags_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QFlags)((QSqlQueryModel_Adaptor *)cls)->cbs_flags_c2395_0 (arg1)); } @@ -2098,9 +2098,9 @@ static void _call_cbs_headerData_c3231_1 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::DisplayRole, heap); ret.write ((QVariant)((QSqlQueryModel_Adaptor *)cls)->cbs_headerData_c3231_1 (arg1, arg2, arg3)); } @@ -2151,9 +2151,9 @@ static void _call_cbs_index_c3713_1 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((QModelIndex)((QSqlQueryModel_Adaptor *)cls)->cbs_index_c3713_1 (arg1, arg2, arg3)); } @@ -2198,9 +2198,9 @@ static void _call_cbs_insertColumns_3713_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QSqlQueryModel_Adaptor *)cls)->cbs_insertColumns_3713_1 (arg1, arg2, arg3)); } @@ -2227,9 +2227,9 @@ static void _call_cbs_insertRows_3713_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QSqlQueryModel_Adaptor *)cls)->cbs_insertRows_3713_1 (arg1, arg2, arg3)); } @@ -2252,7 +2252,7 @@ static void _call_cbs_itemData_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QMap)((QSqlQueryModel_Adaptor *)cls)->cbs_itemData_c2395_0 (arg1)); } @@ -2311,11 +2311,11 @@ static void _call_cbs_match_c7932_2 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - const QVariant &arg3 = args.read (heap); - int arg4 = args.read (heap); - QFlags arg5 = args.read > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QVariant &arg3 = gsi::arg_reader() (args, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (1, heap); + QFlags arg5 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (Qt::MatchFlags(Qt::MatchStartsWith|Qt::MatchWrap), heap); ret.write > ((QList)((QSqlQueryModel_Adaptor *)cls)->cbs_match_c7932_2 (arg1, arg2, arg3, arg4, arg5)); } @@ -2338,7 +2338,7 @@ static void _call_cbs_mimeData_c3010_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); ret.write ((QMimeData *)((QSqlQueryModel_Adaptor *)cls)->cbs_mimeData_c3010_0 (arg1)); } @@ -2436,9 +2436,9 @@ static void _call_cbs_removeColumns_3713_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QSqlQueryModel_Adaptor *)cls)->cbs_removeColumns_3713_1 (arg1, arg2, arg3)); } @@ -2465,9 +2465,9 @@ static void _call_cbs_removeRows_3713_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QSqlQueryModel_Adaptor *)cls)->cbs_removeRows_3713_1 (arg1, arg2, arg3)); } @@ -2525,7 +2525,7 @@ static void _call_cbs_rowCount_c2395_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((int)((QSqlQueryModel_Adaptor *)cls)->cbs_rowCount_c2395_1 (arg1)); } @@ -2566,9 +2566,9 @@ static void _call_cbs_setData_5065_1 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::EditRole, heap); ret.write ((bool)((QSqlQueryModel_Adaptor *)cls)->cbs_setData_5065_1 (arg1, arg2, arg3)); } @@ -2597,10 +2597,10 @@ static void _call_cbs_setHeaderData_5242_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - const QVariant &arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + const QVariant &arg3 = gsi::arg_reader() (args, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::EditRole, heap); ret.write ((bool)((QSqlQueryModel_Adaptor *)cls)->cbs_setHeaderData_5242_1 (arg1, arg2, arg3, arg4)); } @@ -2625,8 +2625,8 @@ static void _call_cbs_setItemData_5414_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QMap &arg2 = args.read & > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QMap &arg2 = gsi::arg_reader & >() (args, heap); ret.write ((bool)((QSqlQueryModel_Adaptor *)cls)->cbs_setItemData_5414_0 (arg1, arg2)); } @@ -2689,8 +2689,8 @@ static void _call_cbs_sort_2340_1 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::AscendingOrder), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlQueryModel_Adaptor *)cls)->cbs_sort_2340_1 (arg1, arg2); } @@ -2714,7 +2714,7 @@ static void _call_cbs_span_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QSize)((QSqlQueryModel_Adaptor *)cls)->cbs_span_c2395_0 (arg1)); } @@ -2775,7 +2775,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlQueryModel_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt4/QtSql/gsiDeclQSqlRelationalTableModel.cc b/src/gsiqt/qt4/QtSql/gsiDeclQSqlRelationalTableModel.cc index e7f5fc066..4f211788c 100644 --- a/src/gsiqt/qt4/QtSql/gsiDeclQSqlRelationalTableModel.cc +++ b/src/gsiqt/qt4/QtSql/gsiDeclQSqlRelationalTableModel.cc @@ -1655,7 +1655,7 @@ static void _call_cbs_buddy_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QSqlRelationalTableModel_Adaptor *)cls)->cbs_buddy_c2395_0 (arg1)); } @@ -1678,7 +1678,7 @@ static void _call_cbs_canFetchMore_c2395_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QSqlRelationalTableModel_Adaptor *)cls)->cbs_canFetchMore_c2395_1 (arg1)); } @@ -1745,7 +1745,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlRelationalTableModel_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1789,7 +1789,7 @@ static void _call_cbs_columnCount_c2395_1 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((int)((QSqlRelationalTableModel_Adaptor *)cls)->cbs_columnCount_c2395_1 (arg1)); } @@ -1884,7 +1884,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlRelationalTableModel_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1910,8 +1910,8 @@ static void _call_cbs_data_c3054_1 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::DisplayRole, heap); ret.write ((QVariant)((QSqlRelationalTableModel_Adaptor *)cls)->cbs_data_c3054_1 (arg1, arg2)); } @@ -1982,7 +1982,7 @@ static void _call_cbs_deleteRowFromTable_767_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlRelationalTableModel_Adaptor *)cls)->cbs_deleteRowFromTable_767_0 (arg1)); } @@ -2023,7 +2023,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlRelationalTableModel_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -2055,11 +2055,11 @@ static void _call_cbs_dropMimeData_7425_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMimeData *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - const QModelIndex &arg5 = args.read (heap); + const QMimeData *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + const QModelIndex &arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlRelationalTableModel_Adaptor *)cls)->cbs_dropMimeData_7425_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -2209,7 +2209,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlRelationalTableModel_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -2234,8 +2234,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlRelationalTableModel_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -2258,7 +2258,7 @@ static void _call_cbs_fetchMore_2395_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlRelationalTableModel_Adaptor *)cls)->cbs_fetchMore_2395_1 (arg1); } @@ -2282,7 +2282,7 @@ static void _call_cbs_flags_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QFlags)((QSqlRelationalTableModel_Adaptor *)cls)->cbs_flags_c2395_0 (arg1)); } @@ -2309,9 +2309,9 @@ static void _call_cbs_headerData_c3231_1 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::DisplayRole, heap); ret.write ((QVariant)((QSqlRelationalTableModel_Adaptor *)cls)->cbs_headerData_c3231_1 (arg1, arg2, arg3)); } @@ -2362,9 +2362,9 @@ static void _call_cbs_index_c3713_1 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((QModelIndex)((QSqlRelationalTableModel_Adaptor *)cls)->cbs_index_c3713_1 (arg1, arg2, arg3)); } @@ -2409,9 +2409,9 @@ static void _call_cbs_insertColumns_3713_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QSqlRelationalTableModel_Adaptor *)cls)->cbs_insertColumns_3713_1 (arg1, arg2, arg3)); } @@ -2434,7 +2434,7 @@ static void _call_cbs_insertRowIntoTable_2305_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSqlRecord &arg1 = args.read (heap); + const QSqlRecord &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlRelationalTableModel_Adaptor *)cls)->cbs_insertRowIntoTable_2305_0 (arg1)); } @@ -2461,9 +2461,9 @@ static void _call_cbs_insertRows_3713_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QSqlRelationalTableModel_Adaptor *)cls)->cbs_insertRows_3713_1 (arg1, arg2, arg3)); } @@ -2486,7 +2486,7 @@ static void _call_cbs_itemData_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QMap)((QSqlRelationalTableModel_Adaptor *)cls)->cbs_itemData_c2395_0 (arg1)); } @@ -2545,11 +2545,11 @@ static void _call_cbs_match_c7932_2 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - const QVariant &arg3 = args.read (heap); - int arg4 = args.read (heap); - QFlags arg5 = args.read > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QVariant &arg3 = gsi::arg_reader() (args, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (1, heap); + QFlags arg5 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (Qt::MatchFlags(Qt::MatchStartsWith|Qt::MatchWrap), heap); ret.write > ((QList)((QSqlRelationalTableModel_Adaptor *)cls)->cbs_match_c7932_2 (arg1, arg2, arg3, arg4, arg5)); } @@ -2572,7 +2572,7 @@ static void _call_cbs_mimeData_c3010_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); ret.write ((QMimeData *)((QSqlRelationalTableModel_Adaptor *)cls)->cbs_mimeData_c3010_0 (arg1)); } @@ -2706,7 +2706,7 @@ static void _call_cbs_relationModel_c767_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QSqlTableModel *)((QSqlRelationalTableModel_Adaptor *)cls)->cbs_relationModel_c767_0 (arg1)); } @@ -2733,9 +2733,9 @@ static void _call_cbs_removeColumns_3713_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QSqlRelationalTableModel_Adaptor *)cls)->cbs_removeColumns_3713_1 (arg1, arg2, arg3)); } @@ -2762,9 +2762,9 @@ static void _call_cbs_removeRows_3713_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QSqlRelationalTableModel_Adaptor *)cls)->cbs_removeRows_3713_1 (arg1, arg2, arg3)); } @@ -2822,7 +2822,7 @@ static void _call_cbs_revertRow_767_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlRelationalTableModel_Adaptor *)cls)->cbs_revertRow_767_0 (arg1); } @@ -2846,7 +2846,7 @@ static void _call_cbs_rowCount_c2395_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((int)((QSqlRelationalTableModel_Adaptor *)cls)->cbs_rowCount_c2395_1 (arg1)); } @@ -2925,9 +2925,9 @@ static void _call_cbs_setData_5065_1 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::EditRole, heap); ret.write ((bool)((QSqlRelationalTableModel_Adaptor *)cls)->cbs_setData_5065_1 (arg1, arg2, arg3)); } @@ -2950,7 +2950,7 @@ static void _call_cbs_setEditStrategy_3163_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlRelationalTableModel_Adaptor *)cls)->cbs_setEditStrategy_3163_0 (arg1); } @@ -2974,7 +2974,7 @@ static void _call_cbs_setFilter_2025_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlRelationalTableModel_Adaptor *)cls)->cbs_setFilter_2025_0 (arg1); } @@ -3004,10 +3004,10 @@ static void _call_cbs_setHeaderData_5242_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - const QVariant &arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + const QVariant &arg3 = gsi::arg_reader() (args, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::EditRole, heap); ret.write ((bool)((QSqlRelationalTableModel_Adaptor *)cls)->cbs_setHeaderData_5242_1 (arg1, arg2, arg3, arg4)); } @@ -3032,8 +3032,8 @@ static void _call_cbs_setItemData_5414_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QMap &arg2 = args.read & > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QMap &arg2 = gsi::arg_reader & >() (args, heap); ret.write ((bool)((QSqlRelationalTableModel_Adaptor *)cls)->cbs_setItemData_5414_0 (arg1, arg2)); } @@ -3115,8 +3115,8 @@ static void _call_cbs_setRelation_3187_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QSqlRelation &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QSqlRelation &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlRelationalTableModel_Adaptor *)cls)->cbs_setRelation_3187_0 (arg1, arg2); } @@ -3161,8 +3161,8 @@ static void _call_cbs_setSort_2340_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlRelationalTableModel_Adaptor *)cls)->cbs_setSort_2340_0 (arg1, arg2); } @@ -3186,7 +3186,7 @@ static void _call_cbs_setTable_2025_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlRelationalTableModel_Adaptor *)cls)->cbs_setTable_2025_0 (arg1); } @@ -3212,8 +3212,8 @@ static void _call_cbs_sort_2340_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlRelationalTableModel_Adaptor *)cls)->cbs_sort_2340_0 (arg1, arg2); } @@ -3237,7 +3237,7 @@ static void _call_cbs_span_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QSize)((QSqlRelationalTableModel_Adaptor *)cls)->cbs_span_c2395_0 (arg1)); } @@ -3298,7 +3298,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlRelationalTableModel_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -3324,8 +3324,8 @@ static void _call_cbs_updateRowInTable_2964_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QSqlRecord &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QSqlRecord &arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlRelationalTableModel_Adaptor *)cls)->cbs_updateRowInTable_2964_0 (arg1, arg2)); } diff --git a/src/gsiqt/qt4/QtSql/gsiDeclQSqlResult.cc b/src/gsiqt/qt4/QtSql/gsiDeclQSqlResult.cc index f467023ce..f5fef19fc 100644 --- a/src/gsiqt/qt4/QtSql/gsiDeclQSqlResult.cc +++ b/src/gsiqt/qt4/QtSql/gsiDeclQSqlResult.cc @@ -663,9 +663,9 @@ static void _call_cbs_bindValue_5596_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); - QFlags arg3 = args.read > (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); + QFlags arg3 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlResult_Adaptor *)cls)->cbs_bindValue_5596_0 (arg1, arg2, arg3); } @@ -693,9 +693,9 @@ static void _call_cbs_bindValue_6854_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); - QFlags arg3 = args.read > (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); + QFlags arg3 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlResult_Adaptor *)cls)->cbs_bindValue_6854_0 (arg1, arg2, arg3); } @@ -866,7 +866,7 @@ static void _call_cbs_data_767_0 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QSqlResult_Adaptor *)cls)->cbs_data_767_0 (arg1)); } @@ -969,7 +969,7 @@ static void _call_cbs_fetch_767_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlResult_Adaptor *)cls)->cbs_fetch_767_0 (arg1)); } @@ -1129,7 +1129,7 @@ static void _call_cbs_isNull_767_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlResult_Adaptor *)cls)->cbs_isNull_767_0 (arg1)); } @@ -1274,7 +1274,7 @@ static void _call_cbs_prepare_2025_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlResult_Adaptor *)cls)->cbs_prepare_2025_0 (arg1)); } @@ -1316,7 +1316,7 @@ static void _call_cbs_reset_2025_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlResult_Adaptor *)cls)->cbs_reset_2025_0 (arg1)); } @@ -1339,7 +1339,7 @@ static void _call_cbs_savePrepare_2025_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlResult_Adaptor *)cls)->cbs_savePrepare_2025_0 (arg1)); } @@ -1362,7 +1362,7 @@ static void _call_cbs_setActive_864_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlResult_Adaptor *)cls)->cbs_setActive_864_0 (arg1); } @@ -1386,7 +1386,7 @@ static void _call_cbs_setAt_767_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlResult_Adaptor *)cls)->cbs_setAt_767_0 (arg1); } @@ -1410,7 +1410,7 @@ static void _call_cbs_setForwardOnly_864_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlResult_Adaptor *)cls)->cbs_setForwardOnly_864_0 (arg1); } @@ -1434,7 +1434,7 @@ static void _call_cbs_setLastError_2220_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSqlError &arg1 = args.read (heap); + const QSqlError &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlResult_Adaptor *)cls)->cbs_setLastError_2220_0 (arg1); } @@ -1477,7 +1477,7 @@ static void _call_cbs_setQuery_2025_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlResult_Adaptor *)cls)->cbs_setQuery_2025_0 (arg1); } @@ -1501,7 +1501,7 @@ static void _call_cbs_setSelect_864_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlResult_Adaptor *)cls)->cbs_setSelect_864_0 (arg1); } @@ -1546,8 +1546,8 @@ static void _call_cbs_virtual_hook_1715_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - void *arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlResult_Adaptor *)cls)->cbs_virtual_hook_1715_0 (arg1, arg2); } diff --git a/src/gsiqt/qt4/QtSql/gsiDeclQSqlTableModel.cc b/src/gsiqt/qt4/QtSql/gsiDeclQSqlTableModel.cc index 4c9b197cf..1bc9843f5 100644 --- a/src/gsiqt/qt4/QtSql/gsiDeclQSqlTableModel.cc +++ b/src/gsiqt/qt4/QtSql/gsiDeclQSqlTableModel.cc @@ -1997,7 +1997,7 @@ static void _call_cbs_buddy_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QSqlTableModel_Adaptor *)cls)->cbs_buddy_c2395_0 (arg1)); } @@ -2020,7 +2020,7 @@ static void _call_cbs_canFetchMore_c2395_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QSqlTableModel_Adaptor *)cls)->cbs_canFetchMore_c2395_1 (arg1)); } @@ -2087,7 +2087,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlTableModel_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -2131,7 +2131,7 @@ static void _call_cbs_columnCount_c2395_1 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((int)((QSqlTableModel_Adaptor *)cls)->cbs_columnCount_c2395_1 (arg1)); } @@ -2226,7 +2226,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlTableModel_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -2252,8 +2252,8 @@ static void _call_cbs_data_c3054_1 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::DisplayRole, heap); ret.write ((QVariant)((QSqlTableModel_Adaptor *)cls)->cbs_data_c3054_1 (arg1, arg2)); } @@ -2324,7 +2324,7 @@ static void _call_cbs_deleteRowFromTable_767_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlTableModel_Adaptor *)cls)->cbs_deleteRowFromTable_767_0 (arg1)); } @@ -2365,7 +2365,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlTableModel_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -2397,11 +2397,11 @@ static void _call_cbs_dropMimeData_7425_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMimeData *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - const QModelIndex &arg5 = args.read (heap); + const QMimeData *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + const QModelIndex &arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlTableModel_Adaptor *)cls)->cbs_dropMimeData_7425_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -2551,7 +2551,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlTableModel_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -2576,8 +2576,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlTableModel_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -2600,7 +2600,7 @@ static void _call_cbs_fetchMore_2395_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlTableModel_Adaptor *)cls)->cbs_fetchMore_2395_1 (arg1); } @@ -2624,7 +2624,7 @@ static void _call_cbs_flags_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QFlags)((QSqlTableModel_Adaptor *)cls)->cbs_flags_c2395_0 (arg1)); } @@ -2651,9 +2651,9 @@ static void _call_cbs_headerData_c3231_1 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::DisplayRole, heap); ret.write ((QVariant)((QSqlTableModel_Adaptor *)cls)->cbs_headerData_c3231_1 (arg1, arg2, arg3)); } @@ -2704,9 +2704,9 @@ static void _call_cbs_index_c3713_1 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((QModelIndex)((QSqlTableModel_Adaptor *)cls)->cbs_index_c3713_1 (arg1, arg2, arg3)); } @@ -2751,9 +2751,9 @@ static void _call_cbs_insertColumns_3713_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QSqlTableModel_Adaptor *)cls)->cbs_insertColumns_3713_1 (arg1, arg2, arg3)); } @@ -2776,7 +2776,7 @@ static void _call_cbs_insertRowIntoTable_2305_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSqlRecord &arg1 = args.read (heap); + const QSqlRecord &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlTableModel_Adaptor *)cls)->cbs_insertRowIntoTable_2305_0 (arg1)); } @@ -2803,9 +2803,9 @@ static void _call_cbs_insertRows_3713_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QSqlTableModel_Adaptor *)cls)->cbs_insertRows_3713_1 (arg1, arg2, arg3)); } @@ -2828,7 +2828,7 @@ static void _call_cbs_itemData_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QMap)((QSqlTableModel_Adaptor *)cls)->cbs_itemData_c2395_0 (arg1)); } @@ -2887,11 +2887,11 @@ static void _call_cbs_match_c7932_2 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - const QVariant &arg3 = args.read (heap); - int arg4 = args.read (heap); - QFlags arg5 = args.read > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QVariant &arg3 = gsi::arg_reader() (args, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (1, heap); + QFlags arg5 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (Qt::MatchFlags(Qt::MatchStartsWith|Qt::MatchWrap), heap); ret.write > ((QList)((QSqlTableModel_Adaptor *)cls)->cbs_match_c7932_2 (arg1, arg2, arg3, arg4, arg5)); } @@ -2914,7 +2914,7 @@ static void _call_cbs_mimeData_c3010_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); ret.write ((QMimeData *)((QSqlTableModel_Adaptor *)cls)->cbs_mimeData_c3010_0 (arg1)); } @@ -3052,9 +3052,9 @@ static void _call_cbs_removeColumns_3713_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QSqlTableModel_Adaptor *)cls)->cbs_removeColumns_3713_1 (arg1, arg2, arg3)); } @@ -3081,9 +3081,9 @@ static void _call_cbs_removeRows_3713_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QSqlTableModel_Adaptor *)cls)->cbs_removeRows_3713_1 (arg1, arg2, arg3)); } @@ -3141,7 +3141,7 @@ static void _call_cbs_revertRow_767_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlTableModel_Adaptor *)cls)->cbs_revertRow_767_0 (arg1); } @@ -3165,7 +3165,7 @@ static void _call_cbs_rowCount_c2395_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((int)((QSqlTableModel_Adaptor *)cls)->cbs_rowCount_c2395_1 (arg1)); } @@ -3244,9 +3244,9 @@ static void _call_cbs_setData_5065_1 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::EditRole, heap); ret.write ((bool)((QSqlTableModel_Adaptor *)cls)->cbs_setData_5065_1 (arg1, arg2, arg3)); } @@ -3269,7 +3269,7 @@ static void _call_cbs_setEditStrategy_3163_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlTableModel_Adaptor *)cls)->cbs_setEditStrategy_3163_0 (arg1); } @@ -3293,7 +3293,7 @@ static void _call_cbs_setFilter_2025_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlTableModel_Adaptor *)cls)->cbs_setFilter_2025_0 (arg1); } @@ -3323,10 +3323,10 @@ static void _call_cbs_setHeaderData_5242_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - const QVariant &arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + const QVariant &arg3 = gsi::arg_reader() (args, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::EditRole, heap); ret.write ((bool)((QSqlTableModel_Adaptor *)cls)->cbs_setHeaderData_5242_1 (arg1, arg2, arg3, arg4)); } @@ -3351,8 +3351,8 @@ static void _call_cbs_setItemData_5414_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QMap &arg2 = args.read & > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QMap &arg2 = gsi::arg_reader & >() (args, heap); ret.write ((bool)((QSqlTableModel_Adaptor *)cls)->cbs_setItemData_5414_0 (arg1, arg2)); } @@ -3453,8 +3453,8 @@ static void _call_cbs_setSort_2340_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlTableModel_Adaptor *)cls)->cbs_setSort_2340_0 (arg1, arg2); } @@ -3478,7 +3478,7 @@ static void _call_cbs_setTable_2025_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlTableModel_Adaptor *)cls)->cbs_setTable_2025_0 (arg1); } @@ -3504,8 +3504,8 @@ static void _call_cbs_sort_2340_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlTableModel_Adaptor *)cls)->cbs_sort_2340_0 (arg1, arg2); } @@ -3529,7 +3529,7 @@ static void _call_cbs_span_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QSize)((QSqlTableModel_Adaptor *)cls)->cbs_span_c2395_0 (arg1)); } @@ -3590,7 +3590,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlTableModel_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -3616,8 +3616,8 @@ static void _call_cbs_updateRowInTable_2964_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QSqlRecord &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QSqlRecord &arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlTableModel_Adaptor *)cls)->cbs_updateRowInTable_2964_0 (arg1, arg2)); } diff --git a/src/gsiqt/qt4/QtUiTools/gsiDeclQUiLoader.cc b/src/gsiqt/qt4/QtUiTools/gsiDeclQUiLoader.cc index de88b505e..ea881d217 100644 --- a/src/gsiqt/qt4/QtUiTools/gsiDeclQUiLoader.cc +++ b/src/gsiqt/qt4/QtUiTools/gsiDeclQUiLoader.cc @@ -757,7 +757,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUiLoader_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -783,8 +783,8 @@ static void _call_cbs_createAction_3219_2 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + const QString &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); ret.write ((QAction *)((QUiLoader_Adaptor *)cls)->cbs_createAction_3219_2 (arg1, arg2)); } @@ -809,8 +809,8 @@ static void _call_cbs_createActionGroup_3219_2 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + const QString &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); ret.write ((QActionGroup *)((QUiLoader_Adaptor *)cls)->cbs_createActionGroup_3219_2 (arg1, arg2)); } @@ -837,9 +837,9 @@ static void _call_cbs_createLayout_5136_2 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - QObject *arg2 = args.read (heap); - const QString &arg3 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + QObject *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + const QString &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); ret.write ((QLayout *)((QUiLoader_Adaptor *)cls)->cbs_createLayout_5136_2 (arg1, arg2, arg3)); } @@ -866,9 +866,9 @@ static void _call_cbs_createWidget_5149_2 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - QWidget *arg2 = args.read (heap); - const QString &arg3 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + const QString &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); ret.write ((QWidget *)((QUiLoader_Adaptor *)cls)->cbs_createWidget_5149_2 (arg1, arg2, arg3)); } @@ -891,7 +891,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUiLoader_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -934,7 +934,7 @@ static void _call_cbs_disconnectNotify_1731_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUiLoader_Adaptor *)cls)->cbs_disconnectNotify_1731_0 (arg1); } @@ -958,7 +958,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QUiLoader_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -983,8 +983,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QUiLoader_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1039,7 +1039,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUiLoader_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt4/QtXml/gsiDeclQXmlContentHandler.cc b/src/gsiqt/qt4/QtXml/gsiDeclQXmlContentHandler.cc index a042eade2..56070deee 100644 --- a/src/gsiqt/qt4/QtXml/gsiDeclQXmlContentHandler.cc +++ b/src/gsiqt/qt4/QtXml/gsiDeclQXmlContentHandler.cc @@ -555,7 +555,7 @@ static void _call_cbs_characters_2025_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlContentHandler_Adaptor *)cls)->cbs_characters_2025_0 (arg1)); } @@ -601,9 +601,9 @@ static void _call_cbs_endElement_5859_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QString &arg3 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlContentHandler_Adaptor *)cls)->cbs_endElement_5859_0 (arg1, arg2, arg3)); } @@ -626,7 +626,7 @@ static void _call_cbs_endPrefixMapping_2025_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlContentHandler_Adaptor *)cls)->cbs_endPrefixMapping_2025_0 (arg1)); } @@ -668,7 +668,7 @@ static void _call_cbs_ignorableWhitespace_2025_0 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlContentHandler_Adaptor *)cls)->cbs_ignorableWhitespace_2025_0 (arg1)); } @@ -693,8 +693,8 @@ static void _call_cbs_processingInstruction_3942_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlContentHandler_Adaptor *)cls)->cbs_processingInstruction_3942_0 (arg1, arg2)); } @@ -717,7 +717,7 @@ static void _call_cbs_setDocumentLocator_1732_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QXmlLocator *arg1 = args.read (heap); + QXmlLocator *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlContentHandler_Adaptor *)cls)->cbs_setDocumentLocator_1732_0 (arg1); } @@ -741,7 +741,7 @@ static void _call_cbs_skippedEntity_2025_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlContentHandler_Adaptor *)cls)->cbs_skippedEntity_2025_0 (arg1)); } @@ -789,10 +789,10 @@ static void _call_cbs_startElement_8513_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QString &arg3 = args.read (heap); - const QXmlAttributes &arg4 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); + const QXmlAttributes &arg4 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlContentHandler_Adaptor *)cls)->cbs_startElement_8513_0 (arg1, arg2, arg3, arg4)); } @@ -817,8 +817,8 @@ static void _call_cbs_startPrefixMapping_3942_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlContentHandler_Adaptor *)cls)->cbs_startPrefixMapping_3942_0 (arg1, arg2)); } diff --git a/src/gsiqt/qt4/QtXml/gsiDeclQXmlDTDHandler.cc b/src/gsiqt/qt4/QtXml/gsiDeclQXmlDTDHandler.cc index 0eea6f4f6..17f1d130e 100644 --- a/src/gsiqt/qt4/QtXml/gsiDeclQXmlDTDHandler.cc +++ b/src/gsiqt/qt4/QtXml/gsiDeclQXmlDTDHandler.cc @@ -244,9 +244,9 @@ static void _call_cbs_notationDecl_5859_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QString &arg3 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlDTDHandler_Adaptor *)cls)->cbs_notationDecl_5859_0 (arg1, arg2, arg3)); } @@ -275,10 +275,10 @@ static void _call_cbs_unparsedEntityDecl_7776_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QString &arg3 = args.read (heap); - const QString &arg4 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); + const QString &arg4 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlDTDHandler_Adaptor *)cls)->cbs_unparsedEntityDecl_7776_0 (arg1, arg2, arg3, arg4)); } diff --git a/src/gsiqt/qt4/QtXml/gsiDeclQXmlDeclHandler.cc b/src/gsiqt/qt4/QtXml/gsiDeclQXmlDeclHandler.cc index 1b0cb16ca..27edb0d75 100644 --- a/src/gsiqt/qt4/QtXml/gsiDeclQXmlDeclHandler.cc +++ b/src/gsiqt/qt4/QtXml/gsiDeclQXmlDeclHandler.cc @@ -274,11 +274,11 @@ static void _call_cbs_attributeDecl_9693_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QString &arg3 = args.read (heap); - const QString &arg4 = args.read (heap); - const QString &arg5 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); + const QString &arg4 = gsi::arg_reader() (args, heap); + const QString &arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlDeclHandler_Adaptor *)cls)->cbs_attributeDecl_9693_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -324,9 +324,9 @@ static void _call_cbs_externalEntityDecl_5859_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QString &arg3 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlDeclHandler_Adaptor *)cls)->cbs_externalEntityDecl_5859_0 (arg1, arg2, arg3)); } @@ -351,8 +351,8 @@ static void _call_cbs_internalEntityDecl_3942_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlDeclHandler_Adaptor *)cls)->cbs_internalEntityDecl_3942_0 (arg1, arg2)); } diff --git a/src/gsiqt/qt4/QtXml/gsiDeclQXmlDefaultHandler.cc b/src/gsiqt/qt4/QtXml/gsiDeclQXmlDefaultHandler.cc index 32e5bc968..308618cde 100644 --- a/src/gsiqt/qt4/QtXml/gsiDeclQXmlDefaultHandler.cc +++ b/src/gsiqt/qt4/QtXml/gsiDeclQXmlDefaultHandler.cc @@ -1279,11 +1279,11 @@ static void _call_cbs_attributeDecl_9693_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QString &arg3 = args.read (heap); - const QString &arg4 = args.read (heap); - const QString &arg5 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); + const QString &arg4 = gsi::arg_reader() (args, heap); + const QString &arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlDefaultHandler_Adaptor *)cls)->cbs_attributeDecl_9693_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -1306,7 +1306,7 @@ static void _call_cbs_characters_2025_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlDefaultHandler_Adaptor *)cls)->cbs_characters_2025_0 (arg1)); } @@ -1329,7 +1329,7 @@ static void _call_cbs_comment_2025_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlDefaultHandler_Adaptor *)cls)->cbs_comment_2025_0 (arg1)); } @@ -1413,9 +1413,9 @@ static void _call_cbs_endElement_5859_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QString &arg3 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlDefaultHandler_Adaptor *)cls)->cbs_endElement_5859_0 (arg1, arg2, arg3)); } @@ -1438,7 +1438,7 @@ static void _call_cbs_endEntity_2025_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlDefaultHandler_Adaptor *)cls)->cbs_endEntity_2025_0 (arg1)); } @@ -1461,7 +1461,7 @@ static void _call_cbs_endPrefixMapping_2025_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlDefaultHandler_Adaptor *)cls)->cbs_endPrefixMapping_2025_0 (arg1)); } @@ -1484,7 +1484,7 @@ static void _call_cbs_error_3149_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlParseException &arg1 = args.read (heap); + const QXmlParseException &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlDefaultHandler_Adaptor *)cls)->cbs_error_3149_0 (arg1)); } @@ -1530,9 +1530,9 @@ static void _call_cbs_externalEntityDecl_5859_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QString &arg3 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlDefaultHandler_Adaptor *)cls)->cbs_externalEntityDecl_5859_0 (arg1, arg2, arg3)); } @@ -1555,7 +1555,7 @@ static void _call_cbs_fatalError_3149_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlParseException &arg1 = args.read (heap); + const QXmlParseException &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlDefaultHandler_Adaptor *)cls)->cbs_fatalError_3149_0 (arg1)); } @@ -1578,7 +1578,7 @@ static void _call_cbs_ignorableWhitespace_2025_0 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlDefaultHandler_Adaptor *)cls)->cbs_ignorableWhitespace_2025_0 (arg1)); } @@ -1603,8 +1603,8 @@ static void _call_cbs_internalEntityDecl_3942_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlDefaultHandler_Adaptor *)cls)->cbs_internalEntityDecl_3942_0 (arg1, arg2)); } @@ -1631,9 +1631,9 @@ static void _call_cbs_notationDecl_5859_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QString &arg3 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlDefaultHandler_Adaptor *)cls)->cbs_notationDecl_5859_0 (arg1, arg2, arg3)); } @@ -1658,8 +1658,8 @@ static void _call_cbs_processingInstruction_3942_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlDefaultHandler_Adaptor *)cls)->cbs_processingInstruction_3942_0 (arg1, arg2)); } @@ -1682,7 +1682,7 @@ static void _call_cbs_setDocumentLocator_1732_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QXmlLocator *arg1 = args.read (heap); + QXmlLocator *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlDefaultHandler_Adaptor *)cls)->cbs_setDocumentLocator_1732_0 (arg1); } @@ -1706,7 +1706,7 @@ static void _call_cbs_skippedEntity_2025_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlDefaultHandler_Adaptor *)cls)->cbs_skippedEntity_2025_0 (arg1)); } @@ -1752,9 +1752,9 @@ static void _call_cbs_startDTD_5859_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QString &arg3 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlDefaultHandler_Adaptor *)cls)->cbs_startDTD_5859_0 (arg1, arg2, arg3)); } @@ -1802,10 +1802,10 @@ static void _call_cbs_startElement_8513_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QString &arg3 = args.read (heap); - const QXmlAttributes &arg4 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); + const QXmlAttributes &arg4 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlDefaultHandler_Adaptor *)cls)->cbs_startElement_8513_0 (arg1, arg2, arg3, arg4)); } @@ -1828,7 +1828,7 @@ static void _call_cbs_startEntity_2025_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlDefaultHandler_Adaptor *)cls)->cbs_startEntity_2025_0 (arg1)); } @@ -1853,8 +1853,8 @@ static void _call_cbs_startPrefixMapping_3942_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlDefaultHandler_Adaptor *)cls)->cbs_startPrefixMapping_3942_0 (arg1, arg2)); } @@ -1883,10 +1883,10 @@ static void _call_cbs_unparsedEntityDecl_7776_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QString &arg3 = args.read (heap); - const QString &arg4 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); + const QString &arg4 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlDefaultHandler_Adaptor *)cls)->cbs_unparsedEntityDecl_7776_0 (arg1, arg2, arg3, arg4)); } @@ -1909,7 +1909,7 @@ static void _call_cbs_warning_3149_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlParseException &arg1 = args.read (heap); + const QXmlParseException &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlDefaultHandler_Adaptor *)cls)->cbs_warning_3149_0 (arg1)); } diff --git a/src/gsiqt/qt4/QtXml/gsiDeclQXmlErrorHandler.cc b/src/gsiqt/qt4/QtXml/gsiDeclQXmlErrorHandler.cc index da3253fe9..ec00237ef 100644 --- a/src/gsiqt/qt4/QtXml/gsiDeclQXmlErrorHandler.cc +++ b/src/gsiqt/qt4/QtXml/gsiDeclQXmlErrorHandler.cc @@ -239,7 +239,7 @@ static void _call_cbs_error_3149_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlParseException &arg1 = args.read (heap); + const QXmlParseException &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlErrorHandler_Adaptor *)cls)->cbs_error_3149_0 (arg1)); } @@ -281,7 +281,7 @@ static void _call_cbs_fatalError_3149_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlParseException &arg1 = args.read (heap); + const QXmlParseException &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlErrorHandler_Adaptor *)cls)->cbs_fatalError_3149_0 (arg1)); } @@ -304,7 +304,7 @@ static void _call_cbs_warning_3149_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlParseException &arg1 = args.read (heap); + const QXmlParseException &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlErrorHandler_Adaptor *)cls)->cbs_warning_3149_0 (arg1)); } diff --git a/src/gsiqt/qt4/QtXml/gsiDeclQXmlInputSource.cc b/src/gsiqt/qt4/QtXml/gsiDeclQXmlInputSource.cc index c0d63dc2e..85b77d953 100644 --- a/src/gsiqt/qt4/QtXml/gsiDeclQXmlInputSource.cc +++ b/src/gsiqt/qt4/QtXml/gsiDeclQXmlInputSource.cc @@ -344,8 +344,8 @@ static void _call_cbs_fromRawData_3065_1 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - bool arg2 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (false, heap); ret.write ((QString)((QXmlInputSource_Adaptor *)cls)->cbs_fromRawData_3065_1 (arg1, arg2)); } @@ -407,7 +407,7 @@ static void _call_cbs_setData_2025_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlInputSource_Adaptor *)cls)->cbs_setData_2025_0 (arg1); } diff --git a/src/gsiqt/qt4/QtXml/gsiDeclQXmlLexicalHandler.cc b/src/gsiqt/qt4/QtXml/gsiDeclQXmlLexicalHandler.cc index 584b5b1d4..bc2911bf1 100644 --- a/src/gsiqt/qt4/QtXml/gsiDeclQXmlLexicalHandler.cc +++ b/src/gsiqt/qt4/QtXml/gsiDeclQXmlLexicalHandler.cc @@ -379,7 +379,7 @@ static void _call_cbs_comment_2025_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlLexicalHandler_Adaptor *)cls)->cbs_comment_2025_0 (arg1)); } @@ -440,7 +440,7 @@ static void _call_cbs_endEntity_2025_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlLexicalHandler_Adaptor *)cls)->cbs_endEntity_2025_0 (arg1)); } @@ -505,9 +505,9 @@ static void _call_cbs_startDTD_5859_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QString &arg3 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlLexicalHandler_Adaptor *)cls)->cbs_startDTD_5859_0 (arg1, arg2, arg3)); } @@ -530,7 +530,7 @@ static void _call_cbs_startEntity_2025_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlLexicalHandler_Adaptor *)cls)->cbs_startEntity_2025_0 (arg1)); } diff --git a/src/gsiqt/qt4/QtXml/gsiDeclQXmlSimpleReader.cc b/src/gsiqt/qt4/QtXml/gsiDeclQXmlSimpleReader.cc index 184fcaa0e..e7b29ff30 100644 --- a/src/gsiqt/qt4/QtXml/gsiDeclQXmlSimpleReader.cc +++ b/src/gsiqt/qt4/QtXml/gsiDeclQXmlSimpleReader.cc @@ -952,8 +952,8 @@ static void _call_cbs_feature_c2967_1 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - bool *arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + bool *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((bool)((QXmlSimpleReader_Adaptor *)cls)->cbs_feature_c2967_1 (arg1, arg2)); } @@ -976,7 +976,7 @@ static void _call_cbs_hasFeature_c2025_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlSimpleReader_Adaptor *)cls)->cbs_hasFeature_c2025_0 (arg1)); } @@ -999,7 +999,7 @@ static void _call_cbs_hasProperty_c2025_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlSimpleReader_Adaptor *)cls)->cbs_hasProperty_c2025_0 (arg1)); } @@ -1041,7 +1041,7 @@ static void _call_cbs_parse_2856_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlInputSource *arg1 = args.read (heap); + const QXmlInputSource *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlSimpleReader_Adaptor *)cls)->cbs_parse_2856_0 (arg1)); } @@ -1066,8 +1066,8 @@ static void _call_cbs_parse_3612_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlInputSource *arg1 = args.read (heap); - bool arg2 = args.read (heap); + const QXmlInputSource *arg1 = gsi::arg_reader() (args, heap); + bool arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlSimpleReader_Adaptor *)cls)->cbs_parse_3612_0 (arg1, arg2)); } @@ -1111,8 +1111,8 @@ static void _call_cbs_property_c2967_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - bool *arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + bool *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((void *)((QXmlSimpleReader_Adaptor *)cls)->cbs_property_c2967_1 (arg1, arg2)); } @@ -1135,7 +1135,7 @@ static void _call_cbs_setContentHandler_2441_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QXmlContentHandler *arg1 = args.read (heap); + QXmlContentHandler *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlSimpleReader_Adaptor *)cls)->cbs_setContentHandler_2441_0 (arg1); } @@ -1159,7 +1159,7 @@ static void _call_cbs_setDTDHandler_1930_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QXmlDTDHandler *arg1 = args.read (heap); + QXmlDTDHandler *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlSimpleReader_Adaptor *)cls)->cbs_setDTDHandler_1930_0 (arg1); } @@ -1183,7 +1183,7 @@ static void _call_cbs_setDeclHandler_2086_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QXmlDeclHandler *arg1 = args.read (heap); + QXmlDeclHandler *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlSimpleReader_Adaptor *)cls)->cbs_setDeclHandler_2086_0 (arg1); } @@ -1207,7 +1207,7 @@ static void _call_cbs_setEntityResolver_2495_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QXmlEntityResolver *arg1 = args.read (heap); + QXmlEntityResolver *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlSimpleReader_Adaptor *)cls)->cbs_setEntityResolver_2495_0 (arg1); } @@ -1231,7 +1231,7 @@ static void _call_cbs_setErrorHandler_2232_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QXmlErrorHandler *arg1 = args.read (heap); + QXmlErrorHandler *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlSimpleReader_Adaptor *)cls)->cbs_setErrorHandler_2232_0 (arg1); } @@ -1257,8 +1257,8 @@ static void _call_cbs_setFeature_2781_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - bool arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + bool arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlSimpleReader_Adaptor *)cls)->cbs_setFeature_2781_0 (arg1, arg2); } @@ -1282,7 +1282,7 @@ static void _call_cbs_setLexicalHandler_2416_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QXmlLexicalHandler *arg1 = args.read (heap); + QXmlLexicalHandler *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlSimpleReader_Adaptor *)cls)->cbs_setLexicalHandler_2416_0 (arg1); } @@ -1308,8 +1308,8 @@ static void _call_cbs_setProperty_2973_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - void *arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlSimpleReader_Adaptor *)cls)->cbs_setProperty_2973_0 (arg1, arg2); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQAbstractAnimation.cc b/src/gsiqt/qt5/QtCore/gsiDeclQAbstractAnimation.cc index ea426fceb..9215985e5 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQAbstractAnimation.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQAbstractAnimation.cc @@ -704,7 +704,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractAnimation_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -746,7 +746,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractAnimation_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -806,7 +806,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractAnimation_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -849,7 +849,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractAnimation_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -874,8 +874,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractAnimation_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1015,7 +1015,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractAnimation_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -1039,7 +1039,7 @@ static void _call_cbs_updateCurrentTime_767_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractAnimation_Adaptor *)cls)->cbs_updateCurrentTime_767_0 (arg1); } @@ -1063,7 +1063,7 @@ static void _call_cbs_updateDirection_3310_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractAnimation_Adaptor *)cls)->cbs_updateDirection_3310_0 (arg1); } @@ -1089,8 +1089,8 @@ static void _call_cbs_updateState_5680_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractAnimation_Adaptor *)cls)->cbs_updateState_5680_0 (arg1, arg2); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQAbstractEventDispatcher.cc b/src/gsiqt/qt5/QtCore/gsiDeclQAbstractEventDispatcher.cc index 4087dd4f3..0777c12ff 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQAbstractEventDispatcher.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQAbstractEventDispatcher.cc @@ -980,7 +980,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractEventDispatcher_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1024,7 +1024,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractEventDispatcher_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1066,7 +1066,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractEventDispatcher_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1090,7 +1090,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractEventDispatcher_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1115,8 +1115,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractEventDispatcher_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1234,7 +1234,7 @@ static void _call_cbs_processEvents_3995_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); ret.write ((bool)((QAbstractEventDispatcher_Adaptor *)cls)->cbs_processEvents_3995_0 (arg1)); } @@ -1275,7 +1275,7 @@ static void _call_cbs_registerSocketNotifier_2152_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QSocketNotifier *arg1 = args.read (heap); + QSocketNotifier *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractEventDispatcher_Adaptor *)cls)->cbs_registerSocketNotifier_2152_0 (arg1); } @@ -1305,10 +1305,10 @@ static void _call_cbs_registerTimer_4192_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const qt_gsi::Converter::target_type & arg3 = args.read::target_type & > (heap); - QObject *arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg3 = gsi::arg_reader::target_type & >() (args, heap); + QObject *arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractEventDispatcher_Adaptor *)cls)->cbs_registerTimer_4192_0 (arg1, arg2, arg3, arg4); } @@ -1332,7 +1332,7 @@ static void _call_cbs_registeredTimers_c1302_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); ret.write > ((QList)((QAbstractEventDispatcher_Adaptor *)cls)->cbs_registeredTimers_c1302_0 (arg1)); } @@ -1355,7 +1355,7 @@ static void _call_cbs_remainingTime_767_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QAbstractEventDispatcher_Adaptor *)cls)->cbs_remainingTime_767_0 (arg1)); } @@ -1426,7 +1426,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractEventDispatcher_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -1450,7 +1450,7 @@ static void _call_cbs_unregisterSocketNotifier_2152_0 (const qt_gsi::GenericMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QSocketNotifier *arg1 = args.read (heap); + QSocketNotifier *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractEventDispatcher_Adaptor *)cls)->cbs_unregisterSocketNotifier_2152_0 (arg1); } @@ -1474,7 +1474,7 @@ static void _call_cbs_unregisterTimer_767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractEventDispatcher_Adaptor *)cls)->cbs_unregisterTimer_767_0 (arg1)); } @@ -1497,7 +1497,7 @@ static void _call_cbs_unregisterTimers_1302_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractEventDispatcher_Adaptor *)cls)->cbs_unregisterTimers_1302_0 (arg1)); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQAbstractItemModel.cc b/src/gsiqt/qt5/QtCore/gsiDeclQAbstractItemModel.cc index 98816ba9f..c8ff2d8ba 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQAbstractItemModel.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQAbstractItemModel.cc @@ -2322,7 +2322,7 @@ static void _call_cbs_buddy_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QAbstractItemModel_Adaptor *)cls)->cbs_buddy_c2395_0 (arg1)); } @@ -2353,11 +2353,11 @@ static void _call_cbs_canDropMimeData_c7425_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMimeData *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - const QModelIndex &arg5 = args.read (heap); + const QMimeData *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + const QModelIndex &arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractItemModel_Adaptor *)cls)->cbs_canDropMimeData_c7425_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -2380,7 +2380,7 @@ static void _call_cbs_canFetchMore_c2395_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractItemModel_Adaptor *)cls)->cbs_canFetchMore_c2395_0 (arg1)); } @@ -2447,7 +2447,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemModel_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -2471,7 +2471,7 @@ static void _call_cbs_columnCount_c2395_1 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((int)((QAbstractItemModel_Adaptor *)cls)->cbs_columnCount_c2395_1 (arg1)); } @@ -2698,7 +2698,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemModel_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -2724,8 +2724,8 @@ static void _call_cbs_data_c3054_1 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::DisplayRole, heap); ret.write ((QVariant)((QAbstractItemModel_Adaptor *)cls)->cbs_data_c3054_1 (arg1, arg2)); } @@ -2817,7 +2817,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemModel_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -2849,11 +2849,11 @@ static void _call_cbs_dropMimeData_7425_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMimeData *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - const QModelIndex &arg5 = args.read (heap); + const QMimeData *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + const QModelIndex &arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractItemModel_Adaptor *)cls)->cbs_dropMimeData_7425_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -3003,7 +3003,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractItemModel_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -3028,8 +3028,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractItemModel_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -3052,7 +3052,7 @@ static void _call_cbs_fetchMore_2395_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemModel_Adaptor *)cls)->cbs_fetchMore_2395_0 (arg1); } @@ -3076,7 +3076,7 @@ static void _call_cbs_flags_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QFlags)((QAbstractItemModel_Adaptor *)cls)->cbs_flags_c2395_0 (arg1)); } @@ -3099,7 +3099,7 @@ static void _call_cbs_hasChildren_c2395_1 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QAbstractItemModel_Adaptor *)cls)->cbs_hasChildren_c2395_1 (arg1)); } @@ -3126,9 +3126,9 @@ static void _call_cbs_headerData_c3231_1 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::DisplayRole, heap); ret.write ((QVariant)((QAbstractItemModel_Adaptor *)cls)->cbs_headerData_c3231_1 (arg1, arg2, arg3)); } @@ -3179,9 +3179,9 @@ static void _call_cbs_index_c3713_1 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((QModelIndex)((QAbstractItemModel_Adaptor *)cls)->cbs_index_c3713_1 (arg1, arg2, arg3)); } @@ -3208,9 +3208,9 @@ static void _call_cbs_insertColumns_3713_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QAbstractItemModel_Adaptor *)cls)->cbs_insertColumns_3713_1 (arg1, arg2, arg3)); } @@ -3237,9 +3237,9 @@ static void _call_cbs_insertRows_3713_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QAbstractItemModel_Adaptor *)cls)->cbs_insertRows_3713_1 (arg1, arg2, arg3)); } @@ -3280,7 +3280,7 @@ static void _call_cbs_itemData_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QMap)((QAbstractItemModel_Adaptor *)cls)->cbs_itemData_c2395_0 (arg1)); } @@ -3353,11 +3353,11 @@ static void _call_cbs_match_c7932_2 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - const QVariant &arg3 = args.read (heap); - int arg4 = args.read (heap); - QFlags arg5 = args.read > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QVariant &arg3 = gsi::arg_reader() (args, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (1, heap); + QFlags arg5 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (Qt::MatchFlags(Qt::MatchStartsWith|Qt::MatchWrap), heap); ret.write > ((QList)((QAbstractItemModel_Adaptor *)cls)->cbs_match_c7932_2 (arg1, arg2, arg3, arg4, arg5)); } @@ -3380,7 +3380,7 @@ static void _call_cbs_mimeData_c3010_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); ret.write ((QMimeData *)((QAbstractItemModel_Adaptor *)cls)->cbs_mimeData_c3010_0 (arg1)); } @@ -3458,11 +3458,11 @@ static void _call_cbs_moveColumns_6659_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - const QModelIndex &arg4 = args.read (heap); - int arg5 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QModelIndex &arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractItemModel_Adaptor *)cls)->cbs_moveColumns_6659_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -3493,11 +3493,11 @@ static void _call_cbs_moveRows_6659_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - const QModelIndex &arg4 = args.read (heap); - int arg5 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QModelIndex &arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractItemModel_Adaptor *)cls)->cbs_moveRows_6659_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -3538,7 +3538,7 @@ static void _call_cbs_parent_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QAbstractItemModel_Adaptor *)cls)->cbs_parent_c2395_0 (arg1)); } @@ -3597,9 +3597,9 @@ static void _call_cbs_removeColumns_3713_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QAbstractItemModel_Adaptor *)cls)->cbs_removeColumns_3713_1 (arg1, arg2, arg3)); } @@ -3626,9 +3626,9 @@ static void _call_cbs_removeRows_3713_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QAbstractItemModel_Adaptor *)cls)->cbs_removeRows_3713_1 (arg1, arg2, arg3)); } @@ -3705,7 +3705,7 @@ static void _call_cbs_rowCount_c2395_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((int)((QAbstractItemModel_Adaptor *)cls)->cbs_rowCount_c2395_1 (arg1)); } @@ -3916,9 +3916,9 @@ static void _call_cbs_setData_5065_1 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::EditRole, heap); ret.write ((bool)((QAbstractItemModel_Adaptor *)cls)->cbs_setData_5065_1 (arg1, arg2, arg3)); } @@ -3947,10 +3947,10 @@ static void _call_cbs_setHeaderData_5242_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - const QVariant &arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + const QVariant &arg3 = gsi::arg_reader() (args, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::EditRole, heap); ret.write ((bool)((QAbstractItemModel_Adaptor *)cls)->cbs_setHeaderData_5242_1 (arg1, arg2, arg3, arg4)); } @@ -3975,8 +3975,8 @@ static void _call_cbs_setItemData_5414_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QMap &arg2 = args.read & > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QMap &arg2 = gsi::arg_reader & >() (args, heap); ret.write ((bool)((QAbstractItemModel_Adaptor *)cls)->cbs_setItemData_5414_0 (arg1, arg2)); } @@ -4003,9 +4003,9 @@ static void _call_cbs_sibling_c3713_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QAbstractItemModel_Adaptor *)cls)->cbs_sibling_c3713_0 (arg1, arg2, arg3)); } @@ -4030,8 +4030,8 @@ static void _call_cbs_sort_2340_1 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::AscendingOrder), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemModel_Adaptor *)cls)->cbs_sort_2340_1 (arg1, arg2); } @@ -4055,7 +4055,7 @@ static void _call_cbs_span_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QSize)((QAbstractItemModel_Adaptor *)cls)->cbs_span_c2395_0 (arg1)); } @@ -4135,7 +4135,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemModel_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQAbstractListModel.cc b/src/gsiqt/qt5/QtCore/gsiDeclQAbstractListModel.cc index 92d9e6496..dfe82dc04 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQAbstractListModel.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQAbstractListModel.cc @@ -1389,7 +1389,7 @@ static void _call_cbs_buddy_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QAbstractListModel_Adaptor *)cls)->cbs_buddy_c2395_0 (arg1)); } @@ -1420,11 +1420,11 @@ static void _call_cbs_canDropMimeData_c7425_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMimeData *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - const QModelIndex &arg5 = args.read (heap); + const QMimeData *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + const QModelIndex &arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractListModel_Adaptor *)cls)->cbs_canDropMimeData_c7425_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -1447,7 +1447,7 @@ static void _call_cbs_canFetchMore_c2395_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractListModel_Adaptor *)cls)->cbs_canFetchMore_c2395_0 (arg1)); } @@ -1514,7 +1514,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractListModel_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1742,7 +1742,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractListModel_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1768,8 +1768,8 @@ static void _call_cbs_data_c3054_1 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::DisplayRole, heap); ret.write ((QVariant)((QAbstractListModel_Adaptor *)cls)->cbs_data_c3054_1 (arg1, arg2)); } @@ -1861,7 +1861,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractListModel_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1893,11 +1893,11 @@ static void _call_cbs_dropMimeData_7425_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMimeData *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - const QModelIndex &arg5 = args.read (heap); + const QMimeData *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + const QModelIndex &arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractListModel_Adaptor *)cls)->cbs_dropMimeData_7425_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -2047,7 +2047,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractListModel_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -2072,8 +2072,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractListModel_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -2096,7 +2096,7 @@ static void _call_cbs_fetchMore_2395_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractListModel_Adaptor *)cls)->cbs_fetchMore_2395_0 (arg1); } @@ -2120,7 +2120,7 @@ static void _call_cbs_flags_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QFlags)((QAbstractListModel_Adaptor *)cls)->cbs_flags_c2395_0 (arg1)); } @@ -2147,9 +2147,9 @@ static void _call_cbs_headerData_c3231_1 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::DisplayRole, heap); ret.write ((QVariant)((QAbstractListModel_Adaptor *)cls)->cbs_headerData_c3231_1 (arg1, arg2, arg3)); } @@ -2200,9 +2200,9 @@ static void _call_cbs_index_c3713_2 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((QModelIndex)((QAbstractListModel_Adaptor *)cls)->cbs_index_c3713_2 (arg1, arg2, arg3)); } @@ -2229,9 +2229,9 @@ static void _call_cbs_insertColumns_3713_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QAbstractListModel_Adaptor *)cls)->cbs_insertColumns_3713_1 (arg1, arg2, arg3)); } @@ -2258,9 +2258,9 @@ static void _call_cbs_insertRows_3713_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QAbstractListModel_Adaptor *)cls)->cbs_insertRows_3713_1 (arg1, arg2, arg3)); } @@ -2301,7 +2301,7 @@ static void _call_cbs_itemData_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QMap)((QAbstractListModel_Adaptor *)cls)->cbs_itemData_c2395_0 (arg1)); } @@ -2374,11 +2374,11 @@ static void _call_cbs_match_c7932_2 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - const QVariant &arg3 = args.read (heap); - int arg4 = args.read (heap); - QFlags arg5 = args.read > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QVariant &arg3 = gsi::arg_reader() (args, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (1, heap); + QFlags arg5 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (Qt::MatchFlags(Qt::MatchStartsWith|Qt::MatchWrap), heap); ret.write > ((QList)((QAbstractListModel_Adaptor *)cls)->cbs_match_c7932_2 (arg1, arg2, arg3, arg4, arg5)); } @@ -2401,7 +2401,7 @@ static void _call_cbs_mimeData_c3010_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); ret.write ((QMimeData *)((QAbstractListModel_Adaptor *)cls)->cbs_mimeData_c3010_0 (arg1)); } @@ -2479,11 +2479,11 @@ static void _call_cbs_moveColumns_6659_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - const QModelIndex &arg4 = args.read (heap); - int arg5 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QModelIndex &arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractListModel_Adaptor *)cls)->cbs_moveColumns_6659_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -2514,11 +2514,11 @@ static void _call_cbs_moveRows_6659_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - const QModelIndex &arg4 = args.read (heap); - int arg5 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QModelIndex &arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractListModel_Adaptor *)cls)->cbs_moveRows_6659_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -2595,9 +2595,9 @@ static void _call_cbs_removeColumns_3713_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QAbstractListModel_Adaptor *)cls)->cbs_removeColumns_3713_1 (arg1, arg2, arg3)); } @@ -2624,9 +2624,9 @@ static void _call_cbs_removeRows_3713_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QAbstractListModel_Adaptor *)cls)->cbs_removeRows_3713_1 (arg1, arg2, arg3)); } @@ -2703,7 +2703,7 @@ static void _call_cbs_rowCount_c2395_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((int)((QAbstractListModel_Adaptor *)cls)->cbs_rowCount_c2395_1 (arg1)); } @@ -2914,9 +2914,9 @@ static void _call_cbs_setData_5065_1 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::EditRole, heap); ret.write ((bool)((QAbstractListModel_Adaptor *)cls)->cbs_setData_5065_1 (arg1, arg2, arg3)); } @@ -2945,10 +2945,10 @@ static void _call_cbs_setHeaderData_5242_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - const QVariant &arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + const QVariant &arg3 = gsi::arg_reader() (args, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::EditRole, heap); ret.write ((bool)((QAbstractListModel_Adaptor *)cls)->cbs_setHeaderData_5242_1 (arg1, arg2, arg3, arg4)); } @@ -2973,8 +2973,8 @@ static void _call_cbs_setItemData_5414_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QMap &arg2 = args.read & > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QMap &arg2 = gsi::arg_reader & >() (args, heap); ret.write ((bool)((QAbstractListModel_Adaptor *)cls)->cbs_setItemData_5414_0 (arg1, arg2)); } @@ -3001,9 +3001,9 @@ static void _call_cbs_sibling_c3713_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QAbstractListModel_Adaptor *)cls)->cbs_sibling_c3713_0 (arg1, arg2, arg3)); } @@ -3028,8 +3028,8 @@ static void _call_cbs_sort_2340_1 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::AscendingOrder), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractListModel_Adaptor *)cls)->cbs_sort_2340_1 (arg1, arg2); } @@ -3053,7 +3053,7 @@ static void _call_cbs_span_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QSize)((QAbstractListModel_Adaptor *)cls)->cbs_span_c2395_0 (arg1)); } @@ -3133,7 +3133,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractListModel_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQAbstractNativeEventFilter.cc b/src/gsiqt/qt5/QtCore/gsiDeclQAbstractNativeEventFilter.cc index f7e029fe8..2d649964d 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQAbstractNativeEventFilter.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQAbstractNativeEventFilter.cc @@ -144,9 +144,9 @@ static void _call_cbs_nativeEventFilter_4678_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - long int *arg3 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + long int *arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractNativeEventFilter_Adaptor *)cls)->cbs_nativeEventFilter_4678_0 (arg1, arg2, arg3)); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQAbstractProxyModel.cc b/src/gsiqt/qt5/QtCore/gsiDeclQAbstractProxyModel.cc index 58c3fdca4..bc4cfd072 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQAbstractProxyModel.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQAbstractProxyModel.cc @@ -2011,7 +2011,7 @@ static void _call_cbs_buddy_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QAbstractProxyModel_Adaptor *)cls)->cbs_buddy_c2395_0 (arg1)); } @@ -2042,11 +2042,11 @@ static void _call_cbs_canDropMimeData_c7425_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMimeData *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - const QModelIndex &arg5 = args.read (heap); + const QMimeData *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + const QModelIndex &arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractProxyModel_Adaptor *)cls)->cbs_canDropMimeData_c7425_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -2069,7 +2069,7 @@ static void _call_cbs_canFetchMore_c2395_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractProxyModel_Adaptor *)cls)->cbs_canFetchMore_c2395_0 (arg1)); } @@ -2136,7 +2136,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractProxyModel_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -2160,7 +2160,7 @@ static void _call_cbs_columnCount_c2395_1 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((int)((QAbstractProxyModel_Adaptor *)cls)->cbs_columnCount_c2395_1 (arg1)); } @@ -2387,7 +2387,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractProxyModel_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -2413,8 +2413,8 @@ static void _call_cbs_data_c3054_1 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::DisplayRole, heap); ret.write ((QVariant)((QAbstractProxyModel_Adaptor *)cls)->cbs_data_c3054_1 (arg1, arg2)); } @@ -2506,7 +2506,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractProxyModel_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -2538,11 +2538,11 @@ static void _call_cbs_dropMimeData_7425_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMimeData *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - const QModelIndex &arg5 = args.read (heap); + const QMimeData *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + const QModelIndex &arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractProxyModel_Adaptor *)cls)->cbs_dropMimeData_7425_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -2692,7 +2692,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractProxyModel_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -2717,8 +2717,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractProxyModel_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -2741,7 +2741,7 @@ static void _call_cbs_fetchMore_2395_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractProxyModel_Adaptor *)cls)->cbs_fetchMore_2395_0 (arg1); } @@ -2765,7 +2765,7 @@ static void _call_cbs_flags_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QFlags)((QAbstractProxyModel_Adaptor *)cls)->cbs_flags_c2395_0 (arg1)); } @@ -2788,7 +2788,7 @@ static void _call_cbs_hasChildren_c2395_1 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QAbstractProxyModel_Adaptor *)cls)->cbs_hasChildren_c2395_1 (arg1)); } @@ -2815,9 +2815,9 @@ static void _call_cbs_headerData_c3231_1 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::DisplayRole, heap); ret.write ((QVariant)((QAbstractProxyModel_Adaptor *)cls)->cbs_headerData_c3231_1 (arg1, arg2, arg3)); } @@ -2868,9 +2868,9 @@ static void _call_cbs_index_c3713_1 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((QModelIndex)((QAbstractProxyModel_Adaptor *)cls)->cbs_index_c3713_1 (arg1, arg2, arg3)); } @@ -2897,9 +2897,9 @@ static void _call_cbs_insertColumns_3713_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QAbstractProxyModel_Adaptor *)cls)->cbs_insertColumns_3713_1 (arg1, arg2, arg3)); } @@ -2926,9 +2926,9 @@ static void _call_cbs_insertRows_3713_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QAbstractProxyModel_Adaptor *)cls)->cbs_insertRows_3713_1 (arg1, arg2, arg3)); } @@ -2969,7 +2969,7 @@ static void _call_cbs_itemData_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QMap)((QAbstractProxyModel_Adaptor *)cls)->cbs_itemData_c2395_0 (arg1)); } @@ -3034,7 +3034,7 @@ static void _call_cbs_mapFromSource_c2395_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QAbstractProxyModel_Adaptor *)cls)->cbs_mapFromSource_c2395_0 (arg1)); } @@ -3057,7 +3057,7 @@ static void _call_cbs_mapSelectionFromSource_c2727_0 (const qt_gsi::GenericMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QItemSelection &arg1 = args.read (heap); + const QItemSelection &arg1 = gsi::arg_reader() (args, heap); ret.write ((QItemSelection)((QAbstractProxyModel_Adaptor *)cls)->cbs_mapSelectionFromSource_c2727_0 (arg1)); } @@ -3080,7 +3080,7 @@ static void _call_cbs_mapSelectionToSource_c2727_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QItemSelection &arg1 = args.read (heap); + const QItemSelection &arg1 = gsi::arg_reader() (args, heap); ret.write ((QItemSelection)((QAbstractProxyModel_Adaptor *)cls)->cbs_mapSelectionToSource_c2727_0 (arg1)); } @@ -3103,7 +3103,7 @@ static void _call_cbs_mapToSource_c2395_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QAbstractProxyModel_Adaptor *)cls)->cbs_mapToSource_c2395_0 (arg1)); } @@ -3134,11 +3134,11 @@ static void _call_cbs_match_c7932_2 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - const QVariant &arg3 = args.read (heap); - int arg4 = args.read (heap); - QFlags arg5 = args.read > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QVariant &arg3 = gsi::arg_reader() (args, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (1, heap); + QFlags arg5 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (Qt::MatchFlags(Qt::MatchStartsWith|Qt::MatchWrap), heap); ret.write > ((QList)((QAbstractProxyModel_Adaptor *)cls)->cbs_match_c7932_2 (arg1, arg2, arg3, arg4, arg5)); } @@ -3161,7 +3161,7 @@ static void _call_cbs_mimeData_c3010_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); ret.write ((QMimeData *)((QAbstractProxyModel_Adaptor *)cls)->cbs_mimeData_c3010_0 (arg1)); } @@ -3239,11 +3239,11 @@ static void _call_cbs_moveColumns_6659_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - const QModelIndex &arg4 = args.read (heap); - int arg5 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QModelIndex &arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractProxyModel_Adaptor *)cls)->cbs_moveColumns_6659_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -3274,11 +3274,11 @@ static void _call_cbs_moveRows_6659_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - const QModelIndex &arg4 = args.read (heap); - int arg5 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QModelIndex &arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractProxyModel_Adaptor *)cls)->cbs_moveRows_6659_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -3319,7 +3319,7 @@ static void _call_cbs_parent_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QAbstractProxyModel_Adaptor *)cls)->cbs_parent_c2395_0 (arg1)); } @@ -3378,9 +3378,9 @@ static void _call_cbs_removeColumns_3713_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QAbstractProxyModel_Adaptor *)cls)->cbs_removeColumns_3713_1 (arg1, arg2, arg3)); } @@ -3407,9 +3407,9 @@ static void _call_cbs_removeRows_3713_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QAbstractProxyModel_Adaptor *)cls)->cbs_removeRows_3713_1 (arg1, arg2, arg3)); } @@ -3486,7 +3486,7 @@ static void _call_cbs_rowCount_c2395_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((int)((QAbstractProxyModel_Adaptor *)cls)->cbs_rowCount_c2395_1 (arg1)); } @@ -3697,9 +3697,9 @@ static void _call_cbs_setData_5065_1 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::EditRole, heap); ret.write ((bool)((QAbstractProxyModel_Adaptor *)cls)->cbs_setData_5065_1 (arg1, arg2, arg3)); } @@ -3728,10 +3728,10 @@ static void _call_cbs_setHeaderData_5242_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - const QVariant &arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + const QVariant &arg3 = gsi::arg_reader() (args, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::EditRole, heap); ret.write ((bool)((QAbstractProxyModel_Adaptor *)cls)->cbs_setHeaderData_5242_1 (arg1, arg2, arg3, arg4)); } @@ -3756,8 +3756,8 @@ static void _call_cbs_setItemData_5414_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QMap &arg2 = args.read & > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QMap &arg2 = gsi::arg_reader & >() (args, heap); ret.write ((bool)((QAbstractProxyModel_Adaptor *)cls)->cbs_setItemData_5414_0 (arg1, arg2)); } @@ -3780,7 +3780,7 @@ static void _call_cbs_setSourceModel_2419_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractItemModel *arg1 = args.read (heap); + QAbstractItemModel *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractProxyModel_Adaptor *)cls)->cbs_setSourceModel_2419_0 (arg1); } @@ -3808,9 +3808,9 @@ static void _call_cbs_sibling_c3713_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QAbstractProxyModel_Adaptor *)cls)->cbs_sibling_c3713_0 (arg1, arg2, arg3)); } @@ -3835,8 +3835,8 @@ static void _call_cbs_sort_2340_1 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::AscendingOrder), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractProxyModel_Adaptor *)cls)->cbs_sort_2340_1 (arg1, arg2); } @@ -3874,7 +3874,7 @@ static void _call_cbs_span_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QSize)((QAbstractProxyModel_Adaptor *)cls)->cbs_span_c2395_0 (arg1)); } @@ -3954,7 +3954,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractProxyModel_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQAbstractState.cc b/src/gsiqt/qt5/QtCore/gsiDeclQAbstractState.cc index 410ad8e1b..f770ca5da 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQAbstractState.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQAbstractState.cc @@ -423,7 +423,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractState_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -447,7 +447,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractState_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -489,7 +489,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractState_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -527,7 +527,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractState_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -552,8 +552,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractState_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -626,7 +626,7 @@ static void _call_cbs_onEntry_1217_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractState_Adaptor *)cls)->cbs_onEntry_1217_0 (arg1); } @@ -650,7 +650,7 @@ static void _call_cbs_onExit_1217_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractState_Adaptor *)cls)->cbs_onExit_1217_0 (arg1); } @@ -720,7 +720,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractState_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQAbstractTableModel.cc b/src/gsiqt/qt5/QtCore/gsiDeclQAbstractTableModel.cc index 11a9acfb0..e50c07174 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQAbstractTableModel.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQAbstractTableModel.cc @@ -1406,7 +1406,7 @@ static void _call_cbs_buddy_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QAbstractTableModel_Adaptor *)cls)->cbs_buddy_c2395_0 (arg1)); } @@ -1437,11 +1437,11 @@ static void _call_cbs_canDropMimeData_c7425_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMimeData *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - const QModelIndex &arg5 = args.read (heap); + const QMimeData *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + const QModelIndex &arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractTableModel_Adaptor *)cls)->cbs_canDropMimeData_c7425_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -1464,7 +1464,7 @@ static void _call_cbs_canFetchMore_c2395_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractTableModel_Adaptor *)cls)->cbs_canFetchMore_c2395_0 (arg1)); } @@ -1531,7 +1531,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractTableModel_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1555,7 +1555,7 @@ static void _call_cbs_columnCount_c2395_1 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((int)((QAbstractTableModel_Adaptor *)cls)->cbs_columnCount_c2395_1 (arg1)); } @@ -1782,7 +1782,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractTableModel_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1808,8 +1808,8 @@ static void _call_cbs_data_c3054_1 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::DisplayRole, heap); ret.write ((QVariant)((QAbstractTableModel_Adaptor *)cls)->cbs_data_c3054_1 (arg1, arg2)); } @@ -1901,7 +1901,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractTableModel_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1933,11 +1933,11 @@ static void _call_cbs_dropMimeData_7425_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMimeData *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - const QModelIndex &arg5 = args.read (heap); + const QMimeData *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + const QModelIndex &arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractTableModel_Adaptor *)cls)->cbs_dropMimeData_7425_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -2087,7 +2087,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractTableModel_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -2112,8 +2112,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractTableModel_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -2136,7 +2136,7 @@ static void _call_cbs_fetchMore_2395_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractTableModel_Adaptor *)cls)->cbs_fetchMore_2395_0 (arg1); } @@ -2160,7 +2160,7 @@ static void _call_cbs_flags_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QFlags)((QAbstractTableModel_Adaptor *)cls)->cbs_flags_c2395_0 (arg1)); } @@ -2187,9 +2187,9 @@ static void _call_cbs_headerData_c3231_1 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::DisplayRole, heap); ret.write ((QVariant)((QAbstractTableModel_Adaptor *)cls)->cbs_headerData_c3231_1 (arg1, arg2, arg3)); } @@ -2240,9 +2240,9 @@ static void _call_cbs_index_c3713_1 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((QModelIndex)((QAbstractTableModel_Adaptor *)cls)->cbs_index_c3713_1 (arg1, arg2, arg3)); } @@ -2269,9 +2269,9 @@ static void _call_cbs_insertColumns_3713_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QAbstractTableModel_Adaptor *)cls)->cbs_insertColumns_3713_1 (arg1, arg2, arg3)); } @@ -2298,9 +2298,9 @@ static void _call_cbs_insertRows_3713_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QAbstractTableModel_Adaptor *)cls)->cbs_insertRows_3713_1 (arg1, arg2, arg3)); } @@ -2341,7 +2341,7 @@ static void _call_cbs_itemData_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QMap)((QAbstractTableModel_Adaptor *)cls)->cbs_itemData_c2395_0 (arg1)); } @@ -2414,11 +2414,11 @@ static void _call_cbs_match_c7932_2 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - const QVariant &arg3 = args.read (heap); - int arg4 = args.read (heap); - QFlags arg5 = args.read > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QVariant &arg3 = gsi::arg_reader() (args, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (1, heap); + QFlags arg5 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (Qt::MatchFlags(Qt::MatchStartsWith|Qt::MatchWrap), heap); ret.write > ((QList)((QAbstractTableModel_Adaptor *)cls)->cbs_match_c7932_2 (arg1, arg2, arg3, arg4, arg5)); } @@ -2441,7 +2441,7 @@ static void _call_cbs_mimeData_c3010_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); ret.write ((QMimeData *)((QAbstractTableModel_Adaptor *)cls)->cbs_mimeData_c3010_0 (arg1)); } @@ -2519,11 +2519,11 @@ static void _call_cbs_moveColumns_6659_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - const QModelIndex &arg4 = args.read (heap); - int arg5 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QModelIndex &arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractTableModel_Adaptor *)cls)->cbs_moveColumns_6659_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -2554,11 +2554,11 @@ static void _call_cbs_moveRows_6659_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - const QModelIndex &arg4 = args.read (heap); - int arg5 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QModelIndex &arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractTableModel_Adaptor *)cls)->cbs_moveRows_6659_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -2635,9 +2635,9 @@ static void _call_cbs_removeColumns_3713_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QAbstractTableModel_Adaptor *)cls)->cbs_removeColumns_3713_1 (arg1, arg2, arg3)); } @@ -2664,9 +2664,9 @@ static void _call_cbs_removeRows_3713_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QAbstractTableModel_Adaptor *)cls)->cbs_removeRows_3713_1 (arg1, arg2, arg3)); } @@ -2743,7 +2743,7 @@ static void _call_cbs_rowCount_c2395_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((int)((QAbstractTableModel_Adaptor *)cls)->cbs_rowCount_c2395_1 (arg1)); } @@ -2954,9 +2954,9 @@ static void _call_cbs_setData_5065_1 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::EditRole, heap); ret.write ((bool)((QAbstractTableModel_Adaptor *)cls)->cbs_setData_5065_1 (arg1, arg2, arg3)); } @@ -2985,10 +2985,10 @@ static void _call_cbs_setHeaderData_5242_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - const QVariant &arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + const QVariant &arg3 = gsi::arg_reader() (args, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::EditRole, heap); ret.write ((bool)((QAbstractTableModel_Adaptor *)cls)->cbs_setHeaderData_5242_1 (arg1, arg2, arg3, arg4)); } @@ -3013,8 +3013,8 @@ static void _call_cbs_setItemData_5414_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QMap &arg2 = args.read & > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QMap &arg2 = gsi::arg_reader & >() (args, heap); ret.write ((bool)((QAbstractTableModel_Adaptor *)cls)->cbs_setItemData_5414_0 (arg1, arg2)); } @@ -3041,9 +3041,9 @@ static void _call_cbs_sibling_c3713_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QAbstractTableModel_Adaptor *)cls)->cbs_sibling_c3713_0 (arg1, arg2, arg3)); } @@ -3068,8 +3068,8 @@ static void _call_cbs_sort_2340_1 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::AscendingOrder), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractTableModel_Adaptor *)cls)->cbs_sort_2340_1 (arg1, arg2); } @@ -3093,7 +3093,7 @@ static void _call_cbs_span_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QSize)((QAbstractTableModel_Adaptor *)cls)->cbs_span_c2395_0 (arg1)); } @@ -3173,7 +3173,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractTableModel_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQAbstractTransition.cc b/src/gsiqt/qt5/QtCore/gsiDeclQAbstractTransition.cc index 63c07850e..81319477b 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQAbstractTransition.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQAbstractTransition.cc @@ -570,7 +570,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractTransition_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -594,7 +594,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractTransition_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -636,7 +636,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractTransition_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -660,7 +660,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractTransition_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -685,8 +685,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractTransition_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -709,7 +709,7 @@ static void _call_cbs_eventTest_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractTransition_Adaptor *)cls)->cbs_eventTest_1217_0 (arg1)); } @@ -768,7 +768,7 @@ static void _call_cbs_onTransition_1217_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractTransition_Adaptor *)cls)->cbs_onTransition_1217_0 (arg1); } @@ -866,7 +866,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractTransition_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQAnimationDriver.cc b/src/gsiqt/qt5/QtCore/gsiDeclQAnimationDriver.cc index 24a99bbc1..dd2f1e788 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQAnimationDriver.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQAnimationDriver.cc @@ -552,7 +552,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAnimationDriver_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -576,7 +576,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAnimationDriver_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -618,7 +618,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAnimationDriver_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -661,7 +661,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAnimationDriver_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -686,8 +686,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAnimationDriver_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -860,7 +860,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAnimationDriver_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQAnimationGroup.cc b/src/gsiqt/qt5/QtCore/gsiDeclQAnimationGroup.cc index 62d8b43ac..94955e009 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQAnimationGroup.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQAnimationGroup.cc @@ -563,7 +563,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAnimationGroup_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -605,7 +605,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAnimationGroup_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -665,7 +665,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAnimationGroup_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -708,7 +708,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAnimationGroup_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -733,8 +733,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAnimationGroup_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -874,7 +874,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAnimationGroup_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -898,7 +898,7 @@ static void _call_cbs_updateCurrentTime_767_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAnimationGroup_Adaptor *)cls)->cbs_updateCurrentTime_767_0 (arg1); } @@ -922,7 +922,7 @@ static void _call_cbs_updateDirection_3310_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAnimationGroup_Adaptor *)cls)->cbs_updateDirection_3310_0 (arg1); } @@ -948,8 +948,8 @@ static void _call_cbs_updateState_5680_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAnimationGroup_Adaptor *)cls)->cbs_updateState_5680_0 (arg1, arg2); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQCoreApplication.cc b/src/gsiqt/qt5/QtCore/gsiDeclQCoreApplication.cc index 152f9ac84..f59be1e71 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQCoreApplication.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQCoreApplication.cc @@ -1211,7 +1211,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCoreApplication_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1235,7 +1235,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCoreApplication_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1277,7 +1277,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCoreApplication_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1301,7 +1301,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCoreApplication_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1326,8 +1326,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCoreApplication_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1460,7 +1460,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCoreApplication_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQEventLoop.cc b/src/gsiqt/qt5/QtCore/gsiDeclQEventLoop.cc index b14927427..28e21f9d7 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQEventLoop.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQEventLoop.cc @@ -465,7 +465,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QEventLoop_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -489,7 +489,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QEventLoop_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -531,7 +531,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QEventLoop_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -555,7 +555,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QEventLoop_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -580,8 +580,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QEventLoop_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -686,7 +686,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QEventLoop_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQEventTransition.cc b/src/gsiqt/qt5/QtCore/gsiDeclQEventTransition.cc index b95fc4312..71da74669 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQEventTransition.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQEventTransition.cc @@ -477,7 +477,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QEventTransition_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -501,7 +501,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QEventTransition_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -543,7 +543,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QEventTransition_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -567,7 +567,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QEventTransition_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -592,8 +592,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QEventTransition_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -616,7 +616,7 @@ static void _call_cbs_eventTest_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QEventTransition_Adaptor *)cls)->cbs_eventTest_1217_0 (arg1)); } @@ -675,7 +675,7 @@ static void _call_cbs_onTransition_1217_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QEventTransition_Adaptor *)cls)->cbs_onTransition_1217_0 (arg1); } @@ -773,7 +773,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QEventTransition_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQFileDevice.cc b/src/gsiqt/qt5/QtCore/gsiDeclQFileDevice.cc index 5cad8bf90..1229ae1fd 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQFileDevice.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQFileDevice.cc @@ -1049,7 +1049,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDevice_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1093,7 +1093,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDevice_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1135,7 +1135,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDevice_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1159,7 +1159,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFileDevice_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1184,8 +1184,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFileDevice_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1282,7 +1282,7 @@ static void _call_cbs_open_3242_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); ret.write ((bool)((QFileDevice_Adaptor *)cls)->cbs_open_3242_0 (arg1)); } @@ -1408,7 +1408,7 @@ static void _call_cbs_resize_986_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - qint64 arg1 = args.read (heap); + qint64 arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFileDevice_Adaptor *)cls)->cbs_resize_986_0 (arg1)); } @@ -1431,7 +1431,7 @@ static void _call_cbs_seek_986_0 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - qint64 arg1 = args.read (heap); + qint64 arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFileDevice_Adaptor *)cls)->cbs_seek_986_0 (arg1)); } @@ -1520,7 +1520,7 @@ static void _call_cbs_setPermissions_3370_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); ret.write ((bool)((QFileDevice_Adaptor *)cls)->cbs_setPermissions_3370_0 (arg1)); } @@ -1562,7 +1562,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDevice_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -1586,7 +1586,7 @@ static void _call_cbs_waitForBytesWritten_767_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFileDevice_Adaptor *)cls)->cbs_waitForBytesWritten_767_0 (arg1)); } @@ -1609,7 +1609,7 @@ static void _call_cbs_waitForReadyRead_767_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFileDevice_Adaptor *)cls)->cbs_waitForReadyRead_767_0 (arg1)); } @@ -1634,8 +1634,8 @@ static void _call_cbs_writeData_2609_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - qint64 arg2 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + qint64 arg2 = gsi::arg_reader() (args, heap); ret.write ((qint64)((QFileDevice_Adaptor *)cls)->cbs_writeData_2609_0 (arg1, arg2)); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQFileSelector.cc b/src/gsiqt/qt5/QtCore/gsiDeclQFileSelector.cc index 1a175eeb5..fefe3f45f 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQFileSelector.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQFileSelector.cc @@ -404,7 +404,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileSelector_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -428,7 +428,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileSelector_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -470,7 +470,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileSelector_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -494,7 +494,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFileSelector_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -519,8 +519,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFileSelector_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -625,7 +625,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileSelector_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQFileSystemWatcher.cc b/src/gsiqt/qt5/QtCore/gsiDeclQFileSystemWatcher.cc index e51e12454..bf5267d1d 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQFileSystemWatcher.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQFileSystemWatcher.cc @@ -471,7 +471,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileSystemWatcher_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -495,7 +495,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileSystemWatcher_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -555,7 +555,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileSystemWatcher_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -579,7 +579,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFileSystemWatcher_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -604,8 +604,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFileSystemWatcher_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -728,7 +728,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileSystemWatcher_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQFinalState.cc b/src/gsiqt/qt5/QtCore/gsiDeclQFinalState.cc index 7bd4244ed..ce999443d 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQFinalState.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQFinalState.cc @@ -383,7 +383,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFinalState_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -407,7 +407,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFinalState_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -449,7 +449,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFinalState_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -487,7 +487,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFinalState_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -512,8 +512,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFinalState_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -586,7 +586,7 @@ static void _call_cbs_onEntry_1217_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFinalState_Adaptor *)cls)->cbs_onEntry_1217_0 (arg1); } @@ -610,7 +610,7 @@ static void _call_cbs_onExit_1217_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFinalState_Adaptor *)cls)->cbs_onExit_1217_0 (arg1); } @@ -680,7 +680,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFinalState_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQHistoryState.cc b/src/gsiqt/qt5/QtCore/gsiDeclQHistoryState.cc index c77a555a5..5182a7b97 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQHistoryState.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQHistoryState.cc @@ -550,7 +550,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHistoryState_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -574,7 +574,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHistoryState_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -644,7 +644,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHistoryState_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -682,7 +682,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QHistoryState_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -707,8 +707,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QHistoryState_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -795,7 +795,7 @@ static void _call_cbs_onEntry_1217_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHistoryState_Adaptor *)cls)->cbs_onEntry_1217_0 (arg1); } @@ -819,7 +819,7 @@ static void _call_cbs_onExit_1217_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHistoryState_Adaptor *)cls)->cbs_onExit_1217_0 (arg1); } @@ -889,7 +889,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHistoryState_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQIdentityProxyModel.cc b/src/gsiqt/qt5/QtCore/gsiDeclQIdentityProxyModel.cc index 4dbb6e06d..74f7a7967 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQIdentityProxyModel.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQIdentityProxyModel.cc @@ -1826,7 +1826,7 @@ static void _call_cbs_buddy_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QIdentityProxyModel_Adaptor *)cls)->cbs_buddy_c2395_0 (arg1)); } @@ -1857,11 +1857,11 @@ static void _call_cbs_canDropMimeData_c7425_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMimeData *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - const QModelIndex &arg5 = args.read (heap); + const QMimeData *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + const QModelIndex &arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QIdentityProxyModel_Adaptor *)cls)->cbs_canDropMimeData_c7425_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -1884,7 +1884,7 @@ static void _call_cbs_canFetchMore_c2395_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QIdentityProxyModel_Adaptor *)cls)->cbs_canFetchMore_c2395_0 (arg1)); } @@ -1951,7 +1951,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QIdentityProxyModel_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1975,7 +1975,7 @@ static void _call_cbs_columnCount_c2395_1 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((int)((QIdentityProxyModel_Adaptor *)cls)->cbs_columnCount_c2395_1 (arg1)); } @@ -2202,7 +2202,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QIdentityProxyModel_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -2228,8 +2228,8 @@ static void _call_cbs_data_c3054_1 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::DisplayRole, heap); ret.write ((QVariant)((QIdentityProxyModel_Adaptor *)cls)->cbs_data_c3054_1 (arg1, arg2)); } @@ -2321,7 +2321,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QIdentityProxyModel_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -2353,11 +2353,11 @@ static void _call_cbs_dropMimeData_7425_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMimeData *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - const QModelIndex &arg5 = args.read (heap); + const QMimeData *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + const QModelIndex &arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QIdentityProxyModel_Adaptor *)cls)->cbs_dropMimeData_7425_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -2507,7 +2507,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QIdentityProxyModel_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -2532,8 +2532,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QIdentityProxyModel_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -2556,7 +2556,7 @@ static void _call_cbs_fetchMore_2395_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QIdentityProxyModel_Adaptor *)cls)->cbs_fetchMore_2395_0 (arg1); } @@ -2580,7 +2580,7 @@ static void _call_cbs_flags_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QFlags)((QIdentityProxyModel_Adaptor *)cls)->cbs_flags_c2395_0 (arg1)); } @@ -2603,7 +2603,7 @@ static void _call_cbs_hasChildren_c2395_1 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QIdentityProxyModel_Adaptor *)cls)->cbs_hasChildren_c2395_1 (arg1)); } @@ -2630,9 +2630,9 @@ static void _call_cbs_headerData_c3231_1 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::DisplayRole, heap); ret.write ((QVariant)((QIdentityProxyModel_Adaptor *)cls)->cbs_headerData_c3231_1 (arg1, arg2, arg3)); } @@ -2683,9 +2683,9 @@ static void _call_cbs_index_c3713_1 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((QModelIndex)((QIdentityProxyModel_Adaptor *)cls)->cbs_index_c3713_1 (arg1, arg2, arg3)); } @@ -2712,9 +2712,9 @@ static void _call_cbs_insertColumns_3713_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QIdentityProxyModel_Adaptor *)cls)->cbs_insertColumns_3713_1 (arg1, arg2, arg3)); } @@ -2741,9 +2741,9 @@ static void _call_cbs_insertRows_3713_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QIdentityProxyModel_Adaptor *)cls)->cbs_insertRows_3713_1 (arg1, arg2, arg3)); } @@ -2784,7 +2784,7 @@ static void _call_cbs_itemData_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QMap)((QIdentityProxyModel_Adaptor *)cls)->cbs_itemData_c2395_0 (arg1)); } @@ -2849,7 +2849,7 @@ static void _call_cbs_mapFromSource_c2395_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QIdentityProxyModel_Adaptor *)cls)->cbs_mapFromSource_c2395_0 (arg1)); } @@ -2872,7 +2872,7 @@ static void _call_cbs_mapSelectionFromSource_c2727_0 (const qt_gsi::GenericMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QItemSelection &arg1 = args.read (heap); + const QItemSelection &arg1 = gsi::arg_reader() (args, heap); ret.write ((QItemSelection)((QIdentityProxyModel_Adaptor *)cls)->cbs_mapSelectionFromSource_c2727_0 (arg1)); } @@ -2895,7 +2895,7 @@ static void _call_cbs_mapSelectionToSource_c2727_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QItemSelection &arg1 = args.read (heap); + const QItemSelection &arg1 = gsi::arg_reader() (args, heap); ret.write ((QItemSelection)((QIdentityProxyModel_Adaptor *)cls)->cbs_mapSelectionToSource_c2727_0 (arg1)); } @@ -2918,7 +2918,7 @@ static void _call_cbs_mapToSource_c2395_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QIdentityProxyModel_Adaptor *)cls)->cbs_mapToSource_c2395_0 (arg1)); } @@ -2949,11 +2949,11 @@ static void _call_cbs_match_c7932_2 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - const QVariant &arg3 = args.read (heap); - int arg4 = args.read (heap); - QFlags arg5 = args.read > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QVariant &arg3 = gsi::arg_reader() (args, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (1, heap); + QFlags arg5 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (Qt::MatchFlags(Qt::MatchStartsWith|Qt::MatchWrap), heap); ret.write > ((QList)((QIdentityProxyModel_Adaptor *)cls)->cbs_match_c7932_2 (arg1, arg2, arg3, arg4, arg5)); } @@ -2976,7 +2976,7 @@ static void _call_cbs_mimeData_c3010_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); ret.write ((QMimeData *)((QIdentityProxyModel_Adaptor *)cls)->cbs_mimeData_c3010_0 (arg1)); } @@ -3054,11 +3054,11 @@ static void _call_cbs_moveColumns_6659_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - const QModelIndex &arg4 = args.read (heap); - int arg5 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QModelIndex &arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QIdentityProxyModel_Adaptor *)cls)->cbs_moveColumns_6659_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -3089,11 +3089,11 @@ static void _call_cbs_moveRows_6659_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - const QModelIndex &arg4 = args.read (heap); - int arg5 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QModelIndex &arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QIdentityProxyModel_Adaptor *)cls)->cbs_moveRows_6659_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -3134,7 +3134,7 @@ static void _call_cbs_parent_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QIdentityProxyModel_Adaptor *)cls)->cbs_parent_c2395_0 (arg1)); } @@ -3193,9 +3193,9 @@ static void _call_cbs_removeColumns_3713_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QIdentityProxyModel_Adaptor *)cls)->cbs_removeColumns_3713_1 (arg1, arg2, arg3)); } @@ -3222,9 +3222,9 @@ static void _call_cbs_removeRows_3713_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QIdentityProxyModel_Adaptor *)cls)->cbs_removeRows_3713_1 (arg1, arg2, arg3)); } @@ -3301,7 +3301,7 @@ static void _call_cbs_rowCount_c2395_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((int)((QIdentityProxyModel_Adaptor *)cls)->cbs_rowCount_c2395_1 (arg1)); } @@ -3512,9 +3512,9 @@ static void _call_cbs_setData_5065_1 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::EditRole, heap); ret.write ((bool)((QIdentityProxyModel_Adaptor *)cls)->cbs_setData_5065_1 (arg1, arg2, arg3)); } @@ -3543,10 +3543,10 @@ static void _call_cbs_setHeaderData_5242_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - const QVariant &arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + const QVariant &arg3 = gsi::arg_reader() (args, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::EditRole, heap); ret.write ((bool)((QIdentityProxyModel_Adaptor *)cls)->cbs_setHeaderData_5242_1 (arg1, arg2, arg3, arg4)); } @@ -3571,8 +3571,8 @@ static void _call_cbs_setItemData_5414_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QMap &arg2 = args.read & > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QMap &arg2 = gsi::arg_reader & >() (args, heap); ret.write ((bool)((QIdentityProxyModel_Adaptor *)cls)->cbs_setItemData_5414_0 (arg1, arg2)); } @@ -3595,7 +3595,7 @@ static void _call_cbs_setSourceModel_2419_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractItemModel *arg1 = args.read (heap); + QAbstractItemModel *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QIdentityProxyModel_Adaptor *)cls)->cbs_setSourceModel_2419_0 (arg1); } @@ -3623,9 +3623,9 @@ static void _call_cbs_sibling_c3713_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QIdentityProxyModel_Adaptor *)cls)->cbs_sibling_c3713_0 (arg1, arg2, arg3)); } @@ -3650,8 +3650,8 @@ static void _call_cbs_sort_2340_1 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::AscendingOrder), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QIdentityProxyModel_Adaptor *)cls)->cbs_sort_2340_1 (arg1, arg2); } @@ -3689,7 +3689,7 @@ static void _call_cbs_span_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QSize)((QIdentityProxyModel_Adaptor *)cls)->cbs_span_c2395_0 (arg1)); } @@ -3769,7 +3769,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QIdentityProxyModel_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQItemSelectionModel.cc b/src/gsiqt/qt5/QtCore/gsiDeclQItemSelectionModel.cc index 2ca5748ec..2cadbec14 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQItemSelectionModel.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQItemSelectionModel.cc @@ -885,7 +885,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QItemSelectionModel_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1012,7 +1012,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QItemSelectionModel_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1054,7 +1054,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QItemSelectionModel_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1100,7 +1100,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QItemSelectionModel_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1125,8 +1125,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QItemSelectionModel_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1243,8 +1243,8 @@ static void _call_cbs_select_6758_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - QFlags arg2 = args.read > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QItemSelectionModel_Adaptor *)cls)->cbs_select_6758_0 (arg1, arg2); } @@ -1270,8 +1270,8 @@ static void _call_cbs_select_7090_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QItemSelection &arg1 = args.read (heap); - QFlags arg2 = args.read > (heap); + const QItemSelection &arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QItemSelectionModel_Adaptor *)cls)->cbs_select_7090_0 (arg1, arg2); } @@ -1346,8 +1346,8 @@ static void _call_cbs_setCurrentIndex_6758_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - QFlags arg2 = args.read > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QItemSelectionModel_Adaptor *)cls)->cbs_setCurrentIndex_6758_0 (arg1, arg2); } @@ -1371,7 +1371,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QItemSelectionModel_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQLibrary.cc b/src/gsiqt/qt5/QtCore/gsiDeclQLibrary.cc index 5b9d3ff16..0f17a3d6f 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQLibrary.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQLibrary.cc @@ -621,7 +621,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLibrary_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -645,7 +645,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLibrary_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -687,7 +687,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLibrary_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -711,7 +711,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QLibrary_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -736,8 +736,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QLibrary_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -842,7 +842,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLibrary_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQMimeData.cc b/src/gsiqt/qt5/QtCore/gsiDeclQMimeData.cc index 47ad61f43..014fc6e52 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQMimeData.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQMimeData.cc @@ -732,7 +732,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMimeData_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -756,7 +756,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMimeData_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -798,7 +798,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMimeData_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -822,7 +822,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMimeData_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -847,8 +847,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMimeData_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -890,7 +890,7 @@ static void _call_cbs_hasFormat_c2025_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMimeData_Adaptor *)cls)->cbs_hasFormat_c2025_0 (arg1)); } @@ -969,8 +969,8 @@ static void _call_cbs_retrieveData_c3693_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QMimeData_Adaptor *)cls)->cbs_retrieveData_c3693_0 (arg1, arg2)); } @@ -1021,7 +1021,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMimeData_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQObject.cc b/src/gsiqt/qt5/QtCore/gsiDeclQObject.cc index caaf108a3..8050c2f44 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQObject.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQObject.cc @@ -1080,7 +1080,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QObject_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1104,7 +1104,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QObject_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1146,7 +1146,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QObject_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1170,7 +1170,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QObject_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1195,8 +1195,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QObject_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1301,7 +1301,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QObject_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQParallelAnimationGroup.cc b/src/gsiqt/qt5/QtCore/gsiDeclQParallelAnimationGroup.cc index 7584e1c38..788d2e387 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQParallelAnimationGroup.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQParallelAnimationGroup.cc @@ -420,7 +420,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QParallelAnimationGroup_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -462,7 +462,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QParallelAnimationGroup_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -522,7 +522,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QParallelAnimationGroup_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -565,7 +565,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QParallelAnimationGroup_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -590,8 +590,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QParallelAnimationGroup_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -731,7 +731,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QParallelAnimationGroup_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -755,7 +755,7 @@ static void _call_cbs_updateCurrentTime_767_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QParallelAnimationGroup_Adaptor *)cls)->cbs_updateCurrentTime_767_0 (arg1); } @@ -779,7 +779,7 @@ static void _call_cbs_updateDirection_3310_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QParallelAnimationGroup_Adaptor *)cls)->cbs_updateDirection_3310_0 (arg1); } @@ -805,8 +805,8 @@ static void _call_cbs_updateState_5680_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QParallelAnimationGroup_Adaptor *)cls)->cbs_updateState_5680_0 (arg1, arg2); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQPauseAnimation.cc b/src/gsiqt/qt5/QtCore/gsiDeclQPauseAnimation.cc index 4bd9d2bb2..2980cc82a 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQPauseAnimation.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQPauseAnimation.cc @@ -473,7 +473,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPauseAnimation_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -515,7 +515,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPauseAnimation_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -575,7 +575,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPauseAnimation_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -618,7 +618,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPauseAnimation_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -643,8 +643,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPauseAnimation_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -784,7 +784,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPauseAnimation_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -808,7 +808,7 @@ static void _call_cbs_updateCurrentTime_767_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPauseAnimation_Adaptor *)cls)->cbs_updateCurrentTime_767_0 (arg1); } @@ -832,7 +832,7 @@ static void _call_cbs_updateDirection_3310_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPauseAnimation_Adaptor *)cls)->cbs_updateDirection_3310_0 (arg1); } @@ -858,8 +858,8 @@ static void _call_cbs_updateState_5680_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPauseAnimation_Adaptor *)cls)->cbs_updateState_5680_0 (arg1, arg2); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQPluginLoader.cc b/src/gsiqt/qt5/QtCore/gsiDeclQPluginLoader.cc index d80928fa7..9c6353151 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQPluginLoader.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQPluginLoader.cc @@ -547,7 +547,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPluginLoader_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -571,7 +571,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPluginLoader_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -613,7 +613,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPluginLoader_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -637,7 +637,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPluginLoader_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -662,8 +662,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPluginLoader_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -768,7 +768,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPluginLoader_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQPropertyAnimation.cc b/src/gsiqt/qt5/QtCore/gsiDeclQPropertyAnimation.cc index b7ba872c2..1e4afff4a 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQPropertyAnimation.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQPropertyAnimation.cc @@ -553,7 +553,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPropertyAnimation_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -595,7 +595,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPropertyAnimation_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -655,7 +655,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPropertyAnimation_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -698,7 +698,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPropertyAnimation_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -723,8 +723,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPropertyAnimation_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -765,9 +765,9 @@ static void _call_cbs_interpolated_c5093_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVariant &arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); - double arg3 = args.read (heap); + const QVariant &arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QPropertyAnimation_Adaptor *)cls)->cbs_interpolated_c5093_0 (arg1, arg2, arg3)); } @@ -893,7 +893,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPropertyAnimation_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -917,7 +917,7 @@ static void _call_cbs_updateCurrentTime_767_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPropertyAnimation_Adaptor *)cls)->cbs_updateCurrentTime_767_0 (arg1); } @@ -941,7 +941,7 @@ static void _call_cbs_updateCurrentValue_2119_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVariant &arg1 = args.read (heap); + const QVariant &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPropertyAnimation_Adaptor *)cls)->cbs_updateCurrentValue_2119_0 (arg1); } @@ -965,7 +965,7 @@ static void _call_cbs_updateDirection_3310_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPropertyAnimation_Adaptor *)cls)->cbs_updateDirection_3310_0 (arg1); } @@ -991,8 +991,8 @@ static void _call_cbs_updateState_5680_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPropertyAnimation_Adaptor *)cls)->cbs_updateState_5680_0 (arg1, arg2); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQSaveFile.cc b/src/gsiqt/qt5/QtCore/gsiDeclQSaveFile.cc index 6d1d3449b..a375a6b6d 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQSaveFile.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQSaveFile.cc @@ -960,7 +960,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSaveFile_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -984,7 +984,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSaveFile_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1026,7 +1026,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSaveFile_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1050,7 +1050,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSaveFile_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1075,8 +1075,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSaveFile_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1173,7 +1173,7 @@ static void _call_cbs_open_3242_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); ret.write ((bool)((QSaveFile_Adaptor *)cls)->cbs_open_3242_0 (arg1)); } @@ -1299,7 +1299,7 @@ static void _call_cbs_resize_986_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - qint64 arg1 = args.read (heap); + qint64 arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSaveFile_Adaptor *)cls)->cbs_resize_986_0 (arg1)); } @@ -1322,7 +1322,7 @@ static void _call_cbs_seek_986_0 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - qint64 arg1 = args.read (heap); + qint64 arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSaveFile_Adaptor *)cls)->cbs_seek_986_0 (arg1)); } @@ -1411,7 +1411,7 @@ static void _call_cbs_setPermissions_3370_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); ret.write ((bool)((QSaveFile_Adaptor *)cls)->cbs_setPermissions_3370_0 (arg1)); } @@ -1453,7 +1453,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSaveFile_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -1477,7 +1477,7 @@ static void _call_cbs_waitForBytesWritten_767_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSaveFile_Adaptor *)cls)->cbs_waitForBytesWritten_767_0 (arg1)); } @@ -1500,7 +1500,7 @@ static void _call_cbs_waitForReadyRead_767_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSaveFile_Adaptor *)cls)->cbs_waitForReadyRead_767_0 (arg1)); } @@ -1525,8 +1525,8 @@ static void _call_cbs_writeData_2609_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - qint64 arg2 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + qint64 arg2 = gsi::arg_reader() (args, heap); ret.write ((qint64)((QSaveFile_Adaptor *)cls)->cbs_writeData_2609_0 (arg1, arg2)); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQSequentialAnimationGroup.cc b/src/gsiqt/qt5/QtCore/gsiDeclQSequentialAnimationGroup.cc index 1ca6621b0..62f156197 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQSequentialAnimationGroup.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQSequentialAnimationGroup.cc @@ -487,7 +487,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSequentialAnimationGroup_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -547,7 +547,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSequentialAnimationGroup_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -607,7 +607,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSequentialAnimationGroup_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -650,7 +650,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSequentialAnimationGroup_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -675,8 +675,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSequentialAnimationGroup_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -816,7 +816,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSequentialAnimationGroup_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -840,7 +840,7 @@ static void _call_cbs_updateCurrentTime_767_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSequentialAnimationGroup_Adaptor *)cls)->cbs_updateCurrentTime_767_0 (arg1); } @@ -864,7 +864,7 @@ static void _call_cbs_updateDirection_3310_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSequentialAnimationGroup_Adaptor *)cls)->cbs_updateDirection_3310_0 (arg1); } @@ -890,8 +890,8 @@ static void _call_cbs_updateState_5680_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSequentialAnimationGroup_Adaptor *)cls)->cbs_updateState_5680_0 (arg1, arg2); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQSettings.cc b/src/gsiqt/qt5/QtCore/gsiDeclQSettings.cc index 9a5878aeb..146aac295 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQSettings.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQSettings.cc @@ -1079,7 +1079,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSettings_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1103,7 +1103,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSettings_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1145,7 +1145,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSettings_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1169,7 +1169,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSettings_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1194,8 +1194,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSettings_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1300,7 +1300,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSettings_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQSharedMemory.cc b/src/gsiqt/qt5/QtCore/gsiDeclQSharedMemory.cc index 953057416..f17fc5019 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQSharedMemory.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQSharedMemory.cc @@ -620,7 +620,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSharedMemory_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -644,7 +644,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSharedMemory_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -686,7 +686,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSharedMemory_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -710,7 +710,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSharedMemory_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -735,8 +735,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSharedMemory_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -841,7 +841,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSharedMemory_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQSignalMapper.cc b/src/gsiqt/qt5/QtCore/gsiDeclQSignalMapper.cc index 4b04fc62d..80341209d 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQSignalMapper.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQSignalMapper.cc @@ -574,7 +574,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSignalMapper_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -598,7 +598,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSignalMapper_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -640,7 +640,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSignalMapper_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -664,7 +664,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSignalMapper_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -689,8 +689,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSignalMapper_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -867,7 +867,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSignalMapper_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQSignalTransition.cc b/src/gsiqt/qt5/QtCore/gsiDeclQSignalTransition.cc index b15ec5293..88d679069 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQSignalTransition.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQSignalTransition.cc @@ -491,7 +491,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSignalTransition_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -515,7 +515,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSignalTransition_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -557,7 +557,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSignalTransition_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -581,7 +581,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSignalTransition_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -606,8 +606,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSignalTransition_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -630,7 +630,7 @@ static void _call_cbs_eventTest_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSignalTransition_Adaptor *)cls)->cbs_eventTest_1217_0 (arg1)); } @@ -689,7 +689,7 @@ static void _call_cbs_onTransition_1217_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSignalTransition_Adaptor *)cls)->cbs_onTransition_1217_0 (arg1); } @@ -815,7 +815,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSignalTransition_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQSocketNotifier.cc b/src/gsiqt/qt5/QtCore/gsiDeclQSocketNotifier.cc index 89ebd3704..5089e5ec4 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQSocketNotifier.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQSocketNotifier.cc @@ -411,7 +411,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSocketNotifier_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -435,7 +435,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSocketNotifier_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -477,7 +477,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSocketNotifier_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -501,7 +501,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSocketNotifier_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -526,8 +526,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSocketNotifier_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -632,7 +632,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSocketNotifier_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQSortFilterProxyModel.cc b/src/gsiqt/qt5/QtCore/gsiDeclQSortFilterProxyModel.cc index 59de73a6d..72c719b48 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQSortFilterProxyModel.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQSortFilterProxyModel.cc @@ -2681,7 +2681,7 @@ static void _call_cbs_buddy_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QSortFilterProxyModel_Adaptor *)cls)->cbs_buddy_c2395_0 (arg1)); } @@ -2712,11 +2712,11 @@ static void _call_cbs_canDropMimeData_c7425_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMimeData *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - const QModelIndex &arg5 = args.read (heap); + const QMimeData *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + const QModelIndex &arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSortFilterProxyModel_Adaptor *)cls)->cbs_canDropMimeData_c7425_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -2739,7 +2739,7 @@ static void _call_cbs_canFetchMore_c2395_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSortFilterProxyModel_Adaptor *)cls)->cbs_canFetchMore_c2395_0 (arg1)); } @@ -2806,7 +2806,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSortFilterProxyModel_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -2830,7 +2830,7 @@ static void _call_cbs_columnCount_c2395_1 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((int)((QSortFilterProxyModel_Adaptor *)cls)->cbs_columnCount_c2395_1 (arg1)); } @@ -3057,7 +3057,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSortFilterProxyModel_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -3083,8 +3083,8 @@ static void _call_cbs_data_c3054_1 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::DisplayRole, heap); ret.write ((QVariant)((QSortFilterProxyModel_Adaptor *)cls)->cbs_data_c3054_1 (arg1, arg2)); } @@ -3176,7 +3176,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSortFilterProxyModel_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -3208,11 +3208,11 @@ static void _call_cbs_dropMimeData_7425_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMimeData *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - const QModelIndex &arg5 = args.read (heap); + const QMimeData *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + const QModelIndex &arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSortFilterProxyModel_Adaptor *)cls)->cbs_dropMimeData_7425_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -3362,7 +3362,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSortFilterProxyModel_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -3387,8 +3387,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSortFilterProxyModel_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -3411,7 +3411,7 @@ static void _call_cbs_fetchMore_2395_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSortFilterProxyModel_Adaptor *)cls)->cbs_fetchMore_2395_0 (arg1); } @@ -3437,8 +3437,8 @@ static void _call_cbs_filterAcceptsColumn_c3054_0 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSortFilterProxyModel_Adaptor *)cls)->cbs_filterAcceptsColumn_c3054_0 (arg1, arg2)); } @@ -3463,8 +3463,8 @@ static void _call_cbs_filterAcceptsRow_c3054_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSortFilterProxyModel_Adaptor *)cls)->cbs_filterAcceptsRow_c3054_0 (arg1, arg2)); } @@ -3502,7 +3502,7 @@ static void _call_cbs_flags_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QFlags)((QSortFilterProxyModel_Adaptor *)cls)->cbs_flags_c2395_0 (arg1)); } @@ -3525,7 +3525,7 @@ static void _call_cbs_hasChildren_c2395_1 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QSortFilterProxyModel_Adaptor *)cls)->cbs_hasChildren_c2395_1 (arg1)); } @@ -3552,9 +3552,9 @@ static void _call_cbs_headerData_c3231_1 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::DisplayRole, heap); ret.write ((QVariant)((QSortFilterProxyModel_Adaptor *)cls)->cbs_headerData_c3231_1 (arg1, arg2, arg3)); } @@ -3605,9 +3605,9 @@ static void _call_cbs_index_c3713_1 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((QModelIndex)((QSortFilterProxyModel_Adaptor *)cls)->cbs_index_c3713_1 (arg1, arg2, arg3)); } @@ -3634,9 +3634,9 @@ static void _call_cbs_insertColumns_3713_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QSortFilterProxyModel_Adaptor *)cls)->cbs_insertColumns_3713_1 (arg1, arg2, arg3)); } @@ -3663,9 +3663,9 @@ static void _call_cbs_insertRows_3713_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QSortFilterProxyModel_Adaptor *)cls)->cbs_insertRows_3713_1 (arg1, arg2, arg3)); } @@ -3721,7 +3721,7 @@ static void _call_cbs_itemData_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QMap)((QSortFilterProxyModel_Adaptor *)cls)->cbs_itemData_c2395_0 (arg1)); } @@ -3788,8 +3788,8 @@ static void _call_cbs_lessThan_c4682_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSortFilterProxyModel_Adaptor *)cls)->cbs_lessThan_c4682_0 (arg1, arg2)); } @@ -3812,7 +3812,7 @@ static void _call_cbs_mapFromSource_c2395_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QSortFilterProxyModel_Adaptor *)cls)->cbs_mapFromSource_c2395_0 (arg1)); } @@ -3835,7 +3835,7 @@ static void _call_cbs_mapSelectionFromSource_c2727_0 (const qt_gsi::GenericMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QItemSelection &arg1 = args.read (heap); + const QItemSelection &arg1 = gsi::arg_reader() (args, heap); ret.write ((QItemSelection)((QSortFilterProxyModel_Adaptor *)cls)->cbs_mapSelectionFromSource_c2727_0 (arg1)); } @@ -3858,7 +3858,7 @@ static void _call_cbs_mapSelectionToSource_c2727_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QItemSelection &arg1 = args.read (heap); + const QItemSelection &arg1 = gsi::arg_reader() (args, heap); ret.write ((QItemSelection)((QSortFilterProxyModel_Adaptor *)cls)->cbs_mapSelectionToSource_c2727_0 (arg1)); } @@ -3881,7 +3881,7 @@ static void _call_cbs_mapToSource_c2395_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QSortFilterProxyModel_Adaptor *)cls)->cbs_mapToSource_c2395_0 (arg1)); } @@ -3912,11 +3912,11 @@ static void _call_cbs_match_c7932_2 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - const QVariant &arg3 = args.read (heap); - int arg4 = args.read (heap); - QFlags arg5 = args.read > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QVariant &arg3 = gsi::arg_reader() (args, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (1, heap); + QFlags arg5 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (Qt::MatchFlags(Qt::MatchStartsWith|Qt::MatchWrap), heap); ret.write > ((QList)((QSortFilterProxyModel_Adaptor *)cls)->cbs_match_c7932_2 (arg1, arg2, arg3, arg4, arg5)); } @@ -3939,7 +3939,7 @@ static void _call_cbs_mimeData_c3010_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); ret.write ((QMimeData *)((QSortFilterProxyModel_Adaptor *)cls)->cbs_mimeData_c3010_0 (arg1)); } @@ -4017,11 +4017,11 @@ static void _call_cbs_moveColumns_6659_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - const QModelIndex &arg4 = args.read (heap); - int arg5 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QModelIndex &arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSortFilterProxyModel_Adaptor *)cls)->cbs_moveColumns_6659_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -4052,11 +4052,11 @@ static void _call_cbs_moveRows_6659_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - const QModelIndex &arg4 = args.read (heap); - int arg5 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QModelIndex &arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSortFilterProxyModel_Adaptor *)cls)->cbs_moveRows_6659_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -4097,7 +4097,7 @@ static void _call_cbs_parent_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QSortFilterProxyModel_Adaptor *)cls)->cbs_parent_c2395_0 (arg1)); } @@ -4156,9 +4156,9 @@ static void _call_cbs_removeColumns_3713_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QSortFilterProxyModel_Adaptor *)cls)->cbs_removeColumns_3713_1 (arg1, arg2, arg3)); } @@ -4185,9 +4185,9 @@ static void _call_cbs_removeRows_3713_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QSortFilterProxyModel_Adaptor *)cls)->cbs_removeRows_3713_1 (arg1, arg2, arg3)); } @@ -4264,7 +4264,7 @@ static void _call_cbs_rowCount_c2395_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((int)((QSortFilterProxyModel_Adaptor *)cls)->cbs_rowCount_c2395_1 (arg1)); } @@ -4475,9 +4475,9 @@ static void _call_cbs_setData_5065_1 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::EditRole, heap); ret.write ((bool)((QSortFilterProxyModel_Adaptor *)cls)->cbs_setData_5065_1 (arg1, arg2, arg3)); } @@ -4506,10 +4506,10 @@ static void _call_cbs_setHeaderData_5242_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - const QVariant &arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + const QVariant &arg3 = gsi::arg_reader() (args, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::EditRole, heap); ret.write ((bool)((QSortFilterProxyModel_Adaptor *)cls)->cbs_setHeaderData_5242_1 (arg1, arg2, arg3, arg4)); } @@ -4534,8 +4534,8 @@ static void _call_cbs_setItemData_5414_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QMap &arg2 = args.read & > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QMap &arg2 = gsi::arg_reader & >() (args, heap); ret.write ((bool)((QSortFilterProxyModel_Adaptor *)cls)->cbs_setItemData_5414_0 (arg1, arg2)); } @@ -4558,7 +4558,7 @@ static void _call_cbs_setSourceModel_2419_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractItemModel *arg1 = args.read (heap); + QAbstractItemModel *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSortFilterProxyModel_Adaptor *)cls)->cbs_setSourceModel_2419_0 (arg1); } @@ -4586,9 +4586,9 @@ static void _call_cbs_sibling_c3713_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QSortFilterProxyModel_Adaptor *)cls)->cbs_sibling_c3713_0 (arg1, arg2, arg3)); } @@ -4613,8 +4613,8 @@ static void _call_cbs_sort_2340_1 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::AscendingOrder), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSortFilterProxyModel_Adaptor *)cls)->cbs_sort_2340_1 (arg1, arg2); } @@ -4652,7 +4652,7 @@ static void _call_cbs_span_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QSize)((QSortFilterProxyModel_Adaptor *)cls)->cbs_span_c2395_0 (arg1)); } @@ -4732,7 +4732,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSortFilterProxyModel_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQState.cc b/src/gsiqt/qt5/QtCore/gsiDeclQState.cc index 99ebbb640..64027eb15 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQState.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQState.cc @@ -695,7 +695,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QState_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -733,7 +733,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QState_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -775,7 +775,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QState_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -827,7 +827,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QState_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -852,8 +852,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QState_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -954,7 +954,7 @@ static void _call_cbs_onEntry_1217_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QState_Adaptor *)cls)->cbs_onEntry_1217_0 (arg1); } @@ -978,7 +978,7 @@ static void _call_cbs_onExit_1217_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QState_Adaptor *)cls)->cbs_onExit_1217_0 (arg1); } @@ -1062,7 +1062,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QState_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQStateMachine.cc b/src/gsiqt/qt5/QtCore/gsiDeclQStateMachine.cc index 2e9cd47e9..de370d04b 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQStateMachine.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQStateMachine.cc @@ -939,7 +939,7 @@ static void _call_cbs_beginMicrostep_1217_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStateMachine_Adaptor *)cls)->cbs_beginMicrostep_1217_0 (arg1); } @@ -963,7 +963,7 @@ static void _call_cbs_beginSelectTransitions_1217_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStateMachine_Adaptor *)cls)->cbs_beginSelectTransitions_1217_0 (arg1); } @@ -987,7 +987,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStateMachine_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1025,7 +1025,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStateMachine_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1067,7 +1067,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStateMachine_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1091,7 +1091,7 @@ static void _call_cbs_endMicrostep_1217_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStateMachine_Adaptor *)cls)->cbs_endMicrostep_1217_0 (arg1); } @@ -1115,7 +1115,7 @@ static void _call_cbs_endSelectTransitions_1217_0 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStateMachine_Adaptor *)cls)->cbs_endSelectTransitions_1217_0 (arg1); } @@ -1167,7 +1167,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QStateMachine_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1192,8 +1192,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QStateMachine_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1294,7 +1294,7 @@ static void _call_cbs_onEntry_1217_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStateMachine_Adaptor *)cls)->cbs_onEntry_1217_0 (arg1); } @@ -1318,7 +1318,7 @@ static void _call_cbs_onExit_1217_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStateMachine_Adaptor *)cls)->cbs_onExit_1217_0 (arg1); } @@ -1448,7 +1448,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStateMachine_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQStringListModel.cc b/src/gsiqt/qt5/QtCore/gsiDeclQStringListModel.cc index a79b056fc..2f48aea84 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQStringListModel.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQStringListModel.cc @@ -1543,7 +1543,7 @@ static void _call_cbs_buddy_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QStringListModel_Adaptor *)cls)->cbs_buddy_c2395_0 (arg1)); } @@ -1574,11 +1574,11 @@ static void _call_cbs_canDropMimeData_c7425_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMimeData *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - const QModelIndex &arg5 = args.read (heap); + const QMimeData *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + const QModelIndex &arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QStringListModel_Adaptor *)cls)->cbs_canDropMimeData_c7425_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -1601,7 +1601,7 @@ static void _call_cbs_canFetchMore_c2395_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QStringListModel_Adaptor *)cls)->cbs_canFetchMore_c2395_0 (arg1)); } @@ -1668,7 +1668,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStringListModel_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1896,7 +1896,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStringListModel_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1922,8 +1922,8 @@ static void _call_cbs_data_c3054_1 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::DisplayRole, heap); ret.write ((QVariant)((QStringListModel_Adaptor *)cls)->cbs_data_c3054_1 (arg1, arg2)); } @@ -2015,7 +2015,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStringListModel_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -2047,11 +2047,11 @@ static void _call_cbs_dropMimeData_7425_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMimeData *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - const QModelIndex &arg5 = args.read (heap); + const QMimeData *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + const QModelIndex &arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QStringListModel_Adaptor *)cls)->cbs_dropMimeData_7425_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -2201,7 +2201,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QStringListModel_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -2226,8 +2226,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QStringListModel_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -2250,7 +2250,7 @@ static void _call_cbs_fetchMore_2395_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStringListModel_Adaptor *)cls)->cbs_fetchMore_2395_0 (arg1); } @@ -2274,7 +2274,7 @@ static void _call_cbs_flags_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QFlags)((QStringListModel_Adaptor *)cls)->cbs_flags_c2395_0 (arg1)); } @@ -2301,9 +2301,9 @@ static void _call_cbs_headerData_c3231_1 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::DisplayRole, heap); ret.write ((QVariant)((QStringListModel_Adaptor *)cls)->cbs_headerData_c3231_1 (arg1, arg2, arg3)); } @@ -2354,9 +2354,9 @@ static void _call_cbs_index_c3713_2 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((QModelIndex)((QStringListModel_Adaptor *)cls)->cbs_index_c3713_2 (arg1, arg2, arg3)); } @@ -2383,9 +2383,9 @@ static void _call_cbs_insertColumns_3713_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QStringListModel_Adaptor *)cls)->cbs_insertColumns_3713_1 (arg1, arg2, arg3)); } @@ -2412,9 +2412,9 @@ static void _call_cbs_insertRows_3713_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QStringListModel_Adaptor *)cls)->cbs_insertRows_3713_1 (arg1, arg2, arg3)); } @@ -2455,7 +2455,7 @@ static void _call_cbs_itemData_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QMap)((QStringListModel_Adaptor *)cls)->cbs_itemData_c2395_0 (arg1)); } @@ -2528,11 +2528,11 @@ static void _call_cbs_match_c7932_2 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - const QVariant &arg3 = args.read (heap); - int arg4 = args.read (heap); - QFlags arg5 = args.read > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QVariant &arg3 = gsi::arg_reader() (args, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (1, heap); + QFlags arg5 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (Qt::MatchFlags(Qt::MatchStartsWith|Qt::MatchWrap), heap); ret.write > ((QList)((QStringListModel_Adaptor *)cls)->cbs_match_c7932_2 (arg1, arg2, arg3, arg4, arg5)); } @@ -2555,7 +2555,7 @@ static void _call_cbs_mimeData_c3010_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); ret.write ((QMimeData *)((QStringListModel_Adaptor *)cls)->cbs_mimeData_c3010_0 (arg1)); } @@ -2633,11 +2633,11 @@ static void _call_cbs_moveColumns_6659_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - const QModelIndex &arg4 = args.read (heap); - int arg5 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QModelIndex &arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QStringListModel_Adaptor *)cls)->cbs_moveColumns_6659_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -2668,11 +2668,11 @@ static void _call_cbs_moveRows_6659_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - const QModelIndex &arg4 = args.read (heap); - int arg5 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QModelIndex &arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QStringListModel_Adaptor *)cls)->cbs_moveRows_6659_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -2749,9 +2749,9 @@ static void _call_cbs_removeColumns_3713_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QStringListModel_Adaptor *)cls)->cbs_removeColumns_3713_1 (arg1, arg2, arg3)); } @@ -2778,9 +2778,9 @@ static void _call_cbs_removeRows_3713_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QStringListModel_Adaptor *)cls)->cbs_removeRows_3713_1 (arg1, arg2, arg3)); } @@ -2857,7 +2857,7 @@ static void _call_cbs_rowCount_c2395_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((int)((QStringListModel_Adaptor *)cls)->cbs_rowCount_c2395_1 (arg1)); } @@ -3068,9 +3068,9 @@ static void _call_cbs_setData_5065_1 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::EditRole, heap); ret.write ((bool)((QStringListModel_Adaptor *)cls)->cbs_setData_5065_1 (arg1, arg2, arg3)); } @@ -3099,10 +3099,10 @@ static void _call_cbs_setHeaderData_5242_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - const QVariant &arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + const QVariant &arg3 = gsi::arg_reader() (args, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::EditRole, heap); ret.write ((bool)((QStringListModel_Adaptor *)cls)->cbs_setHeaderData_5242_1 (arg1, arg2, arg3, arg4)); } @@ -3127,8 +3127,8 @@ static void _call_cbs_setItemData_5414_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QMap &arg2 = args.read & > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QMap &arg2 = gsi::arg_reader & >() (args, heap); ret.write ((bool)((QStringListModel_Adaptor *)cls)->cbs_setItemData_5414_0 (arg1, arg2)); } @@ -3155,9 +3155,9 @@ static void _call_cbs_sibling_c3713_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QStringListModel_Adaptor *)cls)->cbs_sibling_c3713_0 (arg1, arg2, arg3)); } @@ -3182,8 +3182,8 @@ static void _call_cbs_sort_2340_1 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::AscendingOrder), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStringListModel_Adaptor *)cls)->cbs_sort_2340_1 (arg1, arg2); } @@ -3207,7 +3207,7 @@ static void _call_cbs_span_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QSize)((QStringListModel_Adaptor *)cls)->cbs_span_c2395_0 (arg1)); } @@ -3287,7 +3287,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStringListModel_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQTextCodec.cc b/src/gsiqt/qt5/QtCore/gsiDeclQTextCodec.cc index 8da6a163c..15ea08fc1 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQTextCodec.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQTextCodec.cc @@ -595,9 +595,9 @@ static void _call_cbs_convertFromUnicode_c5514_0 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type * arg1 = args.read::target_type * > (heap); - int arg2 = args.read (heap); - QTextCodec::ConverterState *arg3 = args.read (heap); + const qt_gsi::Converter::target_type * arg1 = gsi::arg_reader::target_type * >() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + QTextCodec::ConverterState *arg3 = gsi::arg_reader() (args, heap); ret.write ((QByteArray)((QTextCodec_Adaptor *)cls)->cbs_convertFromUnicode_c5514_0 (arg1, arg2, arg3)); } @@ -624,9 +624,9 @@ static void _call_cbs_convertToUnicode_c5465_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - int arg2 = args.read (heap); - QTextCodec::ConverterState *arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + QTextCodec::ConverterState *arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)((QTextCodec_Adaptor *)cls)->cbs_convertToUnicode_c5465_0 (arg1, arg2, arg3)); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQThread.cc b/src/gsiqt/qt5/QtCore/gsiDeclQThread.cc index c12a36b92..d03aaa560 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQThread.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQThread.cc @@ -781,7 +781,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QThread_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -805,7 +805,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QThread_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -847,7 +847,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QThread_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -871,7 +871,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QThread_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -896,8 +896,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QThread_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1083,7 +1083,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QThread_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQThreadPool.cc b/src/gsiqt/qt5/QtCore/gsiDeclQThreadPool.cc index e706012ad..3f9e8e486 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQThreadPool.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQThreadPool.cc @@ -610,7 +610,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QThreadPool_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -634,7 +634,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QThreadPool_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -676,7 +676,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QThreadPool_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -700,7 +700,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QThreadPool_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -725,8 +725,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QThreadPool_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -831,7 +831,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QThreadPool_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQTimeLine.cc b/src/gsiqt/qt5/QtCore/gsiDeclQTimeLine.cc index a53d9c416..0e1138ec7 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQTimeLine.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQTimeLine.cc @@ -901,7 +901,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeLine_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -925,7 +925,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeLine_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -967,7 +967,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeLine_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -991,7 +991,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTimeLine_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1016,8 +1016,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTimeLine_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1172,7 +1172,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeLine_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -1214,7 +1214,7 @@ static void _call_cbs_valueForTime_c767_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((double)((QTimeLine_Adaptor *)cls)->cbs_valueForTime_c767_0 (arg1)); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQTimer.cc b/src/gsiqt/qt5/QtCore/gsiDeclQTimer.cc index 8b1583472..f8103b6e3 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQTimer.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQTimer.cc @@ -531,7 +531,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimer_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -555,7 +555,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimer_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -597,7 +597,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimer_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -621,7 +621,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTimer_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -646,8 +646,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTimer_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -766,7 +766,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimer_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQTranslator.cc b/src/gsiqt/qt5/QtCore/gsiDeclQTranslator.cc index f1d54f182..bb9ba4d17 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQTranslator.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQTranslator.cc @@ -475,7 +475,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTranslator_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -499,7 +499,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTranslator_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -541,7 +541,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTranslator_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -565,7 +565,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTranslator_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -590,8 +590,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTranslator_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -715,7 +715,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTranslator_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -745,10 +745,10 @@ static void _call_cbs_translate_c5636_2 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - const char *arg3 = args.read (heap); - int arg4 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + const char *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)((QTranslator_Adaptor *)cls)->cbs_translate_c5636_2 (arg1, arg2, arg3, arg4)); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQVariantAnimation.cc b/src/gsiqt/qt5/QtCore/gsiDeclQVariantAnimation.cc index 7f095ddd0..df262eae5 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQVariantAnimation.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQVariantAnimation.cc @@ -688,7 +688,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVariantAnimation_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -730,7 +730,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVariantAnimation_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -790,7 +790,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVariantAnimation_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -833,7 +833,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QVariantAnimation_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -858,8 +858,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QVariantAnimation_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -900,9 +900,9 @@ static void _call_cbs_interpolated_c5093_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVariant &arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); - double arg3 = args.read (heap); + const QVariant &arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QVariantAnimation_Adaptor *)cls)->cbs_interpolated_c5093_0 (arg1, arg2, arg3)); } @@ -1028,7 +1028,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVariantAnimation_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -1052,7 +1052,7 @@ static void _call_cbs_updateCurrentTime_767_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVariantAnimation_Adaptor *)cls)->cbs_updateCurrentTime_767_0 (arg1); } @@ -1076,7 +1076,7 @@ static void _call_cbs_updateCurrentValue_2119_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVariant &arg1 = args.read (heap); + const QVariant &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVariantAnimation_Adaptor *)cls)->cbs_updateCurrentValue_2119_0 (arg1); } @@ -1100,7 +1100,7 @@ static void _call_cbs_updateDirection_3310_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVariantAnimation_Adaptor *)cls)->cbs_updateDirection_3310_0 (arg1); } @@ -1126,8 +1126,8 @@ static void _call_cbs_updateState_5680_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVariantAnimation_Adaptor *)cls)->cbs_updateState_5680_0 (arg1, arg2); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQXmlStreamEntityResolver.cc b/src/gsiqt/qt5/QtCore/gsiDeclQXmlStreamEntityResolver.cc index 3b4f57c3f..754dd9d78 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQXmlStreamEntityResolver.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQXmlStreamEntityResolver.cc @@ -172,8 +172,8 @@ static void _call_cbs_resolveEntity_3942_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((QString)((QXmlStreamEntityResolver_Adaptor *)cls)->cbs_resolveEntity_3942_0 (arg1, arg2)); } @@ -196,7 +196,7 @@ static void _call_cbs_resolveUndeclaredEntity_2025_0 (const qt_gsi::GenericMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QXmlStreamEntityResolver_Adaptor *)cls)->cbs_resolveUndeclaredEntity_2025_0 (arg1)); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQAbstractTextDocumentLayout.cc b/src/gsiqt/qt5/QtGui/gsiDeclQAbstractTextDocumentLayout.cc index e9ea7e2ee..7291e1439 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQAbstractTextDocumentLayout.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQAbstractTextDocumentLayout.cc @@ -823,7 +823,7 @@ static void _call_cbs_blockBoundingRect_c2306_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextBlock &arg1 = args.read (heap); + const QTextBlock &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRectF)((QAbstractTextDocumentLayout_Adaptor *)cls)->cbs_blockBoundingRect_c2306_0 (arg1)); } @@ -846,7 +846,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractTextDocumentLayout_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -870,7 +870,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractTextDocumentLayout_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -912,7 +912,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractTextDocumentLayout_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -940,9 +940,9 @@ static void _call_cbs_documentChanged_2085_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractTextDocumentLayout_Adaptor *)cls)->cbs_documentChanged_2085_0 (arg1, arg2, arg3); } @@ -1005,8 +1005,8 @@ static void _call_cbs_draw_6787_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QAbstractTextDocumentLayout::PaintContext &arg2 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QAbstractTextDocumentLayout::PaintContext &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractTextDocumentLayout_Adaptor *)cls)->cbs_draw_6787_0 (arg1, arg2); } @@ -1038,11 +1038,11 @@ static void _call_cbs_drawInlineObject_8199_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QRectF &arg2 = args.read (heap); - QTextInlineObject arg3 = args.read (heap); - int arg4 = args.read (heap); - const QTextFormat &arg5 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QRectF &arg2 = gsi::arg_reader() (args, heap); + QTextInlineObject arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + const QTextFormat &arg5 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractTextDocumentLayout_Adaptor *)cls)->cbs_drawInlineObject_8199_0 (arg1, arg2, arg3, arg4, arg5); } @@ -1066,7 +1066,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractTextDocumentLayout_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1091,8 +1091,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractTextDocumentLayout_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1151,7 +1151,7 @@ static void _call_cbs_frameBoundingRect_c1615_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTextFrame *arg1 = args.read (heap); + QTextFrame *arg1 = gsi::arg_reader() (args, heap); ret.write ((QRectF)((QAbstractTextDocumentLayout_Adaptor *)cls)->cbs_frameBoundingRect_c1615_0 (arg1)); } @@ -1176,8 +1176,8 @@ static void _call_cbs_hitTest_c4147_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QAbstractTextDocumentLayout_Adaptor *)cls)->cbs_hitTest_c4147_0 (arg1, arg2)); } @@ -1277,9 +1277,9 @@ static void _call_cbs_positionInlineObject_5127_0 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTextInlineObject arg1 = args.read (heap); - int arg2 = args.read (heap); - const QTextFormat &arg3 = args.read (heap); + QTextInlineObject arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QTextFormat &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractTextDocumentLayout_Adaptor *)cls)->cbs_positionInlineObject_5127_0 (arg1, arg2, arg3); } @@ -1325,9 +1325,9 @@ static void _call_cbs_resizeInlineObject_5127_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTextInlineObject arg1 = args.read (heap); - int arg2 = args.read (heap); - const QTextFormat &arg3 = args.read (heap); + QTextInlineObject arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QTextFormat &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractTextDocumentLayout_Adaptor *)cls)->cbs_resizeInlineObject_5127_0 (arg1, arg2, arg3); } @@ -1379,7 +1379,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractTextDocumentLayout_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleActionInterface.cc b/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleActionInterface.cc index fa1b54f48..aa085179c 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleActionInterface.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleActionInterface.cc @@ -537,7 +537,7 @@ static void _call_cbs_doAction_2025_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAccessibleActionInterface_Adaptor *)cls)->cbs_doAction_2025_0 (arg1); } @@ -561,7 +561,7 @@ static void _call_cbs_keyBindingsForAction_c2025_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QStringList)((QAccessibleActionInterface_Adaptor *)cls)->cbs_keyBindingsForAction_c2025_0 (arg1)); } @@ -584,7 +584,7 @@ static void _call_cbs_localizedActionDescription_c2025_0 (const qt_gsi::GenericM { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QAccessibleActionInterface_Adaptor *)cls)->cbs_localizedActionDescription_c2025_0 (arg1)); } @@ -607,7 +607,7 @@ static void _call_cbs_localizedActionName_c2025_0 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QAccessibleActionInterface_Adaptor *)cls)->cbs_localizedActionName_c2025_0 (arg1)); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleEditableTextInterface.cc b/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleEditableTextInterface.cc index e706f335e..6865be61f 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleEditableTextInterface.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleEditableTextInterface.cc @@ -227,8 +227,8 @@ static void _call_cbs_deleteText_1426_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAccessibleEditableTextInterface_Adaptor *)cls)->cbs_deleteText_1426_0 (arg1, arg2); } @@ -254,8 +254,8 @@ static void _call_cbs_insertText_2684_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAccessibleEditableTextInterface_Adaptor *)cls)->cbs_insertText_2684_0 (arg1, arg2); } @@ -283,9 +283,9 @@ static void _call_cbs_replaceText_3343_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QString &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAccessibleEditableTextInterface_Adaptor *)cls)->cbs_replaceText_3343_0 (arg1, arg2, arg3); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleTableInterface.cc b/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleTableInterface.cc index f5035488c..6a7edc4f5 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleTableInterface.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleTableInterface.cc @@ -813,8 +813,8 @@ static void _call_cbs_cellAt_c1426_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write ((QAccessibleInterface *)((QAccessibleTableInterface_Adaptor *)cls)->cbs_cellAt_c1426_0 (arg1, arg2)); } @@ -856,7 +856,7 @@ static void _call_cbs_columnDescription_c767_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QAccessibleTableInterface_Adaptor *)cls)->cbs_columnDescription_c767_0 (arg1)); } @@ -879,7 +879,7 @@ static void _call_cbs_isColumnSelected_c767_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAccessibleTableInterface_Adaptor *)cls)->cbs_isColumnSelected_c767_0 (arg1)); } @@ -902,7 +902,7 @@ static void _call_cbs_isRowSelected_c767_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAccessibleTableInterface_Adaptor *)cls)->cbs_isRowSelected_c767_0 (arg1)); } @@ -925,7 +925,7 @@ static void _call_cbs_modelChange_3790_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAccessibleTableModelChangeEvent *arg1 = args.read (heap); + QAccessibleTableModelChangeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAccessibleTableInterface_Adaptor *)cls)->cbs_modelChange_3790_0 (arg1); } @@ -968,7 +968,7 @@ static void _call_cbs_rowDescription_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QAccessibleTableInterface_Adaptor *)cls)->cbs_rowDescription_c767_0 (arg1)); } @@ -991,7 +991,7 @@ static void _call_cbs_selectColumn_767_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAccessibleTableInterface_Adaptor *)cls)->cbs_selectColumn_767_0 (arg1)); } @@ -1014,7 +1014,7 @@ static void _call_cbs_selectRow_767_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAccessibleTableInterface_Adaptor *)cls)->cbs_selectRow_767_0 (arg1)); } @@ -1170,7 +1170,7 @@ static void _call_cbs_unselectColumn_767_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAccessibleTableInterface_Adaptor *)cls)->cbs_unselectColumn_767_0 (arg1)); } @@ -1193,7 +1193,7 @@ static void _call_cbs_unselectRow_767_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAccessibleTableInterface_Adaptor *)cls)->cbs_unselectRow_767_0 (arg1)); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleTextInterface.cc b/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleTextInterface.cc index ce1263998..1949d71c8 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleTextInterface.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleTextInterface.cc @@ -742,8 +742,8 @@ static void _call_cbs_addSelection_1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAccessibleTextInterface_Adaptor *)cls)->cbs_addSelection_1426_0 (arg1, arg2); } @@ -771,9 +771,9 @@ static void _call_cbs_attributes_c2457_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int *arg2 = args.read (heap); - int *arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int *arg2 = gsi::arg_reader() (args, heap); + int *arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)((QAccessibleTextInterface_Adaptor *)cls)->cbs_attributes_c2457_0 (arg1, arg2, arg3)); } @@ -815,7 +815,7 @@ static void _call_cbs_characterRect_c767_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QAccessibleTextInterface_Adaptor *)cls)->cbs_characterRect_c767_0 (arg1)); } @@ -857,7 +857,7 @@ static void _call_cbs_offsetAtPoint_c1916_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QAccessibleTextInterface_Adaptor *)cls)->cbs_offsetAtPoint_c1916_0 (arg1)); } @@ -880,7 +880,7 @@ static void _call_cbs_removeSelection_767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAccessibleTextInterface_Adaptor *)cls)->cbs_removeSelection_767_0 (arg1); } @@ -906,8 +906,8 @@ static void _call_cbs_scrollToSubstring_1426_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAccessibleTextInterface_Adaptor *)cls)->cbs_scrollToSubstring_1426_0 (arg1, arg2); } @@ -935,9 +935,9 @@ static void _call_cbs_selection_c2457_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int *arg2 = args.read (heap); - int *arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int *arg2 = gsi::arg_reader() (args, heap); + int *arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAccessibleTextInterface_Adaptor *)cls)->cbs_selection_c2457_0 (arg1, arg2, arg3); } @@ -980,7 +980,7 @@ static void _call_cbs_setCursorPosition_767_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAccessibleTextInterface_Adaptor *)cls)->cbs_setCursorPosition_767_0 (arg1); } @@ -1008,9 +1008,9 @@ static void _call_cbs_setSelection_2085_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAccessibleTextInterface_Adaptor *)cls)->cbs_setSelection_2085_0 (arg1, arg2, arg3); } @@ -1036,8 +1036,8 @@ static void _call_cbs_text_c1426_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write ((QString)((QAccessibleTextInterface_Adaptor *)cls)->cbs_text_c1426_0 (arg1, arg2)); } @@ -1066,10 +1066,10 @@ static void _call_cbs_textAfterOffset_c5663_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int *arg3 = args.read (heap); - int *arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int *arg3 = gsi::arg_reader() (args, heap); + int *arg4 = gsi::arg_reader() (args, heap); ret.write ((QString)((QAccessibleTextInterface_Adaptor *)cls)->cbs_textAfterOffset_c5663_0 (arg1, arg2, arg3, arg4)); } @@ -1098,10 +1098,10 @@ static void _call_cbs_textAtOffset_c5663_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int *arg3 = args.read (heap); - int *arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int *arg3 = gsi::arg_reader() (args, heap); + int *arg4 = gsi::arg_reader() (args, heap); ret.write ((QString)((QAccessibleTextInterface_Adaptor *)cls)->cbs_textAtOffset_c5663_0 (arg1, arg2, arg3, arg4)); } @@ -1130,10 +1130,10 @@ static void _call_cbs_textBeforeOffset_c5663_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int *arg3 = args.read (heap); - int *arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int *arg3 = gsi::arg_reader() (args, heap); + int *arg4 = gsi::arg_reader() (args, heap); ret.write ((QString)((QAccessibleTextInterface_Adaptor *)cls)->cbs_textBeforeOffset_c5663_0 (arg1, arg2, arg3, arg4)); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleValueInterface.cc b/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleValueInterface.cc index 7abc47795..94f3d4042 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleValueInterface.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleValueInterface.cc @@ -337,7 +337,7 @@ static void _call_cbs_setCurrentValue_2119_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVariant &arg1 = args.read (heap); + const QVariant &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAccessibleValueInterface_Adaptor *)cls)->cbs_setCurrentValue_2119_0 (arg1); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQAccessible_ActivationObserver.cc b/src/gsiqt/qt5/QtGui/gsiDeclQAccessible_ActivationObserver.cc index ab183bfc0..0b55649f8 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQAccessible_ActivationObserver.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQAccessible_ActivationObserver.cc @@ -133,7 +133,7 @@ static void _call_cbs_accessibilityActiveChanged_864_0 (const qt_gsi::GenericMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAccessible_ActivationObserver_Adaptor *)cls)->cbs_accessibilityActiveChanged_864_0 (arg1); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQBitmap.cc b/src/gsiqt/qt5/QtGui/gsiDeclQBitmap.cc index 4cd46bbc4..0edaa1edd 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQBitmap.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQBitmap.cc @@ -517,7 +517,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QBitmap_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -541,7 +541,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QBitmap_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -583,7 +583,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QBitmap_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQDoubleValidator.cc b/src/gsiqt/qt5/QtGui/gsiDeclQDoubleValidator.cc index 41227b8ad..b1f50ec95 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQDoubleValidator.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQDoubleValidator.cc @@ -663,7 +663,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleValidator_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -687,7 +687,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleValidator_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -747,7 +747,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleValidator_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -771,7 +771,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDoubleValidator_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -796,8 +796,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDoubleValidator_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -820,7 +820,7 @@ static void _call_cbs_fixup_c1330_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QString &arg1 = args.read (heap); + QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleValidator_Adaptor *)cls)->cbs_fixup_c1330_0 (arg1); } @@ -948,9 +948,9 @@ static void _call_cbs_setRange_2693_1 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - int arg3 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleValidator_Adaptor *)cls)->cbs_setRange_2693_1 (arg1, arg2, arg3); } @@ -974,7 +974,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleValidator_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -1018,8 +1018,8 @@ static void _call_cbs_validate_c2171_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QString &arg1 = args.read (heap); - int &arg2 = args.read (heap); + QString &arg1 = gsi::arg_reader() (args, heap); + int &arg2 = gsi::arg_reader() (args, heap); ret.write::target_type > ((qt_gsi::Converter::target_type)((QDoubleValidator_Adaptor *)cls)->cbs_validate_c2171_0 (arg1, arg2)); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQDrag.cc b/src/gsiqt/qt5/QtGui/gsiDeclQDrag.cc index a8fbf5ea6..69e939b22 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQDrag.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQDrag.cc @@ -638,7 +638,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDrag_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -662,7 +662,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDrag_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -704,7 +704,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDrag_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -728,7 +728,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDrag_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -753,8 +753,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDrag_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -877,7 +877,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDrag_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQGenericPlugin.cc b/src/gsiqt/qt5/QtGui/gsiDeclQGenericPlugin.cc index 775306a48..96b66a841 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQGenericPlugin.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQGenericPlugin.cc @@ -351,7 +351,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGenericPlugin_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -377,8 +377,8 @@ static void _call_cbs_create_3942_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((QObject *)((QGenericPlugin_Adaptor *)cls)->cbs_create_3942_0 (arg1, arg2)); } @@ -401,7 +401,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGenericPlugin_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -443,7 +443,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGenericPlugin_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -467,7 +467,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGenericPlugin_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -492,8 +492,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGenericPlugin_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -598,7 +598,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGenericPlugin_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQGuiApplication.cc b/src/gsiqt/qt5/QtGui/gsiDeclQGuiApplication.cc index 94d37281f..be938de75 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQGuiApplication.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQGuiApplication.cc @@ -1342,7 +1342,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGuiApplication_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1384,7 +1384,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGuiApplication_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1426,7 +1426,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGuiApplication_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1450,7 +1450,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGuiApplication_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1475,8 +1475,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGuiApplication_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1799,7 +1799,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGuiApplication_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQIconEngine.cc b/src/gsiqt/qt5/QtGui/gsiDeclQIconEngine.cc index 1f8c68642..c471111ef 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQIconEngine.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQIconEngine.cc @@ -643,9 +643,9 @@ static void _call_cbs_actualSize_4543_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSize &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg3 = args.read::target_type & > (heap); + const QSize &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg3 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QSize)((QIconEngine_Adaptor *)cls)->cbs_actualSize_4543_0 (arg1, arg2, arg3)); } @@ -674,10 +674,10 @@ static void _call_cbs_addFile_6460_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QSize &arg2 = args.read (heap); - const qt_gsi::Converter::target_type & arg3 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg4 = args.read::target_type & > (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QSize &arg2 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg3 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg4 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QIconEngine_Adaptor *)cls)->cbs_addFile_6460_0 (arg1, arg2, arg3, arg4); } @@ -705,9 +705,9 @@ static void _call_cbs_addPixmap_4755_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPixmap &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg3 = args.read::target_type & > (heap); + const QPixmap &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg3 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QIconEngine_Adaptor *)cls)->cbs_addPixmap_4755_0 (arg1, arg2, arg3); } @@ -733,8 +733,8 @@ static void _call_cbs_availableSizes_c2846_2 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QIcon::Normal), heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QIcon::Off), heap); ret.write > ((QList)((QIconEngine_Adaptor *)cls)->cbs_availableSizes_c2846_2 (arg1, arg2)); } @@ -820,10 +820,10 @@ static void _call_cbs_paint_5848_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QRect &arg2 = args.read (heap); - const qt_gsi::Converter::target_type & arg3 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg4 = args.read::target_type & > (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QRect &arg2 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg3 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg4 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QIconEngine_Adaptor *)cls)->cbs_paint_5848_0 (arg1, arg2, arg3, arg4); } @@ -851,9 +851,9 @@ static void _call_cbs_pixmap_4543_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSize &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg3 = args.read::target_type & > (heap); + const QSize &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg3 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QPixmap)((QIconEngine_Adaptor *)cls)->cbs_pixmap_4543_0 (arg1, arg2, arg3)); } @@ -876,7 +876,7 @@ static void _call_cbs_read_1697_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDataStream &arg1 = args.read (heap); + QDataStream &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QIconEngine_Adaptor *)cls)->cbs_read_1697_0 (arg1)); } @@ -901,8 +901,8 @@ static void _call_cbs_virtual_hook_1715_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - void *arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QIconEngine_Adaptor *)cls)->cbs_virtual_hook_1715_0 (arg1, arg2); } @@ -926,7 +926,7 @@ static void _call_cbs_write_c1697_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDataStream &arg1 = args.read (heap); + QDataStream &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QIconEngine_Adaptor *)cls)->cbs_write_c1697_0 (arg1)); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQIconEnginePlugin.cc b/src/gsiqt/qt5/QtGui/gsiDeclQIconEnginePlugin.cc index 4927d8c43..980e1f733 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQIconEnginePlugin.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQIconEnginePlugin.cc @@ -348,7 +348,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QIconEnginePlugin_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -372,7 +372,7 @@ static void _call_cbs_create_2025_1 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); ret.write ((QIconEngine *)((QIconEnginePlugin_Adaptor *)cls)->cbs_create_2025_1 (arg1)); } @@ -395,7 +395,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QIconEnginePlugin_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -437,7 +437,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QIconEnginePlugin_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -461,7 +461,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QIconEnginePlugin_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -486,8 +486,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QIconEnginePlugin_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -592,7 +592,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QIconEnginePlugin_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQImage.cc b/src/gsiqt/qt5/QtGui/gsiDeclQImage.cc index ac5551c2c..e296e61fa 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQImage.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQImage.cc @@ -2246,7 +2246,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QImage_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -2270,7 +2270,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QImage_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2355,7 +2355,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QImage_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQImageIOHandler.cc b/src/gsiqt/qt5/QtGui/gsiDeclQImageIOHandler.cc index 368d7002a..0b24f2f57 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQImageIOHandler.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQImageIOHandler.cc @@ -746,7 +746,7 @@ static void _call_cbs_jumpToImage_767_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QImageIOHandler_Adaptor *)cls)->cbs_jumpToImage_767_0 (arg1)); } @@ -845,7 +845,7 @@ static void _call_cbs_option_c3086_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QImageIOHandler_Adaptor *)cls)->cbs_option_c3086_0 (arg1)); } @@ -868,7 +868,7 @@ static void _call_cbs_read_1186_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QImage *arg1 = args.read (heap); + QImage *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QImageIOHandler_Adaptor *)cls)->cbs_read_1186_0 (arg1)); } @@ -893,8 +893,8 @@ static void _call_cbs_setOption_5097_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QVariant &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QImageIOHandler_Adaptor *)cls)->cbs_setOption_5097_0 (arg1, arg2); } @@ -918,7 +918,7 @@ static void _call_cbs_supportsOption_c3086_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((bool)((QImageIOHandler_Adaptor *)cls)->cbs_supportsOption_c3086_0 (arg1)); } @@ -941,7 +941,7 @@ static void _call_cbs_write_1877_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QImage &arg1 = args.read (heap); + const QImage &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QImageIOHandler_Adaptor *)cls)->cbs_write_1877_0 (arg1)); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQImageIOPlugin.cc b/src/gsiqt/qt5/QtGui/gsiDeclQImageIOPlugin.cc index 7b79f65eb..1a97874ce 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQImageIOPlugin.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQImageIOPlugin.cc @@ -396,8 +396,8 @@ static void _call_cbs_capabilities_c3648_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QIODevice *arg1 = args.read (heap); - const QByteArray &arg2 = args.read (heap); + QIODevice *arg1 = gsi::arg_reader() (args, heap); + const QByteArray &arg2 = gsi::arg_reader() (args, heap); ret.write > ((QFlags)((QImageIOPlugin_Adaptor *)cls)->cbs_capabilities_c3648_0 (arg1, arg2)); } @@ -420,7 +420,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QImageIOPlugin_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -446,8 +446,8 @@ static void _call_cbs_create_c3648_1 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QIODevice *arg1 = args.read (heap); - const QByteArray &arg2 = args.read (heap); + QIODevice *arg1 = gsi::arg_reader() (args, heap); + const QByteArray &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QByteArray(), heap); ret.write ((QImageIOHandler *)((QImageIOPlugin_Adaptor *)cls)->cbs_create_c3648_1 (arg1, arg2)); } @@ -470,7 +470,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QImageIOPlugin_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -512,7 +512,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QImageIOPlugin_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -536,7 +536,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QImageIOPlugin_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -561,8 +561,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QImageIOPlugin_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -667,7 +667,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QImageIOPlugin_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQIntValidator.cc b/src/gsiqt/qt5/QtGui/gsiDeclQIntValidator.cc index d84946aab..8bcaeac36 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQIntValidator.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQIntValidator.cc @@ -590,7 +590,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QIntValidator_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -614,7 +614,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QIntValidator_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -656,7 +656,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QIntValidator_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -680,7 +680,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QIntValidator_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -705,8 +705,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QIntValidator_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -729,7 +729,7 @@ static void _call_cbs_fixup_c1330_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QString &arg1 = args.read (heap); + QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QIntValidator_Adaptor *)cls)->cbs_fixup_c1330_0 (arg1); } @@ -837,8 +837,8 @@ static void _call_cbs_setRange_1426_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QIntValidator_Adaptor *)cls)->cbs_setRange_1426_0 (arg1, arg2); } @@ -862,7 +862,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QIntValidator_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -906,8 +906,8 @@ static void _call_cbs_validate_c2171_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QString &arg1 = args.read (heap); - int &arg2 = args.read (heap); + QString &arg1 = gsi::arg_reader() (args, heap); + int &arg2 = gsi::arg_reader() (args, heap); ret.write::target_type > ((qt_gsi::Converter::target_type)((QIntValidator_Adaptor *)cls)->cbs_validate_c2171_0 (arg1, arg2)); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQMovie.cc b/src/gsiqt/qt5/QtGui/gsiDeclQMovie.cc index 23873e415..bc31c508f 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQMovie.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQMovie.cc @@ -991,7 +991,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMovie_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1015,7 +1015,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMovie_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1057,7 +1057,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMovie_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1099,7 +1099,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMovie_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1124,8 +1124,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMovie_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1312,7 +1312,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMovie_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQOffscreenSurface.cc b/src/gsiqt/qt5/QtGui/gsiDeclQOffscreenSurface.cc index 8da97e17b..b3ca5f8fb 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQOffscreenSurface.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQOffscreenSurface.cc @@ -651,7 +651,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QOffscreenSurface_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -675,7 +675,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QOffscreenSurface_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -717,7 +717,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QOffscreenSurface_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -741,7 +741,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QOffscreenSurface_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -766,8 +766,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QOffscreenSurface_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -947,7 +947,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QOffscreenSurface_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQPagedPaintDevice.cc b/src/gsiqt/qt5/QtGui/gsiDeclQPagedPaintDevice.cc index 3044436b4..f7f07e719 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQPagedPaintDevice.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQPagedPaintDevice.cc @@ -533,7 +533,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPagedPaintDevice_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -557,7 +557,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QPagedPaintDevice_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -618,7 +618,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QPagedPaintDevice_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -641,7 +641,7 @@ static void _call_cbs_setMargins_3812_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPagedPaintDevice::Margins &arg1 = args.read (heap); + const QPagedPaintDevice::Margins &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPagedPaintDevice_Adaptor *)cls)->cbs_setMargins_3812_0 (arg1); } @@ -665,7 +665,7 @@ static void _call_cbs_setPageSize_3006_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPagedPaintDevice_Adaptor *)cls)->cbs_setPageSize_3006_0 (arg1); } @@ -689,7 +689,7 @@ static void _call_cbs_setPageSizeMM_1875_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSizeF &arg1 = args.read (heap); + const QSizeF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPagedPaintDevice_Adaptor *)cls)->cbs_setPageSizeMM_1875_0 (arg1); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQPaintDevice.cc b/src/gsiqt/qt5/QtGui/gsiDeclQPaintDevice.cc index 41ef32707..c35318e34 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQPaintDevice.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQPaintDevice.cc @@ -418,7 +418,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPaintDevice_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -442,7 +442,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QPaintDevice_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -484,7 +484,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QPaintDevice_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQPaintDeviceWindow.cc b/src/gsiqt/qt5/QtGui/gsiDeclQPaintDeviceWindow.cc index f51714bcb..82a727573 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQPaintDeviceWindow.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQPaintDeviceWindow.cc @@ -1058,7 +1058,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPaintDeviceWindow_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1100,7 +1100,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPaintDeviceWindow_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1142,7 +1142,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPaintDeviceWindow_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1166,7 +1166,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPaintDeviceWindow_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1191,8 +1191,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPaintDeviceWindow_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1215,7 +1215,7 @@ static void _call_cbs_exposeEvent_1845_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QExposeEvent *arg1 = args.read (heap); + QExposeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPaintDeviceWindow_Adaptor *)cls)->cbs_exposeEvent_1845_0 (arg1); } @@ -1239,7 +1239,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPaintDeviceWindow_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1300,7 +1300,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPaintDeviceWindow_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -1361,7 +1361,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPaintDeviceWindow_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -1385,7 +1385,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPaintDeviceWindow_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -1427,7 +1427,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPaintDeviceWindow_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -1451,7 +1451,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPaintDeviceWindow_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -1511,7 +1511,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QPaintDeviceWindow_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -1588,7 +1588,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPaintDeviceWindow_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -1612,7 +1612,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPaintDeviceWindow_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -1636,7 +1636,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPaintDeviceWindow_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -1660,7 +1660,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPaintDeviceWindow_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -1684,7 +1684,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPaintDeviceWindow_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -1712,9 +1712,9 @@ static void _call_cbs_nativeEvent_4678_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - long int *arg3 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + long int *arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPaintDeviceWindow_Adaptor *)cls)->cbs_nativeEvent_4678_0 (arg1, arg2, arg3)); } @@ -1773,7 +1773,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPaintDeviceWindow_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -1815,7 +1815,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QPaintDeviceWindow_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -1838,7 +1838,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPaintDeviceWindow_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -1927,7 +1927,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPaintDeviceWindow_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -1989,7 +1989,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPaintDeviceWindow_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2013,7 +2013,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPaintDeviceWindow_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2037,7 +2037,7 @@ static void _call_cbs_touchEvent_1732_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTouchEvent *arg1 = args.read (heap); + QTouchEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPaintDeviceWindow_Adaptor *)cls)->cbs_touchEvent_1732_0 (arg1); } @@ -2097,7 +2097,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPaintDeviceWindow_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQPaintEngine.cc b/src/gsiqt/qt5/QtGui/gsiDeclQPaintEngine.cc index 643b525ba..b803f65d6 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQPaintEngine.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQPaintEngine.cc @@ -853,7 +853,7 @@ static void _call_cbs_begin_1803_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintDevice *arg1 = args.read (heap); + QPaintDevice *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPaintEngine_Adaptor *)cls)->cbs_begin_1803_0 (arg1)); } @@ -895,7 +895,7 @@ static void _call_cbs_drawEllipse_1862_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPaintEngine_Adaptor *)cls)->cbs_drawEllipse_1862_0 (arg1); } @@ -919,7 +919,7 @@ static void _call_cbs_drawEllipse_1792_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPaintEngine_Adaptor *)cls)->cbs_drawEllipse_1792_0 (arg1); } @@ -949,10 +949,10 @@ static void _call_cbs_drawImage_8645_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); - const QImage &arg2 = args.read (heap); - const QRectF &arg3 = args.read (heap); - QFlags arg4 = args.read > (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); + const QImage &arg2 = gsi::arg_reader() (args, heap); + const QRectF &arg3 = gsi::arg_reader() (args, heap); + QFlags arg4 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (Qt::AutoColor, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPaintEngine_Adaptor *)cls)->cbs_drawImage_8645_1 (arg1, arg2, arg3, arg4); } @@ -976,7 +976,7 @@ static void _call_cbs_drawPath_2514_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPaintEngine_Adaptor *)cls)->cbs_drawPath_2514_0 (arg1); } @@ -1004,9 +1004,9 @@ static void _call_cbs_drawPixmap_5525_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); - const QPixmap &arg2 = args.read (heap); - const QRectF &arg3 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); + const QPixmap &arg2 = gsi::arg_reader() (args, heap); + const QRectF &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPaintEngine_Adaptor *)cls)->cbs_drawPixmap_5525_0 (arg1, arg2, arg3); } @@ -1032,8 +1032,8 @@ static void _call_cbs_drawTextItem_4092_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); - const QTextItem &arg2 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); + const QTextItem &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPaintEngine_Adaptor *)cls)->cbs_drawTextItem_4092_0 (arg1, arg2); } @@ -1061,9 +1061,9 @@ static void _call_cbs_drawTiledPixmap_5649_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); - const QPixmap &arg2 = args.read (heap); - const QPointF &arg3 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); + const QPixmap &arg2 = gsi::arg_reader() (args, heap); + const QPointF &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPaintEngine_Adaptor *)cls)->cbs_drawTiledPixmap_5649_0 (arg1, arg2, arg3); } @@ -1125,7 +1125,7 @@ static void _call_cbs_updateState_3013_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPaintEngineState &arg1 = args.read (heap); + const QPaintEngineState &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPaintEngine_Adaptor *)cls)->cbs_updateState_3013_0 (arg1); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQPdfWriter.cc b/src/gsiqt/qt5/QtGui/gsiDeclQPdfWriter.cc index dc666d083..9bd0f5b50 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQPdfWriter.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQPdfWriter.cc @@ -772,7 +772,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPdfWriter_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -796,7 +796,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPdfWriter_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -866,7 +866,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPdfWriter_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -890,7 +890,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPdfWriter_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -915,8 +915,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPdfWriter_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -939,7 +939,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPdfWriter_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -981,7 +981,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QPdfWriter_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -1078,7 +1078,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QPdfWriter_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -1129,7 +1129,7 @@ static void _call_cbs_setMargins_3812_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPagedPaintDevice::Margins &arg1 = args.read (heap); + const QPagedPaintDevice::Margins &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPdfWriter_Adaptor *)cls)->cbs_setMargins_3812_0 (arg1); } @@ -1153,7 +1153,7 @@ static void _call_cbs_setPageSize_3006_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPdfWriter_Adaptor *)cls)->cbs_setPageSize_3006_0 (arg1); } @@ -1177,7 +1177,7 @@ static void _call_cbs_setPageSizeMM_1875_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSizeF &arg1 = args.read (heap); + const QSizeF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPdfWriter_Adaptor *)cls)->cbs_setPageSizeMM_1875_0 (arg1); } @@ -1220,7 +1220,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPdfWriter_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQPicture.cc b/src/gsiqt/qt5/QtGui/gsiDeclQPicture.cc index fc8bcec72..cac9b72d6 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQPicture.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQPicture.cc @@ -628,7 +628,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPicture_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -652,7 +652,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QPicture_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -694,7 +694,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QPicture_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -719,8 +719,8 @@ static void _call_cbs_setData_3395_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - unsigned int arg2 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + unsigned int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPicture_Adaptor *)cls)->cbs_setData_3395_0 (arg1, arg2); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQPictureFormatPlugin.cc b/src/gsiqt/qt5/QtGui/gsiDeclQPictureFormatPlugin.cc index 43c6ae7cb..34aa5664d 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQPictureFormatPlugin.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQPictureFormatPlugin.cc @@ -432,7 +432,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPictureFormatPlugin_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -456,7 +456,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPictureFormatPlugin_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -498,7 +498,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPictureFormatPlugin_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -522,7 +522,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPictureFormatPlugin_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -547,8 +547,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPictureFormatPlugin_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -571,7 +571,7 @@ static void _call_cbs_installIOHandler_2025_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPictureFormatPlugin_Adaptor *)cls)->cbs_installIOHandler_2025_0 (arg1)); } @@ -616,9 +616,9 @@ static void _call_cbs_loadPicture_5269_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - QPicture *arg3 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + QPicture *arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPictureFormatPlugin_Adaptor *)cls)->cbs_loadPicture_5269_0 (arg1, arg2, arg3)); } @@ -681,9 +681,9 @@ static void _call_cbs_savePicture_5960_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QPicture &arg3 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QPicture &arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPictureFormatPlugin_Adaptor *)cls)->cbs_savePicture_5960_0 (arg1, arg2, arg3)); } @@ -734,7 +734,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPictureFormatPlugin_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQPixmap.cc b/src/gsiqt/qt5/QtGui/gsiDeclQPixmap.cc index 6b78f48ca..e1cc37ad1 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQPixmap.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQPixmap.cc @@ -1428,7 +1428,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPixmap_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -1452,7 +1452,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QPixmap_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -1494,7 +1494,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QPixmap_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQRasterWindow.cc b/src/gsiqt/qt5/QtGui/gsiDeclQRasterWindow.cc index 0fa84b616..8e32becfd 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQRasterWindow.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQRasterWindow.cc @@ -926,7 +926,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRasterWindow_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -968,7 +968,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRasterWindow_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1010,7 +1010,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRasterWindow_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1034,7 +1034,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QRasterWindow_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1059,8 +1059,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QRasterWindow_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1083,7 +1083,7 @@ static void _call_cbs_exposeEvent_1845_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QExposeEvent *arg1 = args.read (heap); + QExposeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRasterWindow_Adaptor *)cls)->cbs_exposeEvent_1845_0 (arg1); } @@ -1107,7 +1107,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRasterWindow_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1168,7 +1168,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRasterWindow_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -1229,7 +1229,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRasterWindow_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -1253,7 +1253,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRasterWindow_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -1295,7 +1295,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRasterWindow_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -1319,7 +1319,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRasterWindow_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -1379,7 +1379,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QRasterWindow_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -1456,7 +1456,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRasterWindow_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -1480,7 +1480,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRasterWindow_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -1504,7 +1504,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRasterWindow_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -1528,7 +1528,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRasterWindow_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -1552,7 +1552,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRasterWindow_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -1580,9 +1580,9 @@ static void _call_cbs_nativeEvent_4678_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - long int *arg3 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + long int *arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QRasterWindow_Adaptor *)cls)->cbs_nativeEvent_4678_0 (arg1, arg2, arg3)); } @@ -1641,7 +1641,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRasterWindow_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -1683,7 +1683,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QRasterWindow_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -1706,7 +1706,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRasterWindow_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -1795,7 +1795,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRasterWindow_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -1857,7 +1857,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRasterWindow_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -1881,7 +1881,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRasterWindow_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -1905,7 +1905,7 @@ static void _call_cbs_touchEvent_1732_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTouchEvent *arg1 = args.read (heap); + QTouchEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRasterWindow_Adaptor *)cls)->cbs_touchEvent_1732_0 (arg1); } @@ -1965,7 +1965,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRasterWindow_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQRegExpValidator.cc b/src/gsiqt/qt5/QtGui/gsiDeclQRegExpValidator.cc index 728b47a8a..5b71e81a5 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQRegExpValidator.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQRegExpValidator.cc @@ -465,7 +465,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRegExpValidator_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -489,7 +489,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRegExpValidator_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -531,7 +531,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRegExpValidator_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -555,7 +555,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QRegExpValidator_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -580,8 +580,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QRegExpValidator_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -604,7 +604,7 @@ static void _call_cbs_fixup_c1330_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QString &arg1 = args.read (heap); + QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRegExpValidator_Adaptor *)cls)->cbs_fixup_c1330_0 (arg1); } @@ -728,7 +728,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRegExpValidator_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -754,8 +754,8 @@ static void _call_cbs_validate_c2171_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QString &arg1 = args.read (heap); - int &arg2 = args.read (heap); + QString &arg1 = gsi::arg_reader() (args, heap); + int &arg2 = gsi::arg_reader() (args, heap); ret.write::target_type > ((qt_gsi::Converter::target_type)((QRegExpValidator_Adaptor *)cls)->cbs_validate_c2171_0 (arg1, arg2)); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQRegularExpressionValidator.cc b/src/gsiqt/qt5/QtGui/gsiDeclQRegularExpressionValidator.cc index fbc8a0e07..8987cffb4 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQRegularExpressionValidator.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQRegularExpressionValidator.cc @@ -465,7 +465,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRegularExpressionValidator_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -489,7 +489,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRegularExpressionValidator_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -531,7 +531,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRegularExpressionValidator_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -555,7 +555,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QRegularExpressionValidator_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -580,8 +580,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QRegularExpressionValidator_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -604,7 +604,7 @@ static void _call_cbs_fixup_c1330_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QString &arg1 = args.read (heap); + QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRegularExpressionValidator_Adaptor *)cls)->cbs_fixup_c1330_0 (arg1); } @@ -728,7 +728,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRegularExpressionValidator_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -754,8 +754,8 @@ static void _call_cbs_validate_c2171_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QString &arg1 = args.read (heap); - int &arg2 = args.read (heap); + QString &arg1 = gsi::arg_reader() (args, heap); + int &arg2 = gsi::arg_reader() (args, heap); ret.write::target_type > ((qt_gsi::Converter::target_type)((QRegularExpressionValidator_Adaptor *)cls)->cbs_validate_c2171_0 (arg1, arg2)); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQScreen.cc b/src/gsiqt/qt5/QtGui/gsiDeclQScreen.cc index a30b6a4d6..d021bb96b 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQScreen.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQScreen.cc @@ -966,7 +966,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScreen_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -990,7 +990,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScreen_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1032,7 +1032,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScreen_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1056,7 +1056,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QScreen_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1081,8 +1081,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QScreen_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1313,7 +1313,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScreen_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQStandardItem.cc b/src/gsiqt/qt5/QtGui/gsiDeclQStandardItem.cc index 106560c1e..9d9907aaa 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQStandardItem.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQStandardItem.cc @@ -1977,7 +1977,7 @@ static void _call_cbs_data_c767_1 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::UserRole + 1, heap); ret.write ((QVariant)((QStandardItem_Adaptor *)cls)->cbs_data_c767_1 (arg1)); } @@ -2015,7 +2015,7 @@ static void _call_cbs_operator_lt__c2610_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStandardItem &arg1 = args.read (heap); + const QStandardItem &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QStandardItem_Adaptor *)cls)->cbs_operator_lt__c2610_0 (arg1)); } @@ -2038,7 +2038,7 @@ static void _call_cbs_read_1697_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDataStream &arg1 = args.read (heap); + QDataStream &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItem_Adaptor *)cls)->cbs_read_1697_0 (arg1); } @@ -2064,8 +2064,8 @@ static void _call_cbs_setData_2778_1 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVariant &arg1 = args.read (heap); - int arg2 = args.read (heap); + const QVariant &arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::UserRole + 1, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItem_Adaptor *)cls)->cbs_setData_2778_1 (arg1, arg2); } @@ -2108,7 +2108,7 @@ static void _call_cbs_write_c1697_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDataStream &arg1 = args.read (heap); + QDataStream &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItem_Adaptor *)cls)->cbs_write_c1697_0 (arg1); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQStandardItemModel.cc b/src/gsiqt/qt5/QtGui/gsiDeclQStandardItemModel.cc index 782e34077..8a78ad67d 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQStandardItemModel.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQStandardItemModel.cc @@ -2629,7 +2629,7 @@ static void _call_cbs_buddy_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QStandardItemModel_Adaptor *)cls)->cbs_buddy_c2395_0 (arg1)); } @@ -2660,11 +2660,11 @@ static void _call_cbs_canDropMimeData_c7425_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMimeData *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - const QModelIndex &arg5 = args.read (heap); + const QMimeData *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + const QModelIndex &arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QStandardItemModel_Adaptor *)cls)->cbs_canDropMimeData_c7425_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -2687,7 +2687,7 @@ static void _call_cbs_canFetchMore_c2395_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QStandardItemModel_Adaptor *)cls)->cbs_canFetchMore_c2395_0 (arg1)); } @@ -2754,7 +2754,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItemModel_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -2778,7 +2778,7 @@ static void _call_cbs_columnCount_c2395_1 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((int)((QStandardItemModel_Adaptor *)cls)->cbs_columnCount_c2395_1 (arg1)); } @@ -3005,7 +3005,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItemModel_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -3031,8 +3031,8 @@ static void _call_cbs_data_c3054_1 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::DisplayRole, heap); ret.write ((QVariant)((QStandardItemModel_Adaptor *)cls)->cbs_data_c3054_1 (arg1, arg2)); } @@ -3124,7 +3124,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItemModel_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -3156,11 +3156,11 @@ static void _call_cbs_dropMimeData_7425_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMimeData *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - const QModelIndex &arg5 = args.read (heap); + const QMimeData *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + const QModelIndex &arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QStandardItemModel_Adaptor *)cls)->cbs_dropMimeData_7425_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -3310,7 +3310,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QStandardItemModel_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -3335,8 +3335,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QStandardItemModel_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -3359,7 +3359,7 @@ static void _call_cbs_fetchMore_2395_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItemModel_Adaptor *)cls)->cbs_fetchMore_2395_0 (arg1); } @@ -3383,7 +3383,7 @@ static void _call_cbs_flags_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QFlags)((QStandardItemModel_Adaptor *)cls)->cbs_flags_c2395_0 (arg1)); } @@ -3406,7 +3406,7 @@ static void _call_cbs_hasChildren_c2395_1 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QStandardItemModel_Adaptor *)cls)->cbs_hasChildren_c2395_1 (arg1)); } @@ -3433,9 +3433,9 @@ static void _call_cbs_headerData_c3231_1 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::DisplayRole, heap); ret.write ((QVariant)((QStandardItemModel_Adaptor *)cls)->cbs_headerData_c3231_1 (arg1, arg2, arg3)); } @@ -3486,9 +3486,9 @@ static void _call_cbs_index_c3713_1 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((QModelIndex)((QStandardItemModel_Adaptor *)cls)->cbs_index_c3713_1 (arg1, arg2, arg3)); } @@ -3515,9 +3515,9 @@ static void _call_cbs_insertColumns_3713_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QStandardItemModel_Adaptor *)cls)->cbs_insertColumns_3713_1 (arg1, arg2, arg3)); } @@ -3544,9 +3544,9 @@ static void _call_cbs_insertRows_3713_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QStandardItemModel_Adaptor *)cls)->cbs_insertRows_3713_1 (arg1, arg2, arg3)); } @@ -3605,7 +3605,7 @@ static void _call_cbs_itemData_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QMap)((QStandardItemModel_Adaptor *)cls)->cbs_itemData_c2395_0 (arg1)); } @@ -3678,11 +3678,11 @@ static void _call_cbs_match_c7932_2 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - const QVariant &arg3 = args.read (heap); - int arg4 = args.read (heap); - QFlags arg5 = args.read > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QVariant &arg3 = gsi::arg_reader() (args, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (1, heap); + QFlags arg5 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (Qt::MatchFlags(Qt::MatchStartsWith|Qt::MatchWrap), heap); ret.write > ((QList)((QStandardItemModel_Adaptor *)cls)->cbs_match_c7932_2 (arg1, arg2, arg3, arg4, arg5)); } @@ -3705,7 +3705,7 @@ static void _call_cbs_mimeData_c3010_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); ret.write ((QMimeData *)((QStandardItemModel_Adaptor *)cls)->cbs_mimeData_c3010_0 (arg1)); } @@ -3783,11 +3783,11 @@ static void _call_cbs_moveColumns_6659_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - const QModelIndex &arg4 = args.read (heap); - int arg5 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QModelIndex &arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QStandardItemModel_Adaptor *)cls)->cbs_moveColumns_6659_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -3818,11 +3818,11 @@ static void _call_cbs_moveRows_6659_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - const QModelIndex &arg4 = args.read (heap); - int arg5 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QModelIndex &arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QStandardItemModel_Adaptor *)cls)->cbs_moveRows_6659_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -3863,7 +3863,7 @@ static void _call_cbs_parent_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QStandardItemModel_Adaptor *)cls)->cbs_parent_c2395_0 (arg1)); } @@ -3922,9 +3922,9 @@ static void _call_cbs_removeColumns_3713_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QStandardItemModel_Adaptor *)cls)->cbs_removeColumns_3713_1 (arg1, arg2, arg3)); } @@ -3951,9 +3951,9 @@ static void _call_cbs_removeRows_3713_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QStandardItemModel_Adaptor *)cls)->cbs_removeRows_3713_1 (arg1, arg2, arg3)); } @@ -4030,7 +4030,7 @@ static void _call_cbs_rowCount_c2395_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((int)((QStandardItemModel_Adaptor *)cls)->cbs_rowCount_c2395_1 (arg1)); } @@ -4241,9 +4241,9 @@ static void _call_cbs_setData_5065_1 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::EditRole, heap); ret.write ((bool)((QStandardItemModel_Adaptor *)cls)->cbs_setData_5065_1 (arg1, arg2, arg3)); } @@ -4272,10 +4272,10 @@ static void _call_cbs_setHeaderData_5242_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - const QVariant &arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + const QVariant &arg3 = gsi::arg_reader() (args, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::EditRole, heap); ret.write ((bool)((QStandardItemModel_Adaptor *)cls)->cbs_setHeaderData_5242_1 (arg1, arg2, arg3, arg4)); } @@ -4300,8 +4300,8 @@ static void _call_cbs_setItemData_5414_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QMap &arg2 = args.read & > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QMap &arg2 = gsi::arg_reader & >() (args, heap); ret.write ((bool)((QStandardItemModel_Adaptor *)cls)->cbs_setItemData_5414_0 (arg1, arg2)); } @@ -4328,9 +4328,9 @@ static void _call_cbs_sibling_c3713_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QStandardItemModel_Adaptor *)cls)->cbs_sibling_c3713_0 (arg1, arg2, arg3)); } @@ -4355,8 +4355,8 @@ static void _call_cbs_sort_2340_1 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::AscendingOrder), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItemModel_Adaptor *)cls)->cbs_sort_2340_1 (arg1, arg2); } @@ -4380,7 +4380,7 @@ static void _call_cbs_span_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QSize)((QStandardItemModel_Adaptor *)cls)->cbs_span_c2395_0 (arg1)); } @@ -4460,7 +4460,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItemModel_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQStyleHints.cc b/src/gsiqt/qt5/QtGui/gsiDeclQStyleHints.cc index d727e6079..71a40e34c 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQStyleHints.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQStyleHints.cc @@ -896,7 +896,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStyleHints_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -938,7 +938,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStyleHints_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -980,7 +980,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStyleHints_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1004,7 +1004,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QStyleHints_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1029,8 +1029,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QStyleHints_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1261,7 +1261,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStyleHints_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQSyntaxHighlighter.cc b/src/gsiqt/qt5/QtGui/gsiDeclQSyntaxHighlighter.cc index 73e7d1909..ab8b13ef2 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQSyntaxHighlighter.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQSyntaxHighlighter.cc @@ -476,7 +476,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSyntaxHighlighter_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -542,7 +542,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSyntaxHighlighter_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -584,7 +584,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSyntaxHighlighter_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -608,7 +608,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSyntaxHighlighter_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -633,8 +633,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSyntaxHighlighter_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -675,7 +675,7 @@ static void _call_cbs_highlightBlock_2025_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSyntaxHighlighter_Adaptor *)cls)->cbs_highlightBlock_2025_0 (arg1); } @@ -908,7 +908,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSyntaxHighlighter_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQTextBlockGroup.cc b/src/gsiqt/qt5/QtGui/gsiDeclQTextBlockGroup.cc index e335510bc..273f55acf 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQTextBlockGroup.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQTextBlockGroup.cc @@ -341,7 +341,7 @@ static void _call_cbs_blockFormatChanged_2306_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextBlock &arg1 = args.read (heap); + const QTextBlock &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBlockGroup_Adaptor *)cls)->cbs_blockFormatChanged_2306_0 (arg1); } @@ -365,7 +365,7 @@ static void _call_cbs_blockInserted_2306_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextBlock &arg1 = args.read (heap); + const QTextBlock &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBlockGroup_Adaptor *)cls)->cbs_blockInserted_2306_0 (arg1); } @@ -403,7 +403,7 @@ static void _call_cbs_blockRemoved_2306_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextBlock &arg1 = args.read (heap); + const QTextBlock &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBlockGroup_Adaptor *)cls)->cbs_blockRemoved_2306_0 (arg1); } @@ -427,7 +427,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBlockGroup_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -451,7 +451,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBlockGroup_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -493,7 +493,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBlockGroup_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -517,7 +517,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextBlockGroup_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -542,8 +542,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextBlockGroup_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -667,7 +667,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBlockGroup_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQTextDocument.cc b/src/gsiqt/qt5/QtGui/gsiDeclQTextDocument.cc index c4785cf7a..8f1e52d61 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQTextDocument.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQTextDocument.cc @@ -2022,7 +2022,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextDocument_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -2104,7 +2104,7 @@ static void _call_cbs_createObject_2432_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextFormat &arg1 = args.read (heap); + const QTextFormat &arg1 = gsi::arg_reader() (args, heap); ret.write ((QTextObject *)((QTextDocument_Adaptor *)cls)->cbs_createObject_2432_0 (arg1)); } @@ -2145,7 +2145,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextDocument_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -2187,7 +2187,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextDocument_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -2225,7 +2225,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextDocument_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -2250,8 +2250,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextDocument_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -2294,8 +2294,8 @@ static void _call_cbs_loadResource_2360_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QUrl &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QUrl &arg2 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QTextDocument_Adaptor *)cls)->cbs_loadResource_2360_0 (arg1, arg2)); } @@ -2418,7 +2418,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextDocument_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQTextFrame.cc b/src/gsiqt/qt5/QtGui/gsiDeclQTextFrame.cc index 6c0c5e301..3688f6ca9 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQTextFrame.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQTextFrame.cc @@ -446,7 +446,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextFrame_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -470,7 +470,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextFrame_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -512,7 +512,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextFrame_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -536,7 +536,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextFrame_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -561,8 +561,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextFrame_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -686,7 +686,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextFrame_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQTextList.cc b/src/gsiqt/qt5/QtGui/gsiDeclQTextList.cc index c12084961..3b11e9ef7 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQTextList.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQTextList.cc @@ -552,7 +552,7 @@ static void _call_cbs_blockFormatChanged_2306_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextBlock &arg1 = args.read (heap); + const QTextBlock &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextList_Adaptor *)cls)->cbs_blockFormatChanged_2306_0 (arg1); } @@ -576,7 +576,7 @@ static void _call_cbs_blockInserted_2306_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextBlock &arg1 = args.read (heap); + const QTextBlock &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextList_Adaptor *)cls)->cbs_blockInserted_2306_0 (arg1); } @@ -614,7 +614,7 @@ static void _call_cbs_blockRemoved_2306_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextBlock &arg1 = args.read (heap); + const QTextBlock &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextList_Adaptor *)cls)->cbs_blockRemoved_2306_0 (arg1); } @@ -638,7 +638,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextList_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -662,7 +662,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextList_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -704,7 +704,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextList_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -728,7 +728,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextList_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -753,8 +753,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextList_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -859,7 +859,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextList_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQTextObject.cc b/src/gsiqt/qt5/QtGui/gsiDeclQTextObject.cc index b3c8ab83a..3ad2c14dc 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQTextObject.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQTextObject.cc @@ -351,7 +351,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextObject_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -375,7 +375,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextObject_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -417,7 +417,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextObject_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -441,7 +441,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextObject_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -466,8 +466,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextObject_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -591,7 +591,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextObject_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQTextObjectInterface.cc b/src/gsiqt/qt5/QtGui/gsiDeclQTextObjectInterface.cc index e14fa65b1..3bc03ba1c 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQTextObjectInterface.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQTextObjectInterface.cc @@ -207,11 +207,11 @@ static void _call_cbs_drawObject_8010_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QRectF &arg2 = args.read (heap); - QTextDocument *arg3 = args.read (heap); - int arg4 = args.read (heap); - const QTextFormat &arg5 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QRectF &arg2 = gsi::arg_reader() (args, heap); + QTextDocument *arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + const QTextFormat &arg5 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextObjectInterface_Adaptor *)cls)->cbs_drawObject_8010_0 (arg1, arg2, arg3, arg4, arg5); } @@ -239,9 +239,9 @@ static void _call_cbs_intrinsicSize_4938_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTextDocument *arg1 = args.read (heap); - int arg2 = args.read (heap); - const QTextFormat &arg3 = args.read (heap); + QTextDocument *arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QTextFormat &arg3 = gsi::arg_reader() (args, heap); ret.write ((QSizeF)((QTextObjectInterface_Adaptor *)cls)->cbs_intrinsicSize_4938_0 (arg1, arg2, arg3)); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQTextTable.cc b/src/gsiqt/qt5/QtGui/gsiDeclQTextTable.cc index 27b361bd8..905c054b1 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQTextTable.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQTextTable.cc @@ -725,7 +725,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextTable_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -749,7 +749,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextTable_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -791,7 +791,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextTable_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -815,7 +815,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextTable_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -840,8 +840,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextTable_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -946,7 +946,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextTable_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQValidator.cc b/src/gsiqt/qt5/QtGui/gsiDeclQValidator.cc index f25825d77..e109b4776 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQValidator.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQValidator.cc @@ -447,7 +447,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QValidator_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -471,7 +471,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QValidator_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -513,7 +513,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QValidator_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -537,7 +537,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QValidator_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -562,8 +562,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QValidator_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -586,7 +586,7 @@ static void _call_cbs_fixup_c1330_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QString &arg1 = args.read (heap); + QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QValidator_Adaptor *)cls)->cbs_fixup_c1330_0 (arg1); } @@ -692,7 +692,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QValidator_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -718,8 +718,8 @@ static void _call_cbs_validate_c2171_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QString &arg1 = args.read (heap); - int &arg2 = args.read (heap); + QString &arg1 = gsi::arg_reader() (args, heap); + int &arg2 = gsi::arg_reader() (args, heap); ret.write::target_type > ((qt_gsi::Converter::target_type)((QValidator_Adaptor *)cls)->cbs_validate_c2171_0 (arg1, arg2)); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQWindow.cc b/src/gsiqt/qt5/QtGui/gsiDeclQWindow.cc index 46e0f2d37..f94c734a4 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQWindow.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQWindow.cc @@ -2849,7 +2849,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWindow_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -2891,7 +2891,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWindow_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -2933,7 +2933,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWindow_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -2957,7 +2957,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QWindow_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -2982,8 +2982,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QWindow_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -3006,7 +3006,7 @@ static void _call_cbs_exposeEvent_1845_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QExposeEvent *arg1 = args.read (heap); + QExposeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWindow_Adaptor *)cls)->cbs_exposeEvent_1845_0 (arg1); } @@ -3030,7 +3030,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWindow_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -3091,7 +3091,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWindow_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -3152,7 +3152,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWindow_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -3194,7 +3194,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWindow_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -3218,7 +3218,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWindow_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -3332,7 +3332,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWindow_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -3356,7 +3356,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWindow_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -3380,7 +3380,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWindow_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -3404,7 +3404,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWindow_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -3428,7 +3428,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWindow_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -3456,9 +3456,9 @@ static void _call_cbs_nativeEvent_4678_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - long int *arg3 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + long int *arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QWindow_Adaptor *)cls)->cbs_nativeEvent_4678_0 (arg1, arg2, arg3)); } @@ -3535,7 +3535,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWindow_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -3605,7 +3605,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWindow_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -3667,7 +3667,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWindow_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -3691,7 +3691,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWindow_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -3715,7 +3715,7 @@ static void _call_cbs_touchEvent_1732_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTouchEvent *arg1 = args.read (heap); + QTouchEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWindow_Adaptor *)cls)->cbs_touchEvent_1732_0 (arg1); } @@ -3775,7 +3775,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWindow_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQAbstractAudioDeviceInfo.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQAbstractAudioDeviceInfo.cc index dd9f41994..36e96ac86 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQAbstractAudioDeviceInfo.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQAbstractAudioDeviceInfo.cc @@ -594,7 +594,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractAudioDeviceInfo_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -618,7 +618,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractAudioDeviceInfo_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -679,7 +679,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractAudioDeviceInfo_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -703,7 +703,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractAudioDeviceInfo_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -728,8 +728,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractAudioDeviceInfo_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -752,7 +752,7 @@ static void _call_cbs_isFormatSupported_c2509_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QAudioFormat &arg1 = args.read (heap); + const QAudioFormat &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractAudioDeviceInfo_Adaptor *)cls)->cbs_isFormatSupported_c2509_0 (arg1)); } @@ -990,7 +990,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractAudioDeviceInfo_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQAbstractAudioInput.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQAbstractAudioInput.cc index 1d60f8100..194a933da 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQAbstractAudioInput.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQAbstractAudioInput.cc @@ -1035,7 +1035,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractAudioInput_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1059,7 +1059,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractAudioInput_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1101,7 +1101,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractAudioInput_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1181,7 +1181,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractAudioInput_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1206,8 +1206,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractAudioInput_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1442,7 +1442,7 @@ static void _call_cbs_setBufferSize_767_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractAudioInput_Adaptor *)cls)->cbs_setBufferSize_767_0 (arg1); } @@ -1466,7 +1466,7 @@ static void _call_cbs_setFormat_2509_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QAudioFormat &arg1 = args.read (heap); + const QAudioFormat &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractAudioInput_Adaptor *)cls)->cbs_setFormat_2509_0 (arg1); } @@ -1490,7 +1490,7 @@ static void _call_cbs_setNotifyInterval_767_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractAudioInput_Adaptor *)cls)->cbs_setNotifyInterval_767_0 (arg1); } @@ -1514,7 +1514,7 @@ static void _call_cbs_setVolume_1071_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractAudioInput_Adaptor *)cls)->cbs_setVolume_1071_0 (arg1); } @@ -1538,7 +1538,7 @@ static void _call_cbs_start_1447_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QIODevice *arg1 = args.read (heap); + QIODevice *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractAudioInput_Adaptor *)cls)->cbs_start_1447_0 (arg1); } @@ -1658,7 +1658,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractAudioInput_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQAbstractAudioOutput.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQAbstractAudioOutput.cc index 969c88384..b152add7d 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQAbstractAudioOutput.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQAbstractAudioOutput.cc @@ -1122,7 +1122,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractAudioOutput_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1146,7 +1146,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractAudioOutput_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1188,7 +1188,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractAudioOutput_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1268,7 +1268,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractAudioOutput_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1293,8 +1293,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractAudioOutput_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1529,7 +1529,7 @@ static void _call_cbs_setBufferSize_767_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractAudioOutput_Adaptor *)cls)->cbs_setBufferSize_767_0 (arg1); } @@ -1553,7 +1553,7 @@ static void _call_cbs_setCategory_2025_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractAudioOutput_Adaptor *)cls)->cbs_setCategory_2025_0 (arg1); } @@ -1577,7 +1577,7 @@ static void _call_cbs_setFormat_2509_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QAudioFormat &arg1 = args.read (heap); + const QAudioFormat &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractAudioOutput_Adaptor *)cls)->cbs_setFormat_2509_0 (arg1); } @@ -1601,7 +1601,7 @@ static void _call_cbs_setNotifyInterval_767_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractAudioOutput_Adaptor *)cls)->cbs_setNotifyInterval_767_0 (arg1); } @@ -1625,7 +1625,7 @@ static void _call_cbs_setVolume_1071_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractAudioOutput_Adaptor *)cls)->cbs_setVolume_1071_0 (arg1); } @@ -1649,7 +1649,7 @@ static void _call_cbs_start_1447_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QIODevice *arg1 = args.read (heap); + QIODevice *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractAudioOutput_Adaptor *)cls)->cbs_start_1447_0 (arg1); } @@ -1769,7 +1769,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractAudioOutput_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQAbstractVideoFilter.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQAbstractVideoFilter.cc index 60e7db7e4..5919a24ef 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQAbstractVideoFilter.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQAbstractVideoFilter.cc @@ -401,7 +401,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractVideoFilter_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -444,7 +444,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractVideoFilter_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -486,7 +486,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractVideoFilter_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -510,7 +510,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractVideoFilter_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -535,8 +535,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractVideoFilter_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -641,7 +641,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractVideoFilter_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQAbstractVideoSurface.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQAbstractVideoSurface.cc index 9c03ce047..ce4ba62cb 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQAbstractVideoSurface.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQAbstractVideoSurface.cc @@ -648,7 +648,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractVideoSurface_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -672,7 +672,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractVideoSurface_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -714,7 +714,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractVideoSurface_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -738,7 +738,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractVideoSurface_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -763,8 +763,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractVideoSurface_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -787,7 +787,7 @@ static void _call_cbs_isFormatSupported_c3227_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVideoSurfaceFormat &arg1 = args.read (heap); + const QVideoSurfaceFormat &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractVideoSurface_Adaptor *)cls)->cbs_isFormatSupported_c3227_0 (arg1)); } @@ -846,7 +846,7 @@ static void _call_cbs_nearestFormat_c3227_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVideoSurfaceFormat &arg1 = args.read (heap); + const QVideoSurfaceFormat &arg1 = gsi::arg_reader() (args, heap); ret.write ((QVideoSurfaceFormat)((QAbstractVideoSurface_Adaptor *)cls)->cbs_nearestFormat_c3227_0 (arg1)); } @@ -887,7 +887,7 @@ static void _call_cbs_present_2388_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVideoFrame &arg1 = args.read (heap); + const QVideoFrame &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractVideoSurface_Adaptor *)cls)->cbs_present_2388_0 (arg1)); } @@ -994,7 +994,7 @@ static void _call_cbs_start_3227_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVideoSurfaceFormat &arg1 = args.read (heap); + const QVideoSurfaceFormat &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractVideoSurface_Adaptor *)cls)->cbs_start_3227_0 (arg1)); } @@ -1051,7 +1051,7 @@ static void _call_cbs_supportedPixelFormats_c3564_1 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QAbstractVideoBuffer::NoHandle), heap); ret.write > ((QList)((QAbstractVideoSurface_Adaptor *)cls)->cbs_supportedPixelFormats_c3564_1 (arg1)); } @@ -1092,7 +1092,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractVideoSurface_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioDecoder.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioDecoder.cc index 9001a962e..69ca3f16b 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioDecoder.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioDecoder.cc @@ -904,7 +904,7 @@ static void _call_cbs_bind_1302_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAudioDecoder_Adaptor *)cls)->cbs_bind_1302_0 (arg1)); } @@ -959,7 +959,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAudioDecoder_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -983,7 +983,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAudioDecoder_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1025,7 +1025,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAudioDecoder_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1085,7 +1085,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAudioDecoder_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1110,8 +1110,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAudioDecoder_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1426,7 +1426,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAudioDecoder_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -1450,7 +1450,7 @@ static void _call_cbs_unbind_1302_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAudioDecoder_Adaptor *)cls)->cbs_unbind_1302_0 (arg1); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioDecoderControl.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioDecoderControl.cc index 6279cb746..54a4a56a5 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioDecoderControl.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioDecoderControl.cc @@ -872,7 +872,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAudioDecoderControl_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -896,7 +896,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAudioDecoderControl_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -938,7 +938,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAudioDecoderControl_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1020,7 +1020,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAudioDecoderControl_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1045,8 +1045,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAudioDecoderControl_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1239,7 +1239,7 @@ static void _call_cbs_setAudioFormat_2509_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QAudioFormat &arg1 = args.read (heap); + const QAudioFormat &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAudioDecoderControl_Adaptor *)cls)->cbs_setAudioFormat_2509_0 (arg1); } @@ -1263,7 +1263,7 @@ static void _call_cbs_setSourceDevice_1447_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QIODevice *arg1 = args.read (heap); + QIODevice *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAudioDecoderControl_Adaptor *)cls)->cbs_setSourceDevice_1447_0 (arg1); } @@ -1287,7 +1287,7 @@ static void _call_cbs_setSourceFilename_2025_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAudioDecoderControl_Adaptor *)cls)->cbs_setSourceFilename_2025_0 (arg1); } @@ -1440,7 +1440,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAudioDecoderControl_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioEncoderSettingsControl.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioEncoderSettingsControl.cc index 7b5ab8967..f5ef70012 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioEncoderSettingsControl.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioEncoderSettingsControl.cc @@ -500,7 +500,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAudioEncoderSettingsControl_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -524,7 +524,7 @@ static void _call_cbs_codecDescription_c2025_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QAudioEncoderSettingsControl_Adaptor *)cls)->cbs_codecDescription_c2025_0 (arg1)); } @@ -547,7 +547,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAudioEncoderSettingsControl_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -589,7 +589,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAudioEncoderSettingsControl_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -613,7 +613,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAudioEncoderSettingsControl_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -638,8 +638,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAudioEncoderSettingsControl_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -744,7 +744,7 @@ static void _call_cbs_setAudioSettings_3445_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QAudioEncoderSettings &arg1 = args.read (heap); + const QAudioEncoderSettings &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAudioEncoderSettingsControl_Adaptor *)cls)->cbs_setAudioSettings_3445_0 (arg1); } @@ -789,8 +789,8 @@ static void _call_cbs_supportedSampleRates_c4387_1 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QAudioEncoderSettings &arg1 = args.read (heap); - bool *arg2 = args.read (heap); + const QAudioEncoderSettings &arg1 = gsi::arg_reader() (args, heap); + bool *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); ret.write > ((QList)((QAudioEncoderSettingsControl_Adaptor *)cls)->cbs_supportedSampleRates_c4387_1 (arg1, arg2)); } @@ -813,7 +813,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAudioEncoderSettingsControl_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioInput.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioInput.cc index 3a2b43ba2..5e1f363df 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioInput.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioInput.cc @@ -706,7 +706,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAudioInput_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -730,7 +730,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAudioInput_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -772,7 +772,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAudioInput_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -796,7 +796,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAudioInput_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -821,8 +821,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAudioInput_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -959,7 +959,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAudioInput_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioInputSelectorControl.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioInputSelectorControl.cc index 97f432c9f..43a367d84 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioInputSelectorControl.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioInputSelectorControl.cc @@ -555,7 +555,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAudioInputSelectorControl_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -579,7 +579,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAudioInputSelectorControl_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -640,7 +640,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAudioInputSelectorControl_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -664,7 +664,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAudioInputSelectorControl_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -689,8 +689,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAudioInputSelectorControl_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -713,7 +713,7 @@ static void _call_cbs_inputDescription_c2025_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QAudioInputSelectorControl_Adaptor *)cls)->cbs_inputDescription_c2025_0 (arg1)); } @@ -818,7 +818,7 @@ static void _call_cbs_setActiveInput_2025_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAudioInputSelectorControl_Adaptor *)cls)->cbs_setActiveInput_2025_0 (arg1); } @@ -842,7 +842,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAudioInputSelectorControl_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioOutput.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioOutput.cc index 7491ac097..b30a9d164 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioOutput.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioOutput.cc @@ -743,7 +743,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAudioOutput_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -767,7 +767,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAudioOutput_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -809,7 +809,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAudioOutput_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -833,7 +833,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAudioOutput_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -858,8 +858,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAudioOutput_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -996,7 +996,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAudioOutput_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioOutputSelectorControl.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioOutputSelectorControl.cc index cec11ded3..23cfee8dc 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioOutputSelectorControl.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioOutputSelectorControl.cc @@ -555,7 +555,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAudioOutputSelectorControl_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -579,7 +579,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAudioOutputSelectorControl_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -640,7 +640,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAudioOutputSelectorControl_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -664,7 +664,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAudioOutputSelectorControl_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -689,8 +689,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAudioOutputSelectorControl_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -749,7 +749,7 @@ static void _call_cbs_outputDescription_c2025_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QAudioOutputSelectorControl_Adaptor *)cls)->cbs_outputDescription_c2025_0 (arg1)); } @@ -818,7 +818,7 @@ static void _call_cbs_setActiveOutput_2025_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAudioOutputSelectorControl_Adaptor *)cls)->cbs_setActiveOutput_2025_0 (arg1); } @@ -842,7 +842,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAudioOutputSelectorControl_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioProbe.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioProbe.cc index 9b6df922b..8a5fd25d4 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioProbe.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioProbe.cc @@ -401,7 +401,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAudioProbe_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -425,7 +425,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAudioProbe_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -467,7 +467,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAudioProbe_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -491,7 +491,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAudioProbe_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -516,8 +516,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAudioProbe_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -636,7 +636,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAudioProbe_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioRecorder.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioRecorder.cc index 9468bc0df..53d1f0403 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioRecorder.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioRecorder.cc @@ -627,7 +627,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAudioRecorder_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -651,7 +651,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAudioRecorder_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -693,7 +693,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAudioRecorder_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -753,7 +753,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAudioRecorder_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -778,8 +778,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAudioRecorder_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -992,7 +992,7 @@ static void _call_cbs_setMediaObject_1782_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMediaObject *arg1 = args.read (heap); + QMediaObject *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAudioRecorder_Adaptor *)cls)->cbs_setMediaObject_1782_0 (arg1)); } @@ -1051,7 +1051,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAudioRecorder_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioRoleControl.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioRoleControl.cc index d103d5b67..6867ee7ad 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioRoleControl.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioRoleControl.cc @@ -446,7 +446,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAudioRoleControl_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -470,7 +470,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAudioRoleControl_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -512,7 +512,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAudioRoleControl_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -536,7 +536,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAudioRoleControl_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -561,8 +561,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAudioRoleControl_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -667,7 +667,7 @@ static void _call_cbs_setAudioRole_1533_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAudioRoleControl_Adaptor *)cls)->cbs_setAudioRole_1533_0 (arg1); } @@ -710,7 +710,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAudioRoleControl_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioSystemFactoryInterface.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioSystemFactoryInterface.cc index 9705ac104..529ee5c8a 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioSystemFactoryInterface.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioSystemFactoryInterface.cc @@ -250,7 +250,7 @@ static void _call_cbs_availableDevices_c1520_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write > ((QList)((QAudioSystemFactoryInterface_Adaptor *)cls)->cbs_availableDevices_c1520_0 (arg1)); } @@ -275,8 +275,8 @@ static void _call_cbs_createDeviceInfo_3721_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QAbstractAudioDeviceInfo *)((QAudioSystemFactoryInterface_Adaptor *)cls)->cbs_createDeviceInfo_3721_0 (arg1, arg2)); } @@ -299,7 +299,7 @@ static void _call_cbs_createInput_2309_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); ret.write ((QAbstractAudioInput *)((QAudioSystemFactoryInterface_Adaptor *)cls)->cbs_createInput_2309_0 (arg1)); } @@ -322,7 +322,7 @@ static void _call_cbs_createOutput_2309_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); ret.write ((QAbstractAudioOutput *)((QAudioSystemFactoryInterface_Adaptor *)cls)->cbs_createOutput_2309_0 (arg1)); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioSystemPlugin.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioSystemPlugin.cc index af4a510ac..5ea45a3c2 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioSystemPlugin.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioSystemPlugin.cc @@ -520,7 +520,7 @@ static void _call_cbs_availableDevices_c1520_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write > ((QList)((QAudioSystemPlugin_Adaptor *)cls)->cbs_availableDevices_c1520_0 (arg1)); } @@ -543,7 +543,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAudioSystemPlugin_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -569,8 +569,8 @@ static void _call_cbs_createDeviceInfo_3721_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QAbstractAudioDeviceInfo *)((QAudioSystemPlugin_Adaptor *)cls)->cbs_createDeviceInfo_3721_0 (arg1, arg2)); } @@ -593,7 +593,7 @@ static void _call_cbs_createInput_2309_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); ret.write ((QAbstractAudioInput *)((QAudioSystemPlugin_Adaptor *)cls)->cbs_createInput_2309_0 (arg1)); } @@ -616,7 +616,7 @@ static void _call_cbs_createOutput_2309_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); ret.write ((QAbstractAudioOutput *)((QAudioSystemPlugin_Adaptor *)cls)->cbs_createOutput_2309_0 (arg1)); } @@ -639,7 +639,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAudioSystemPlugin_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -681,7 +681,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAudioSystemPlugin_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -705,7 +705,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAudioSystemPlugin_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -730,8 +730,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAudioSystemPlugin_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -836,7 +836,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAudioSystemPlugin_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQCamera.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQCamera.cc index dc6482c55..6b5336966 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQCamera.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQCamera.cc @@ -1282,7 +1282,7 @@ static void _call_cbs_bind_1302_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCamera_Adaptor *)cls)->cbs_bind_1302_0 (arg1)); } @@ -1323,7 +1323,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCamera_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1347,7 +1347,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCamera_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1389,7 +1389,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCamera_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1431,7 +1431,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCamera_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1456,8 +1456,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCamera_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1799,7 +1799,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCamera_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -1823,7 +1823,7 @@ static void _call_cbs_unbind_1302_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCamera_Adaptor *)cls)->cbs_unbind_1302_0 (arg1); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraCaptureBufferFormatControl.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraCaptureBufferFormatControl.cc index 8bba1a5f0..a1923d3a2 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraCaptureBufferFormatControl.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraCaptureBufferFormatControl.cc @@ -446,7 +446,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCameraCaptureBufferFormatControl_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -470,7 +470,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCameraCaptureBufferFormatControl_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -512,7 +512,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCameraCaptureBufferFormatControl_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -536,7 +536,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCameraCaptureBufferFormatControl_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -561,8 +561,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCameraCaptureBufferFormatControl_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -667,7 +667,7 @@ static void _call_cbs_setBufferFormat_2758_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCameraCaptureBufferFormatControl_Adaptor *)cls)->cbs_setBufferFormat_2758_0 (arg1); } @@ -710,7 +710,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCameraCaptureBufferFormatControl_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraCaptureDestinationControl.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraCaptureDestinationControl.cc index 3155f4cbf..b6bc4fa10 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraCaptureDestinationControl.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraCaptureDestinationControl.cc @@ -451,7 +451,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCameraCaptureDestinationControl_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -475,7 +475,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCameraCaptureDestinationControl_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -517,7 +517,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCameraCaptureDestinationControl_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -541,7 +541,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCameraCaptureDestinationControl_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -566,8 +566,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCameraCaptureDestinationControl_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -590,7 +590,7 @@ static void _call_cbs_isCaptureDestinationSupported_c4999_0 (const qt_gsi::Gener { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); ret.write ((bool)((QCameraCaptureDestinationControl_Adaptor *)cls)->cbs_isCaptureDestinationSupported_c4999_0 (arg1)); } @@ -695,7 +695,7 @@ static void _call_cbs_setCaptureDestination_4999_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCameraCaptureDestinationControl_Adaptor *)cls)->cbs_setCaptureDestination_4999_0 (arg1); } @@ -719,7 +719,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCameraCaptureDestinationControl_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraControl.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraControl.cc index 84897111d..65edab91e 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraControl.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraControl.cc @@ -580,8 +580,8 @@ static void _call_cbs_canChangeProperty_c5578_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((bool)((QCameraControl_Adaptor *)cls)->cbs_canChangeProperty_c5578_0 (arg1, arg2)); } @@ -641,7 +641,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCameraControl_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -665,7 +665,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCameraControl_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -707,7 +707,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCameraControl_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -752,7 +752,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCameraControl_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -777,8 +777,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCameraControl_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -801,7 +801,7 @@ static void _call_cbs_isCaptureModeSupported_c3027_0 (const qt_gsi::GenericMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); ret.write ((bool)((QCameraControl_Adaptor *)cls)->cbs_isCaptureModeSupported_c3027_0 (arg1)); } @@ -906,7 +906,7 @@ static void _call_cbs_setCaptureMode_3027_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCameraControl_Adaptor *)cls)->cbs_setCaptureMode_3027_0 (arg1); } @@ -930,7 +930,7 @@ static void _call_cbs_setState_1731_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCameraControl_Adaptor *)cls)->cbs_setState_1731_0 (arg1); } @@ -1028,7 +1028,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCameraControl_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraExposureControl.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraExposureControl.cc index 14305537b..e2dd9c3db 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraExposureControl.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraExposureControl.cc @@ -514,7 +514,7 @@ static void _call_cbs_actualValue_c4602_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QCameraExposureControl_Adaptor *)cls)->cbs_actualValue_c4602_0 (arg1)); } @@ -555,7 +555,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCameraExposureControl_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -579,7 +579,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCameraExposureControl_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -621,7 +621,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCameraExposureControl_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -645,7 +645,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCameraExposureControl_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -670,8 +670,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCameraExposureControl_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -694,7 +694,7 @@ static void _call_cbs_isParameterSupported_c4602_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((bool)((QCameraExposureControl_Adaptor *)cls)->cbs_isParameterSupported_c4602_0 (arg1)); } @@ -789,7 +789,7 @@ static void _call_cbs_requestedValue_c4602_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QCameraExposureControl_Adaptor *)cls)->cbs_requestedValue_c4602_0 (arg1)); } @@ -860,8 +860,8 @@ static void _call_cbs_setValue_6613_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QVariant &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCameraExposureControl_Adaptor *)cls)->cbs_setValue_6613_0 (arg1, arg2)); } @@ -886,8 +886,8 @@ static void _call_cbs_supportedParameterRange_c5544_0 (const qt_gsi::GenericMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - bool *arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + bool *arg2 = gsi::arg_reader() (args, heap); ret.write > ((QList)((QCameraExposureControl_Adaptor *)cls)->cbs_supportedParameterRange_c5544_0 (arg1, arg2)); } @@ -910,7 +910,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCameraExposureControl_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraFeedbackControl.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraFeedbackControl.cc index 94dd2ab81..bdc88fb41 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraFeedbackControl.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraFeedbackControl.cc @@ -494,7 +494,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCameraFeedbackControl_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -518,7 +518,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCameraFeedbackControl_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -560,7 +560,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCameraFeedbackControl_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -584,7 +584,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCameraFeedbackControl_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -609,8 +609,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCameraFeedbackControl_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -633,7 +633,7 @@ static void _call_cbs_isEventFeedbackEnabled_c3660_0 (const qt_gsi::GenericMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((bool)((QCameraFeedbackControl_Adaptor *)cls)->cbs_isEventFeedbackEnabled_c3660_0 (arg1)); } @@ -656,7 +656,7 @@ static void _call_cbs_isEventFeedbackLocked_c3660_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((bool)((QCameraFeedbackControl_Adaptor *)cls)->cbs_isEventFeedbackLocked_c3660_0 (arg1)); } @@ -733,7 +733,7 @@ static void _call_cbs_resetEventFeedback_3660_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCameraFeedbackControl_Adaptor *)cls)->cbs_resetEventFeedback_3660_0 (arg1); } @@ -787,8 +787,8 @@ static void _call_cbs_setEventFeedbackEnabled_4416_0 (const qt_gsi::GenericMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - bool arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + bool arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCameraFeedbackControl_Adaptor *)cls)->cbs_setEventFeedbackEnabled_4416_0 (arg1, arg2)); } @@ -813,8 +813,8 @@ static void _call_cbs_setEventFeedbackSound_5577_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QString &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCameraFeedbackControl_Adaptor *)cls)->cbs_setEventFeedbackSound_5577_0 (arg1, arg2)); } @@ -837,7 +837,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCameraFeedbackControl_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraFlashControl.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraFlashControl.cc index 1a8da25b8..dc219af32 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraFlashControl.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraFlashControl.cc @@ -446,7 +446,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCameraFlashControl_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -470,7 +470,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCameraFlashControl_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -512,7 +512,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCameraFlashControl_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -536,7 +536,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCameraFlashControl_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -561,8 +561,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCameraFlashControl_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -622,7 +622,7 @@ static void _call_cbs_isFlashModeSupported_c3656_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); ret.write ((bool)((QCameraFlashControl_Adaptor *)cls)->cbs_isFlashModeSupported_c3656_0 (arg1)); } @@ -746,7 +746,7 @@ static void _call_cbs_setFlashMode_3656_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCameraFlashControl_Adaptor *)cls)->cbs_setFlashMode_3656_0 (arg1); } @@ -770,7 +770,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCameraFlashControl_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraFocusControl.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraFocusControl.cc index 765c17181..a0b5eb945 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraFocusControl.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraFocusControl.cc @@ -646,7 +646,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCameraFocusControl_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -670,7 +670,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCameraFocusControl_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -749,7 +749,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCameraFocusControl_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -773,7 +773,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCameraFocusControl_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -798,8 +798,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCameraFocusControl_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -929,7 +929,7 @@ static void _call_cbs_isFocusModeSupported_c3327_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); ret.write ((bool)((QCameraFocusControl_Adaptor *)cls)->cbs_isFocusModeSupported_c3327_0 (arg1)); } @@ -952,7 +952,7 @@ static void _call_cbs_isFocusPointModeSupported_c3153_0 (const qt_gsi::GenericMe { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((bool)((QCameraFocusControl_Adaptor *)cls)->cbs_isFocusPointModeSupported_c3153_0 (arg1)); } @@ -1057,7 +1057,7 @@ static void _call_cbs_setCustomFocusPoint_1986_0 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCameraFocusControl_Adaptor *)cls)->cbs_setCustomFocusPoint_1986_0 (arg1); } @@ -1081,7 +1081,7 @@ static void _call_cbs_setFocusMode_3327_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCameraFocusControl_Adaptor *)cls)->cbs_setFocusMode_3327_0 (arg1); } @@ -1105,7 +1105,7 @@ static void _call_cbs_setFocusPointMode_3153_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCameraFocusControl_Adaptor *)cls)->cbs_setFocusPointMode_3153_0 (arg1); } @@ -1129,7 +1129,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCameraFocusControl_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraImageCapture.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraImageCapture.cc index 6ed37b52c..339cc07dd 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraImageCapture.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraImageCapture.cc @@ -843,7 +843,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCameraImageCapture_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -867,7 +867,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCameraImageCapture_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -909,7 +909,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCameraImageCapture_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -957,7 +957,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCameraImageCapture_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -982,8 +982,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCameraImageCapture_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1230,7 +1230,7 @@ static void _call_cbs_setMediaObject_1782_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMediaObject *arg1 = args.read (heap); + QMediaObject *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCameraImageCapture_Adaptor *)cls)->cbs_setMediaObject_1782_0 (arg1)); } @@ -1253,7 +1253,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCameraImageCapture_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraImageCaptureControl.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraImageCaptureControl.cc index ecca5fa42..ebbf6062c 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraImageCaptureControl.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraImageCaptureControl.cc @@ -543,7 +543,7 @@ static void _call_cbs_capture_2025_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QCameraImageCaptureControl_Adaptor *)cls)->cbs_capture_2025_0 (arg1)); } @@ -566,7 +566,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCameraImageCaptureControl_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -590,7 +590,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCameraImageCaptureControl_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -632,7 +632,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCameraImageCaptureControl_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -699,7 +699,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCameraImageCaptureControl_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -724,8 +724,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCameraImageCaptureControl_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -972,7 +972,7 @@ static void _call_cbs_setDriveMode_3320_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCameraImageCaptureControl_Adaptor *)cls)->cbs_setDriveMode_3320_0 (arg1); } @@ -996,7 +996,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCameraImageCaptureControl_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraImageProcessingControl.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraImageProcessingControl.cc index 03bb80057..d4970917e 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraImageProcessingControl.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraImageProcessingControl.cc @@ -457,7 +457,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCameraImageProcessingControl_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -481,7 +481,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCameraImageProcessingControl_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -523,7 +523,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCameraImageProcessingControl_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -547,7 +547,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCameraImageProcessingControl_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -572,8 +572,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCameraImageProcessingControl_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -596,7 +596,7 @@ static void _call_cbs_isParameterSupported_c5473_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((bool)((QCameraImageProcessingControl_Adaptor *)cls)->cbs_isParameterSupported_c5473_0 (arg1)); } @@ -621,8 +621,8 @@ static void _call_cbs_isParameterValueSupported_c7484_0 (const qt_gsi::GenericMe { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QVariant &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCameraImageProcessingControl_Adaptor *)cls)->cbs_isParameterValueSupported_c7484_0 (arg1, arg2)); } @@ -681,7 +681,7 @@ static void _call_cbs_parameter_c5473_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QCameraImageProcessingControl_Adaptor *)cls)->cbs_parameter_c5473_0 (arg1)); } @@ -752,8 +752,8 @@ static void _call_cbs_setParameter_7484_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QVariant &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCameraImageProcessingControl_Adaptor *)cls)->cbs_setParameter_7484_0 (arg1, arg2); } @@ -777,7 +777,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCameraImageProcessingControl_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraInfoControl.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraInfoControl.cc index 26e73746f..b3efac44e 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraInfoControl.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraInfoControl.cc @@ -374,7 +374,7 @@ static void _call_cbs_cameraOrientation_c2025_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QCameraInfoControl_Adaptor *)cls)->cbs_cameraOrientation_c2025_0 (arg1)); } @@ -397,7 +397,7 @@ static void _call_cbs_cameraPosition_c2025_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write::target_type > ((qt_gsi::Converter::target_type)((QCameraInfoControl_Adaptor *)cls)->cbs_cameraPosition_c2025_0 (arg1)); } @@ -420,7 +420,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCameraInfoControl_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -444,7 +444,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCameraInfoControl_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -486,7 +486,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCameraInfoControl_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -510,7 +510,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCameraInfoControl_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -535,8 +535,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCameraInfoControl_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -641,7 +641,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCameraInfoControl_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraLocksControl.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraLocksControl.cc index 133348cb9..2872d25fa 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraLocksControl.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraLocksControl.cc @@ -452,7 +452,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCameraLocksControl_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -476,7 +476,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCameraLocksControl_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -518,7 +518,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCameraLocksControl_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -542,7 +542,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCameraLocksControl_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -567,8 +567,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCameraLocksControl_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -609,7 +609,7 @@ static void _call_cbs_lockStatus_c2029_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write::target_type > ((qt_gsi::Converter::target_type)((QCameraLocksControl_Adaptor *)cls)->cbs_lockStatus_c2029_0 (arg1)); } @@ -692,7 +692,7 @@ static void _call_cbs_searchAndLock_2725_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCameraLocksControl_Adaptor *)cls)->cbs_searchAndLock_2725_0 (arg1); } @@ -763,7 +763,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCameraLocksControl_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -787,7 +787,7 @@ static void _call_cbs_unlock_2725_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCameraLocksControl_Adaptor *)cls)->cbs_unlock_2725_0 (arg1); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraViewfinderSettingsControl.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraViewfinderSettingsControl.cc index f7597852d..38c159ecc 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraViewfinderSettingsControl.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraViewfinderSettingsControl.cc @@ -416,7 +416,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCameraViewfinderSettingsControl_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -440,7 +440,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCameraViewfinderSettingsControl_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -482,7 +482,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCameraViewfinderSettingsControl_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -506,7 +506,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCameraViewfinderSettingsControl_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -531,8 +531,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCameraViewfinderSettingsControl_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -573,7 +573,7 @@ static void _call_cbs_isViewfinderParameterSupported_c5819_0 (const qt_gsi::Gene { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((bool)((QCameraViewfinderSettingsControl_Adaptor *)cls)->cbs_isViewfinderParameterSupported_c5819_0 (arg1)); } @@ -662,8 +662,8 @@ static void _call_cbs_setViewfinderParameter_7830_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QVariant &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCameraViewfinderSettingsControl_Adaptor *)cls)->cbs_setViewfinderParameter_7830_0 (arg1, arg2); } @@ -687,7 +687,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCameraViewfinderSettingsControl_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -711,7 +711,7 @@ static void _call_cbs_viewfinderParameter_c5819_0 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QCameraViewfinderSettingsControl_Adaptor *)cls)->cbs_viewfinderParameter_c5819_0 (arg1)); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraViewfinderSettingsControl2.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraViewfinderSettingsControl2.cc index 7a938ccc0..5aae47072 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraViewfinderSettingsControl2.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraViewfinderSettingsControl2.cc @@ -403,7 +403,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCameraViewfinderSettingsControl2_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -427,7 +427,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCameraViewfinderSettingsControl2_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -469,7 +469,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCameraViewfinderSettingsControl2_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -493,7 +493,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCameraViewfinderSettingsControl2_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -518,8 +518,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCameraViewfinderSettingsControl2_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -624,7 +624,7 @@ static void _call_cbs_setViewfinderSettings_3871_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QCameraViewfinderSettings &arg1 = args.read (heap); + const QCameraViewfinderSettings &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCameraViewfinderSettingsControl2_Adaptor *)cls)->cbs_setViewfinderSettings_3871_0 (arg1); } @@ -667,7 +667,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCameraViewfinderSettingsControl2_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraZoomControl.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraZoomControl.cc index 25d0dab77..0d52614ff 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraZoomControl.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraZoomControl.cc @@ -576,7 +576,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCameraZoomControl_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -674,7 +674,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCameraZoomControl_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -716,7 +716,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCameraZoomControl_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -740,7 +740,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCameraZoomControl_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -765,8 +765,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCameraZoomControl_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1019,7 +1019,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCameraZoomControl_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -1045,8 +1045,8 @@ static void _call_cbs_zoomTo_2034_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCameraZoomControl_Adaptor *)cls)->cbs_zoomTo_2034_0 (arg1, arg2); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQCustomAudioRoleControl.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQCustomAudioRoleControl.cc index 212325bdc..86ce651c1 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQCustomAudioRoleControl.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQCustomAudioRoleControl.cc @@ -409,7 +409,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCustomAudioRoleControl_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -470,7 +470,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCustomAudioRoleControl_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -512,7 +512,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCustomAudioRoleControl_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -536,7 +536,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCustomAudioRoleControl_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -561,8 +561,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCustomAudioRoleControl_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -667,7 +667,7 @@ static void _call_cbs_setCustomAudioRole_2025_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCustomAudioRoleControl_Adaptor *)cls)->cbs_setCustomAudioRole_2025_0 (arg1); } @@ -710,7 +710,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCustomAudioRoleControl_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQGraphicsVideoItem.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQGraphicsVideoItem.cc index f20f9587e..0fa8ecbf9 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQGraphicsVideoItem.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQGraphicsVideoItem.cc @@ -1297,7 +1297,7 @@ static void _call_cbs_advance_767_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsVideoItem_Adaptor *)cls)->cbs_advance_767_0 (arg1); } @@ -1340,7 +1340,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsVideoItem_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1380,8 +1380,8 @@ static void _call_cbs_collidesWithItem_c4977_1 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape), heap); ret.write ((bool)((QGraphicsVideoItem_Adaptor *)cls)->cbs_collidesWithItem_c4977_1 (arg1, arg2)); } @@ -1406,8 +1406,8 @@ static void _call_cbs_collidesWithPath_c4877_1 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape), heap); ret.write ((bool)((QGraphicsVideoItem_Adaptor *)cls)->cbs_collidesWithPath_c4877_1 (arg1, arg2)); } @@ -1430,7 +1430,7 @@ static void _call_cbs_contains_c1986_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsVideoItem_Adaptor *)cls)->cbs_contains_c1986_0 (arg1)); } @@ -1453,7 +1453,7 @@ static void _call_cbs_contextMenuEvent_3674_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneContextMenuEvent *arg1 = args.read (heap); + QGraphicsSceneContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsVideoItem_Adaptor *)cls)->cbs_contextMenuEvent_3674_0 (arg1); } @@ -1477,7 +1477,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsVideoItem_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1519,7 +1519,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsVideoItem_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1543,7 +1543,7 @@ static void _call_cbs_dragEnterEvent_3315_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsVideoItem_Adaptor *)cls)->cbs_dragEnterEvent_3315_0 (arg1); } @@ -1567,7 +1567,7 @@ static void _call_cbs_dragLeaveEvent_3315_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsVideoItem_Adaptor *)cls)->cbs_dragLeaveEvent_3315_0 (arg1); } @@ -1591,7 +1591,7 @@ static void _call_cbs_dragMoveEvent_3315_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsVideoItem_Adaptor *)cls)->cbs_dragMoveEvent_3315_0 (arg1); } @@ -1615,7 +1615,7 @@ static void _call_cbs_dropEvent_3315_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsVideoItem_Adaptor *)cls)->cbs_dropEvent_3315_0 (arg1); } @@ -1653,7 +1653,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsVideoItem_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1678,8 +1678,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsVideoItem_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1702,7 +1702,7 @@ static void _call_cbs_extension_c2119_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVariant &arg1 = args.read (heap); + const QVariant &arg1 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QGraphicsVideoItem_Adaptor *)cls)->cbs_extension_c2119_0 (arg1)); } @@ -1725,7 +1725,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsVideoItem_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1749,7 +1749,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsVideoItem_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -1787,7 +1787,7 @@ static void _call_cbs_hoverEnterEvent_3044_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsVideoItem_Adaptor *)cls)->cbs_hoverEnterEvent_3044_0 (arg1); } @@ -1811,7 +1811,7 @@ static void _call_cbs_hoverLeaveEvent_3044_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsVideoItem_Adaptor *)cls)->cbs_hoverLeaveEvent_3044_0 (arg1); } @@ -1835,7 +1835,7 @@ static void _call_cbs_hoverMoveEvent_3044_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsVideoItem_Adaptor *)cls)->cbs_hoverMoveEvent_3044_0 (arg1); } @@ -1859,7 +1859,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsVideoItem_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -1883,7 +1883,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QGraphicsVideoItem_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -1906,7 +1906,7 @@ static void _call_cbs_isObscuredBy_c2614_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsVideoItem_Adaptor *)cls)->cbs_isObscuredBy_c2614_0 (arg1)); } @@ -1949,8 +1949,8 @@ static void _call_cbs_itemChange_5658_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QVariant &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QGraphicsVideoItem_Adaptor *)cls)->cbs_itemChange_5658_0 (arg1, arg2)); } @@ -1973,7 +1973,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsVideoItem_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -1997,7 +1997,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsVideoItem_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2040,7 +2040,7 @@ static void _call_cbs_mouseDoubleClickEvent_3049_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsVideoItem_Adaptor *)cls)->cbs_mouseDoubleClickEvent_3049_0 (arg1); } @@ -2064,7 +2064,7 @@ static void _call_cbs_mouseMoveEvent_3049_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsVideoItem_Adaptor *)cls)->cbs_mouseMoveEvent_3049_0 (arg1); } @@ -2088,7 +2088,7 @@ static void _call_cbs_mousePressEvent_3049_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsVideoItem_Adaptor *)cls)->cbs_mousePressEvent_3049_0 (arg1); } @@ -2112,7 +2112,7 @@ static void _call_cbs_mouseReleaseEvent_3049_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsVideoItem_Adaptor *)cls)->cbs_mouseReleaseEvent_3049_0 (arg1); } @@ -2209,9 +2209,9 @@ static void _call_cbs_paint_6301_1 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QStyleOptionGraphicsItem *arg2 = args.read (heap); - QWidget *arg3 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionGraphicsItem *arg2 = gsi::arg_reader() (args, heap); + QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsVideoItem_Adaptor *)cls)->cbs_paint_6301_1 (arg1, arg2, arg3); } @@ -2325,7 +2325,7 @@ static void _call_cbs_sceneEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsVideoItem_Adaptor *)cls)->cbs_sceneEvent_1217_0 (arg1)); } @@ -2350,8 +2350,8 @@ static void _call_cbs_sceneEventFilter_3028_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsItem *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsVideoItem_Adaptor *)cls)->cbs_sceneEventFilter_3028_0 (arg1, arg2)); } @@ -2404,8 +2404,8 @@ static void _call_cbs_setExtension_4817_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsVideoItem_Adaptor *)cls)->cbs_setExtension_4817_0 (arg1, arg2); } @@ -2429,7 +2429,7 @@ static void _call_cbs_setMediaObject_1782_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMediaObject *arg1 = args.read (heap); + QMediaObject *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsVideoItem_Adaptor *)cls)->cbs_setMediaObject_1782_0 (arg1)); } @@ -2471,7 +2471,7 @@ static void _call_cbs_supportsExtension_c2806_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsVideoItem_Adaptor *)cls)->cbs_supportsExtension_c2806_0 (arg1)); } @@ -2494,7 +2494,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsVideoItem_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2566,7 +2566,7 @@ static void _call_cbs_wheelEvent_3029_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneWheelEvent *arg1 = args.read (heap); + QGraphicsSceneWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsVideoItem_Adaptor *)cls)->cbs_wheelEvent_3029_0 (arg1); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQImageEncoderControl.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQImageEncoderControl.cc index 56a64854a..902eb800b 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQImageEncoderControl.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQImageEncoderControl.cc @@ -482,7 +482,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QImageEncoderControl_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -506,7 +506,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QImageEncoderControl_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -548,7 +548,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QImageEncoderControl_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -572,7 +572,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QImageEncoderControl_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -597,8 +597,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QImageEncoderControl_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -621,7 +621,7 @@ static void _call_cbs_imageCodecDescription_c2025_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QImageEncoderControl_Adaptor *)cls)->cbs_imageCodecDescription_c2025_0 (arg1)); } @@ -745,7 +745,7 @@ static void _call_cbs_setImageSettings_3430_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QImageEncoderSettings &arg1 = args.read (heap); + const QImageEncoderSettings &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QImageEncoderControl_Adaptor *)cls)->cbs_setImageSettings_3430_0 (arg1); } @@ -790,8 +790,8 @@ static void _call_cbs_supportedResolutions_c4372_1 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QImageEncoderSettings &arg1 = args.read (heap); - bool *arg2 = args.read (heap); + const QImageEncoderSettings &arg1 = gsi::arg_reader() (args, heap); + bool *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); ret.write > ((QList)((QImageEncoderControl_Adaptor *)cls)->cbs_supportedResolutions_c4372_1 (arg1, arg2)); } @@ -814,7 +814,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QImageEncoderControl_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaAudioProbeControl.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaAudioProbeControl.cc index 8b1bc939c..48aa2ee69 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaAudioProbeControl.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaAudioProbeControl.cc @@ -313,7 +313,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaAudioProbeControl_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -337,7 +337,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaAudioProbeControl_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -379,7 +379,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaAudioProbeControl_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -403,7 +403,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMediaAudioProbeControl_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -428,8 +428,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMediaAudioProbeControl_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -548,7 +548,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaAudioProbeControl_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaAvailabilityControl.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaAvailabilityControl.cc index ade6f7f6b..0b7890559 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaAvailabilityControl.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaAvailabilityControl.cc @@ -376,7 +376,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaAvailabilityControl_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -400,7 +400,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaAvailabilityControl_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -442,7 +442,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaAvailabilityControl_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -466,7 +466,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMediaAvailabilityControl_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -491,8 +491,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMediaAvailabilityControl_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -597,7 +597,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaAvailabilityControl_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaBindableInterface.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaBindableInterface.cc index c44488cc8..7ca98aa4d 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaBindableInterface.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaBindableInterface.cc @@ -164,7 +164,7 @@ static void _call_cbs_setMediaObject_1782_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMediaObject *arg1 = args.read (heap); + QMediaObject *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMediaBindableInterface_Adaptor *)cls)->cbs_setMediaObject_1782_0 (arg1)); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaContainerControl.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaContainerControl.cc index 2a24951b4..11a2b919c 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaContainerControl.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaContainerControl.cc @@ -439,7 +439,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaContainerControl_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -463,7 +463,7 @@ static void _call_cbs_containerDescription_c2025_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QMediaContainerControl_Adaptor *)cls)->cbs_containerDescription_c2025_0 (arg1)); } @@ -505,7 +505,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaContainerControl_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -547,7 +547,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaContainerControl_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -571,7 +571,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMediaContainerControl_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -596,8 +596,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMediaContainerControl_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -702,7 +702,7 @@ static void _call_cbs_setContainerFormat_2025_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaContainerControl_Adaptor *)cls)->cbs_setContainerFormat_2025_0 (arg1); } @@ -745,7 +745,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaContainerControl_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaControl.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaControl.cc index c47697c39..c826a6465 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaControl.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaControl.cc @@ -280,7 +280,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaControl_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -304,7 +304,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaControl_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -346,7 +346,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaControl_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -370,7 +370,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMediaControl_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -395,8 +395,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMediaControl_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -501,7 +501,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaControl_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaGaplessPlaybackControl.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaGaplessPlaybackControl.cc index 92d89d234..6406632a1 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaGaplessPlaybackControl.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaGaplessPlaybackControl.cc @@ -508,7 +508,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaGaplessPlaybackControl_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -569,7 +569,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaGaplessPlaybackControl_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -611,7 +611,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaGaplessPlaybackControl_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -635,7 +635,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMediaGaplessPlaybackControl_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -660,8 +660,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMediaGaplessPlaybackControl_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -822,7 +822,7 @@ static void _call_cbs_setCrossfadeTime_1071_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaGaplessPlaybackControl_Adaptor *)cls)->cbs_setCrossfadeTime_1071_0 (arg1); } @@ -846,7 +846,7 @@ static void _call_cbs_setNextMedia_2605_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMediaContent &arg1 = args.read (heap); + const QMediaContent &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaGaplessPlaybackControl_Adaptor *)cls)->cbs_setNextMedia_2605_0 (arg1); } @@ -870,7 +870,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaGaplessPlaybackControl_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaNetworkAccessControl.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaNetworkAccessControl.cc index 7ecba846c..6855a9777 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaNetworkAccessControl.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaNetworkAccessControl.cc @@ -378,7 +378,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaNetworkAccessControl_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -439,7 +439,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaNetworkAccessControl_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -481,7 +481,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaNetworkAccessControl_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -505,7 +505,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMediaNetworkAccessControl_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -530,8 +530,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMediaNetworkAccessControl_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -636,7 +636,7 @@ static void _call_cbs_setConfigurations_4123_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaNetworkAccessControl_Adaptor *)cls)->cbs_setConfigurations_4123_0 (arg1); } @@ -660,7 +660,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaNetworkAccessControl_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaObject.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaObject.cc index 1aa458b51..b6ee0a2a4 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaObject.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaObject.cc @@ -665,7 +665,7 @@ static void _call_cbs_bind_1302_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMediaObject_Adaptor *)cls)->cbs_bind_1302_0 (arg1)); } @@ -688,7 +688,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaObject_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -712,7 +712,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaObject_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -754,7 +754,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaObject_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -778,7 +778,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMediaObject_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -803,8 +803,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMediaObject_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1037,7 +1037,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaObject_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -1061,7 +1061,7 @@ static void _call_cbs_unbind_1302_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaObject_Adaptor *)cls)->cbs_unbind_1302_0 (arg1); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaPlayer.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaPlayer.cc index a10acb502..d62ec4c19 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaPlayer.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaPlayer.cc @@ -1440,7 +1440,7 @@ static void _call_cbs_bind_1302_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMediaPlayer_Adaptor *)cls)->cbs_bind_1302_0 (arg1)); } @@ -1481,7 +1481,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaPlayer_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1541,7 +1541,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaPlayer_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1583,7 +1583,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaPlayer_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1643,7 +1643,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMediaPlayer_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1668,8 +1668,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMediaPlayer_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -2046,7 +2046,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaPlayer_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2070,7 +2070,7 @@ static void _call_cbs_unbind_1302_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaPlayer_Adaptor *)cls)->cbs_unbind_1302_0 (arg1); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaPlayerControl.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaPlayerControl.cc index 77fde7acb..0ea1ca5f7 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaPlayerControl.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaPlayerControl.cc @@ -1234,7 +1234,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaPlayerControl_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1258,7 +1258,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaPlayerControl_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1300,7 +1300,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaPlayerControl_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1382,7 +1382,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMediaPlayerControl_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1407,8 +1407,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMediaPlayerControl_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1834,8 +1834,8 @@ static void _call_cbs_setMedia_3944_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMediaContent &arg1 = args.read (heap); - QIODevice *arg2 = args.read (heap); + const QMediaContent &arg1 = gsi::arg_reader() (args, heap); + QIODevice *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaPlayerControl_Adaptor *)cls)->cbs_setMedia_3944_0 (arg1, arg2); } @@ -1859,7 +1859,7 @@ static void _call_cbs_setMuted_864_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaPlayerControl_Adaptor *)cls)->cbs_setMuted_864_0 (arg1); } @@ -1883,7 +1883,7 @@ static void _call_cbs_setPlaybackRate_1071_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaPlayerControl_Adaptor *)cls)->cbs_setPlaybackRate_1071_0 (arg1); } @@ -1907,7 +1907,7 @@ static void _call_cbs_setPosition_986_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - qint64 arg1 = args.read (heap); + qint64 arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaPlayerControl_Adaptor *)cls)->cbs_setPosition_986_0 (arg1); } @@ -1931,7 +1931,7 @@ static void _call_cbs_setVolume_767_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaPlayerControl_Adaptor *)cls)->cbs_setVolume_767_0 (arg1); } @@ -2012,7 +2012,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaPlayerControl_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaPlaylist.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaPlaylist.cc index 2f3189fd4..eeb821a41 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaPlaylist.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaPlaylist.cc @@ -1055,7 +1055,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaPlaylist_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1115,7 +1115,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaPlaylist_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1157,7 +1157,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaPlaylist_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1181,7 +1181,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMediaPlaylist_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1206,8 +1206,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMediaPlaylist_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1482,7 +1482,7 @@ static void _call_cbs_setMediaObject_1782_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMediaObject *arg1 = args.read (heap); + QMediaObject *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMediaPlaylist_Adaptor *)cls)->cbs_setMediaObject_1782_0 (arg1)); } @@ -1505,7 +1505,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaPlaylist_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaRecorder.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaRecorder.cc index bd77a8c92..ea698f314 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaRecorder.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaRecorder.cc @@ -1262,7 +1262,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaRecorder_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1286,7 +1286,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaRecorder_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1328,7 +1328,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaRecorder_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1388,7 +1388,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMediaRecorder_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1413,8 +1413,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMediaRecorder_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1627,7 +1627,7 @@ static void _call_cbs_setMediaObject_1782_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMediaObject *arg1 = args.read (heap); + QMediaObject *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMediaRecorder_Adaptor *)cls)->cbs_setMediaObject_1782_0 (arg1)); } @@ -1686,7 +1686,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaRecorder_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaRecorderControl.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaRecorderControl.cc index 68253521b..5fae0bab4 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaRecorderControl.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaRecorderControl.cc @@ -764,7 +764,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaRecorderControl_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -788,7 +788,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaRecorderControl_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -830,7 +830,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaRecorderControl_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -912,7 +912,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMediaRecorderControl_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -937,8 +937,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMediaRecorderControl_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1099,7 +1099,7 @@ static void _call_cbs_setMuted_864_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaRecorderControl_Adaptor *)cls)->cbs_setMuted_864_0 (arg1); } @@ -1123,7 +1123,7 @@ static void _call_cbs_setOutputLocation_1701_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QUrl &arg1 = args.read (heap); + const QUrl &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMediaRecorderControl_Adaptor *)cls)->cbs_setOutputLocation_1701_0 (arg1)); } @@ -1146,7 +1146,7 @@ static void _call_cbs_setState_2448_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaRecorderControl_Adaptor *)cls)->cbs_setState_2448_0 (arg1); } @@ -1170,7 +1170,7 @@ static void _call_cbs_setVolume_1071_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaRecorderControl_Adaptor *)cls)->cbs_setVolume_1071_0 (arg1); } @@ -1268,7 +1268,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaRecorderControl_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaService.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaService.cc index d29146a76..ce3deaea8 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaService.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaService.cc @@ -356,7 +356,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaService_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -380,7 +380,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaService_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -422,7 +422,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaService_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -446,7 +446,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMediaService_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -471,8 +471,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMediaService_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -549,7 +549,7 @@ static void _call_cbs_releaseControl_1920_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMediaControl *arg1 = args.read (heap); + QMediaControl *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaService_Adaptor *)cls)->cbs_releaseControl_1920_0 (arg1); } @@ -573,7 +573,7 @@ static void _call_cbs_requestControl_1731_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((QMediaControl *)((QMediaService_Adaptor *)cls)->cbs_requestControl_1731_0 (arg1)); } @@ -624,7 +624,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaService_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaServiceCameraInfoInterface.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaServiceCameraInfoInterface.cc index 341a36610..5a1da4515 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaServiceCameraInfoInterface.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaServiceCameraInfoInterface.cc @@ -169,7 +169,7 @@ static void _call_cbs_cameraOrientation_c2309_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QMediaServiceCameraInfoInterface_Adaptor *)cls)->cbs_cameraOrientation_c2309_0 (arg1)); } @@ -192,7 +192,7 @@ static void _call_cbs_cameraPosition_c2309_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); ret.write::target_type > ((qt_gsi::Converter::target_type)((QMediaServiceCameraInfoInterface_Adaptor *)cls)->cbs_cameraPosition_c2309_0 (arg1)); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaServiceDefaultDeviceInterface.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaServiceDefaultDeviceInterface.cc index 38e292009..f2ada7f85 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaServiceDefaultDeviceInterface.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaServiceDefaultDeviceInterface.cc @@ -132,7 +132,7 @@ static void _call_cbs_defaultDevice_c2309_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); ret.write ((QByteArray)((QMediaServiceDefaultDeviceInterface_Adaptor *)cls)->cbs_defaultDevice_c2309_0 (arg1)); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaServiceFeaturesInterface.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaServiceFeaturesInterface.cc index fe6b1ff53..0a8da62dd 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaServiceFeaturesInterface.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaServiceFeaturesInterface.cc @@ -132,7 +132,7 @@ static void _call_cbs_supportedFeatures_c2309_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QFlags)((QMediaServiceFeaturesInterface_Adaptor *)cls)->cbs_supportedFeatures_c2309_0 (arg1)); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaServiceProviderFactoryInterface.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaServiceProviderFactoryInterface.cc index e6d71cdae..ebea8913d 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaServiceProviderFactoryInterface.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaServiceProviderFactoryInterface.cc @@ -171,7 +171,7 @@ static void _call_cbs_create_2025_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QMediaService *)((QMediaServiceProviderFactoryInterface_Adaptor *)cls)->cbs_create_2025_0 (arg1)); } @@ -194,7 +194,7 @@ static void _call_cbs_release_1904_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMediaService *arg1 = args.read (heap); + QMediaService *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaServiceProviderFactoryInterface_Adaptor *)cls)->cbs_release_1904_0 (arg1); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaServiceProviderPlugin.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaServiceProviderPlugin.cc index bb8390b66..e20a2f6f9 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaServiceProviderPlugin.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaServiceProviderPlugin.cc @@ -431,7 +431,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaServiceProviderPlugin_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -455,7 +455,7 @@ static void _call_cbs_create_2025_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QMediaService *)((QMediaServiceProviderPlugin_Adaptor *)cls)->cbs_create_2025_0 (arg1)); } @@ -478,7 +478,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaServiceProviderPlugin_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -520,7 +520,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaServiceProviderPlugin_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -544,7 +544,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMediaServiceProviderPlugin_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -569,8 +569,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMediaServiceProviderPlugin_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -647,7 +647,7 @@ static void _call_cbs_release_1904_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMediaService *arg1 = args.read (heap); + QMediaService *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaServiceProviderPlugin_Adaptor *)cls)->cbs_release_1904_0 (arg1); } @@ -699,7 +699,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaServiceProviderPlugin_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaServiceSupportedDevicesInterface.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaServiceSupportedDevicesInterface.cc index 93b63d3f4..3d31f1282 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaServiceSupportedDevicesInterface.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaServiceSupportedDevicesInterface.cc @@ -175,8 +175,8 @@ static void _call_cbs_deviceDescription_4510_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - const QByteArray &arg2 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + const QByteArray &arg2 = gsi::arg_reader() (args, heap); ret.write ((QString)((QMediaServiceSupportedDevicesInterface_Adaptor *)cls)->cbs_deviceDescription_4510_0 (arg1, arg2)); } @@ -199,7 +199,7 @@ static void _call_cbs_devices_c2309_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QList)((QMediaServiceSupportedDevicesInterface_Adaptor *)cls)->cbs_devices_c2309_0 (arg1)); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaServiceSupportedFormatsInterface.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaServiceSupportedFormatsInterface.cc index af0b07437..6434d338e 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaServiceSupportedFormatsInterface.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaServiceSupportedFormatsInterface.cc @@ -170,8 +170,8 @@ static void _call_cbs_hasSupport_c4354_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QStringList &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QStringList &arg2 = gsi::arg_reader() (args, heap); ret.write::target_type > ((qt_gsi::Converter::target_type)((QMediaServiceSupportedFormatsInterface_Adaptor *)cls)->cbs_hasSupport_c4354_0 (arg1, arg2)); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaStreamsControl.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaStreamsControl.cc index dd6877863..40ffe6fe3 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaStreamsControl.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaStreamsControl.cc @@ -517,7 +517,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaStreamsControl_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -541,7 +541,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaStreamsControl_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -583,7 +583,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaStreamsControl_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -607,7 +607,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMediaStreamsControl_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -632,8 +632,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMediaStreamsControl_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -656,7 +656,7 @@ static void _call_cbs_isActive_767_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMediaStreamsControl_Adaptor *)cls)->cbs_isActive_767_0 (arg1)); } @@ -699,8 +699,8 @@ static void _call_cbs_metaData_2684_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QMediaStreamsControl_Adaptor *)cls)->cbs_metaData_2684_0 (arg1, arg2)); } @@ -789,8 +789,8 @@ static void _call_cbs_setActive_1523_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - bool arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + bool arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaStreamsControl_Adaptor *)cls)->cbs_setActive_1523_0 (arg1, arg2); } @@ -833,7 +833,7 @@ static void _call_cbs_streamType_767_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write::target_type > ((qt_gsi::Converter::target_type)((QMediaStreamsControl_Adaptor *)cls)->cbs_streamType_767_0 (arg1)); } @@ -870,7 +870,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaStreamsControl_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaVideoProbeControl.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaVideoProbeControl.cc index 91994d288..15915500a 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaVideoProbeControl.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaVideoProbeControl.cc @@ -295,7 +295,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaVideoProbeControl_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -319,7 +319,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaVideoProbeControl_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -361,7 +361,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaVideoProbeControl_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -385,7 +385,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMediaVideoProbeControl_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -410,8 +410,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMediaVideoProbeControl_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -530,7 +530,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaVideoProbeControl_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMetaDataReaderControl.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMetaDataReaderControl.cc index 93b4d966c..01b2ed68a 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMetaDataReaderControl.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMetaDataReaderControl.cc @@ -441,7 +441,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMetaDataReaderControl_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -465,7 +465,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMetaDataReaderControl_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -507,7 +507,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMetaDataReaderControl_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -531,7 +531,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMetaDataReaderControl_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -556,8 +556,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMetaDataReaderControl_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -617,7 +617,7 @@ static void _call_cbs_metaData_c2025_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QMetaDataReaderControl_Adaptor *)cls)->cbs_metaData_c2025_0 (arg1)); } @@ -757,7 +757,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMetaDataReaderControl_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMetaDataWriterControl.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMetaDataWriterControl.cc index ec98d3072..48793b87d 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMetaDataWriterControl.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMetaDataWriterControl.cc @@ -522,7 +522,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMetaDataWriterControl_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -546,7 +546,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMetaDataWriterControl_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -588,7 +588,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMetaDataWriterControl_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -612,7 +612,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMetaDataWriterControl_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -637,8 +637,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMetaDataWriterControl_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -717,7 +717,7 @@ static void _call_cbs_metaData_c2025_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QMetaDataWriterControl_Adaptor *)cls)->cbs_metaData_c2025_0 (arg1)); } @@ -859,8 +859,8 @@ static void _call_cbs_setMetaData_4036_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMetaDataWriterControl_Adaptor *)cls)->cbs_setMetaData_4036_0 (arg1, arg2); } @@ -884,7 +884,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMetaDataWriterControl_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQRadioData.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQRadioData.cc index ffea4b979..5e29d3cab 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQRadioData.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQRadioData.cc @@ -649,7 +649,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioData_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -673,7 +673,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioData_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -715,7 +715,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioData_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -757,7 +757,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QRadioData_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -782,8 +782,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QRadioData_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -961,7 +961,7 @@ static void _call_cbs_setMediaObject_1782_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMediaObject *arg1 = args.read (heap); + QMediaObject *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QRadioData_Adaptor *)cls)->cbs_setMediaObject_1782_0 (arg1)); } @@ -1020,7 +1020,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioData_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQRadioDataControl.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQRadioDataControl.cc index 259e303e0..7f952127d 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQRadioDataControl.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQRadioDataControl.cc @@ -641,7 +641,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioDataControl_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -665,7 +665,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioDataControl_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -707,7 +707,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioDataControl_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -787,7 +787,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QRadioDataControl_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -812,8 +812,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QRadioDataControl_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1048,7 +1048,7 @@ static void _call_cbs_setAlternativeFrequenciesEnabled_864_0 (const qt_gsi::Gene { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioDataControl_Adaptor *)cls)->cbs_setAlternativeFrequenciesEnabled_864_0 (arg1); } @@ -1146,7 +1146,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioDataControl_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQRadioTuner.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQRadioTuner.cc index 1063ddd81..75b714fa9 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQRadioTuner.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQRadioTuner.cc @@ -1126,7 +1126,7 @@ static void _call_cbs_bind_1302_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QRadioTuner_Adaptor *)cls)->cbs_bind_1302_0 (arg1)); } @@ -1149,7 +1149,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioTuner_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1173,7 +1173,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioTuner_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1215,7 +1215,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioTuner_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1257,7 +1257,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QRadioTuner_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1282,8 +1282,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QRadioTuner_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1645,7 +1645,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioTuner_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -1669,7 +1669,7 @@ static void _call_cbs_unbind_1302_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioTuner_Adaptor *)cls)->cbs_unbind_1302_0 (arg1); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQRadioTunerControl.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQRadioTunerControl.cc index a7c3c3099..3856faf05 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQRadioTunerControl.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQRadioTunerControl.cc @@ -1320,7 +1320,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioTunerControl_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1344,7 +1344,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioTunerControl_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1386,7 +1386,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioTunerControl_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1466,7 +1466,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QRadioTunerControl_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1491,8 +1491,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QRadioTunerControl_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1552,7 +1552,7 @@ static void _call_cbs_frequencyRange_c2027_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write > ((QPair)((QRadioTunerControl_Adaptor *)cls)->cbs_frequencyRange_c2027_0 (arg1)); } @@ -1575,7 +1575,7 @@ static void _call_cbs_frequencyStep_c2027_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QRadioTunerControl_Adaptor *)cls)->cbs_frequencyStep_c2027_0 (arg1)); } @@ -1617,7 +1617,7 @@ static void _call_cbs_isBandSupported_c2027_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((bool)((QRadioTunerControl_Adaptor *)cls)->cbs_isBandSupported_c2027_0 (arg1)); } @@ -1769,7 +1769,7 @@ static void _call_cbs_searchAllStations_2641_1 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QRadioTuner::SearchFast), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioTunerControl_Adaptor *)cls)->cbs_searchAllStations_2641_1 (arg1); } @@ -1879,7 +1879,7 @@ static void _call_cbs_setBand_2027_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioTunerControl_Adaptor *)cls)->cbs_setBand_2027_0 (arg1); } @@ -1903,7 +1903,7 @@ static void _call_cbs_setFrequency_767_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioTunerControl_Adaptor *)cls)->cbs_setFrequency_767_0 (arg1); } @@ -1927,7 +1927,7 @@ static void _call_cbs_setMuted_864_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioTunerControl_Adaptor *)cls)->cbs_setMuted_864_0 (arg1); } @@ -1951,7 +1951,7 @@ static void _call_cbs_setStereoMode_2669_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioTunerControl_Adaptor *)cls)->cbs_setStereoMode_2669_0 (arg1); } @@ -1975,7 +1975,7 @@ static void _call_cbs_setVolume_767_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioTunerControl_Adaptor *)cls)->cbs_setVolume_767_0 (arg1); } @@ -2171,7 +2171,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioTunerControl_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQSound.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQSound.cc index 028dfcb0f..04cfe56e5 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQSound.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQSound.cc @@ -453,7 +453,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSound_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -477,7 +477,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSound_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -519,7 +519,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSound_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -543,7 +543,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSound_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -568,8 +568,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSound_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -674,7 +674,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSound_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQSoundEffect.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQSoundEffect.cc index 8b7cc9bc5..bffbd8d11 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQSoundEffect.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQSoundEffect.cc @@ -687,7 +687,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSoundEffect_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -711,7 +711,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSoundEffect_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -753,7 +753,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSoundEffect_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -777,7 +777,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSoundEffect_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -802,8 +802,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSoundEffect_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1006,7 +1006,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSoundEffect_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQVideoDeviceSelectorControl.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQVideoDeviceSelectorControl.cc index 329dcaee8..3206a91eb 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQVideoDeviceSelectorControl.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQVideoDeviceSelectorControl.cc @@ -529,7 +529,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVideoDeviceSelectorControl_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -553,7 +553,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVideoDeviceSelectorControl_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -633,7 +633,7 @@ static void _call_cbs_deviceDescription_c767_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QVideoDeviceSelectorControl_Adaptor *)cls)->cbs_deviceDescription_c767_0 (arg1)); } @@ -656,7 +656,7 @@ static void _call_cbs_deviceName_c767_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QVideoDeviceSelectorControl_Adaptor *)cls)->cbs_deviceName_c767_0 (arg1)); } @@ -693,7 +693,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVideoDeviceSelectorControl_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -717,7 +717,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QVideoDeviceSelectorControl_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -742,8 +742,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QVideoDeviceSelectorControl_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -903,7 +903,7 @@ static void _call_cbs_setSelectedDevice_767_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVideoDeviceSelectorControl_Adaptor *)cls)->cbs_setSelectedDevice_767_0 (arg1); } @@ -927,7 +927,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVideoDeviceSelectorControl_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQVideoEncoderSettingsControl.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQVideoEncoderSettingsControl.cc index b979e66be..ff0063d69 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQVideoEncoderSettingsControl.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQVideoEncoderSettingsControl.cc @@ -523,7 +523,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVideoEncoderSettingsControl_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -547,7 +547,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVideoEncoderSettingsControl_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -589,7 +589,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVideoEncoderSettingsControl_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -613,7 +613,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QVideoEncoderSettingsControl_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -638,8 +638,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QVideoEncoderSettingsControl_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -744,7 +744,7 @@ static void _call_cbs_setVideoSettings_3450_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVideoEncoderSettings &arg1 = args.read (heap); + const QVideoEncoderSettings &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVideoEncoderSettingsControl_Adaptor *)cls)->cbs_setVideoSettings_3450_0 (arg1); } @@ -770,8 +770,8 @@ static void _call_cbs_supportedFrameRates_c4392_1 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVideoEncoderSettings &arg1 = args.read (heap); - bool *arg2 = args.read (heap); + const QVideoEncoderSettings &arg1 = gsi::arg_reader() (args, heap); + bool *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); ret.write > ((QList)((QVideoEncoderSettingsControl_Adaptor *)cls)->cbs_supportedFrameRates_c4392_1 (arg1, arg2)); } @@ -796,8 +796,8 @@ static void _call_cbs_supportedResolutions_c4392_1 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVideoEncoderSettings &arg1 = args.read (heap); - bool *arg2 = args.read (heap); + const QVideoEncoderSettings &arg1 = gsi::arg_reader() (args, heap); + bool *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); ret.write > ((QList)((QVideoEncoderSettingsControl_Adaptor *)cls)->cbs_supportedResolutions_c4392_1 (arg1, arg2)); } @@ -839,7 +839,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVideoEncoderSettingsControl_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -863,7 +863,7 @@ static void _call_cbs_videoCodecDescription_c2025_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QVideoEncoderSettingsControl_Adaptor *)cls)->cbs_videoCodecDescription_c2025_0 (arg1)); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQVideoFilterRunnable.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQVideoFilterRunnable.cc index 8405ae575..e43bb276e 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQVideoFilterRunnable.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQVideoFilterRunnable.cc @@ -146,9 +146,9 @@ static void _call_cbs_run_8664_0 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QVideoFrame *arg1 = args.read (heap); - const QVideoSurfaceFormat &arg2 = args.read (heap); - QFlags arg3 = args.read > (heap); + QVideoFrame *arg1 = gsi::arg_reader() (args, heap); + const QVideoSurfaceFormat &arg2 = gsi::arg_reader() (args, heap); + QFlags arg3 = gsi::arg_reader >() (args, heap); ret.write ((QVideoFrame)((QVideoFilterRunnable_Adaptor *)cls)->cbs_run_8664_0 (arg1, arg2, arg3)); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQVideoProbe.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQVideoProbe.cc index 3bbea1e7a..8f6583f67 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQVideoProbe.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQVideoProbe.cc @@ -383,7 +383,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVideoProbe_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -407,7 +407,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVideoProbe_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -449,7 +449,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVideoProbe_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -473,7 +473,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QVideoProbe_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -498,8 +498,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QVideoProbe_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -618,7 +618,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVideoProbe_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQVideoRendererControl.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQVideoRendererControl.cc index 5b8305d29..94426f577 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQVideoRendererControl.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQVideoRendererControl.cc @@ -371,7 +371,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVideoRendererControl_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -395,7 +395,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVideoRendererControl_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -437,7 +437,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVideoRendererControl_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -461,7 +461,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QVideoRendererControl_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -486,8 +486,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QVideoRendererControl_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -592,7 +592,7 @@ static void _call_cbs_setSurface_2739_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractVideoSurface *arg1 = args.read (heap); + QAbstractVideoSurface *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVideoRendererControl_Adaptor *)cls)->cbs_setSurface_2739_0 (arg1); } @@ -635,7 +635,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVideoRendererControl_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQVideoWidget.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQVideoWidget.cc index 392ac3dea..10c0734e2 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQVideoWidget.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQVideoWidget.cc @@ -1393,7 +1393,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVideoWidget_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1435,7 +1435,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVideoWidget_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1459,7 +1459,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVideoWidget_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1483,7 +1483,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVideoWidget_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1507,7 +1507,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVideoWidget_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1592,7 +1592,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVideoWidget_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1656,7 +1656,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVideoWidget_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1680,7 +1680,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVideoWidget_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1704,7 +1704,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVideoWidget_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1728,7 +1728,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVideoWidget_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1752,7 +1752,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVideoWidget_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1776,7 +1776,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVideoWidget_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -1800,7 +1800,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QVideoWidget_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1825,8 +1825,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QVideoWidget_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1849,7 +1849,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVideoWidget_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1887,7 +1887,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QVideoWidget_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -1910,7 +1910,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVideoWidget_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -1985,7 +1985,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QVideoWidget_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -2008,7 +2008,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVideoWidget_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -2050,7 +2050,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVideoWidget_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -2074,7 +2074,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVideoWidget_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2098,7 +2098,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QVideoWidget_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2139,7 +2139,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVideoWidget_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2163,7 +2163,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVideoWidget_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2187,7 +2187,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVideoWidget_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2230,7 +2230,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QVideoWidget_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2272,7 +2272,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVideoWidget_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2296,7 +2296,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVideoWidget_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2320,7 +2320,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVideoWidget_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2344,7 +2344,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVideoWidget_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2368,7 +2368,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVideoWidget_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2396,9 +2396,9 @@ static void _call_cbs_nativeEvent_4678_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - long int *arg3 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + long int *arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QVideoWidget_Adaptor *)cls)->cbs_nativeEvent_4678_0 (arg1, arg2, arg3)); } @@ -2458,7 +2458,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVideoWidget_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2500,7 +2500,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QVideoWidget_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -2523,7 +2523,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVideoWidget_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2593,7 +2593,7 @@ static void _call_cbs_setMediaObject_1782_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMediaObject *arg1 = args.read (heap); + QMediaObject *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QVideoWidget_Adaptor *)cls)->cbs_setMediaObject_1782_0 (arg1)); } @@ -2616,7 +2616,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVideoWidget_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2659,7 +2659,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVideoWidget_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2702,7 +2702,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVideoWidget_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2726,7 +2726,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVideoWidget_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2765,7 +2765,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVideoWidget_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQVideoWindowControl.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQVideoWindowControl.cc index 60c8e77c2..194da1700 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQVideoWindowControl.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQVideoWindowControl.cc @@ -1025,7 +1025,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVideoWindowControl_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1086,7 +1086,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVideoWindowControl_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1128,7 +1128,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVideoWindowControl_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1171,7 +1171,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QVideoWindowControl_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1196,8 +1196,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QVideoWindowControl_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1466,7 +1466,7 @@ static void _call_cbs_setAspectRatioMode_2257_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVideoWindowControl_Adaptor *)cls)->cbs_setAspectRatioMode_2257_0 (arg1); } @@ -1490,7 +1490,7 @@ static void _call_cbs_setBrightness_767_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVideoWindowControl_Adaptor *)cls)->cbs_setBrightness_767_0 (arg1); } @@ -1514,7 +1514,7 @@ static void _call_cbs_setContrast_767_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVideoWindowControl_Adaptor *)cls)->cbs_setContrast_767_0 (arg1); } @@ -1538,7 +1538,7 @@ static void _call_cbs_setDisplayRect_1792_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVideoWindowControl_Adaptor *)cls)->cbs_setDisplayRect_1792_0 (arg1); } @@ -1562,7 +1562,7 @@ static void _call_cbs_setFullScreen_864_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVideoWindowControl_Adaptor *)cls)->cbs_setFullScreen_864_0 (arg1); } @@ -1586,7 +1586,7 @@ static void _call_cbs_setHue_767_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVideoWindowControl_Adaptor *)cls)->cbs_setHue_767_0 (arg1); } @@ -1610,7 +1610,7 @@ static void _call_cbs_setSaturation_767_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVideoWindowControl_Adaptor *)cls)->cbs_setSaturation_767_0 (arg1); } @@ -1634,7 +1634,7 @@ static void _call_cbs_setWinId_696_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVideoWindowControl_Adaptor *)cls)->cbs_setWinId_696_0 (arg1); } @@ -1658,7 +1658,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVideoWindowControl_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtNetwork/gsiDeclQAbstractNetworkCache.cc b/src/gsiqt/qt5/QtNetwork/gsiDeclQAbstractNetworkCache.cc index 992350a32..2b3eb75d0 100644 --- a/src/gsiqt/qt5/QtNetwork/gsiDeclQAbstractNetworkCache.cc +++ b/src/gsiqt/qt5/QtNetwork/gsiDeclQAbstractNetworkCache.cc @@ -611,7 +611,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractNetworkCache_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -655,7 +655,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractNetworkCache_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -679,7 +679,7 @@ static void _call_cbs_data_1701_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QUrl &arg1 = args.read (heap); + const QUrl &arg1 = gsi::arg_reader() (args, heap); ret.write ((QIODevice *)((QAbstractNetworkCache_Adaptor *)cls)->cbs_data_1701_0 (arg1)); } @@ -720,7 +720,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractNetworkCache_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -744,7 +744,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractNetworkCache_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -769,8 +769,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractNetworkCache_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -793,7 +793,7 @@ static void _call_cbs_insert_1447_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QIODevice *arg1 = args.read (heap); + QIODevice *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractNetworkCache_Adaptor *)cls)->cbs_insert_1447_0 (arg1); } @@ -835,7 +835,7 @@ static void _call_cbs_metaData_1701_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QUrl &arg1 = args.read (heap); + const QUrl &arg1 = gsi::arg_reader() (args, heap); ret.write ((QNetworkCacheMetaData)((QAbstractNetworkCache_Adaptor *)cls)->cbs_metaData_1701_0 (arg1)); } @@ -876,7 +876,7 @@ static void _call_cbs_prepare_3377_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkCacheMetaData &arg1 = args.read (heap); + const QNetworkCacheMetaData &arg1 = gsi::arg_reader() (args, heap); ret.write ((QIODevice *)((QAbstractNetworkCache_Adaptor *)cls)->cbs_prepare_3377_0 (arg1)); } @@ -917,7 +917,7 @@ static void _call_cbs_remove_1701_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QUrl &arg1 = args.read (heap); + const QUrl &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractNetworkCache_Adaptor *)cls)->cbs_remove_1701_0 (arg1)); } @@ -968,7 +968,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractNetworkCache_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -992,7 +992,7 @@ static void _call_cbs_updateMetaData_3377_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkCacheMetaData &arg1 = args.read (heap); + const QNetworkCacheMetaData &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractNetworkCache_Adaptor *)cls)->cbs_updateMetaData_3377_0 (arg1); } diff --git a/src/gsiqt/qt5/QtNetwork/gsiDeclQDnsLookup.cc b/src/gsiqt/qt5/QtNetwork/gsiDeclQDnsLookup.cc index 3c5148f98..5d4c3f86b 100644 --- a/src/gsiqt/qt5/QtNetwork/gsiDeclQDnsLookup.cc +++ b/src/gsiqt/qt5/QtNetwork/gsiDeclQDnsLookup.cc @@ -724,7 +724,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDnsLookup_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -748,7 +748,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDnsLookup_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -790,7 +790,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDnsLookup_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -814,7 +814,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDnsLookup_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -839,8 +839,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDnsLookup_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -995,7 +995,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDnsLookup_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtNetwork/gsiDeclQDtls.cc b/src/gsiqt/qt5/QtNetwork/gsiDeclQDtls.cc index fe6ed746b..85a551abd 100644 --- a/src/gsiqt/qt5/QtNetwork/gsiDeclQDtls.cc +++ b/src/gsiqt/qt5/QtNetwork/gsiDeclQDtls.cc @@ -834,7 +834,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDtls_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -858,7 +858,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDtls_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -900,7 +900,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDtls_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -924,7 +924,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDtls_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -949,8 +949,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDtls_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1087,7 +1087,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDtls_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtNetwork/gsiDeclQDtlsClientVerifier.cc b/src/gsiqt/qt5/QtNetwork/gsiDeclQDtlsClientVerifier.cc index 9a53fb03e..b367dc6db 100644 --- a/src/gsiqt/qt5/QtNetwork/gsiDeclQDtlsClientVerifier.cc +++ b/src/gsiqt/qt5/QtNetwork/gsiDeclQDtlsClientVerifier.cc @@ -425,7 +425,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDtlsClientVerifier_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -449,7 +449,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDtlsClientVerifier_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -491,7 +491,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDtlsClientVerifier_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -515,7 +515,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDtlsClientVerifier_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -540,8 +540,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDtlsClientVerifier_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -646,7 +646,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDtlsClientVerifier_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtNetwork/gsiDeclQHttpMultiPart.cc b/src/gsiqt/qt5/QtNetwork/gsiDeclQHttpMultiPart.cc index 853228ff9..24c65af99 100644 --- a/src/gsiqt/qt5/QtNetwork/gsiDeclQHttpMultiPart.cc +++ b/src/gsiqt/qt5/QtNetwork/gsiDeclQHttpMultiPart.cc @@ -423,7 +423,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHttpMultiPart_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -447,7 +447,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHttpMultiPart_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -489,7 +489,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHttpMultiPart_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -513,7 +513,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QHttpMultiPart_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -538,8 +538,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QHttpMultiPart_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -644,7 +644,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHttpMultiPart_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtNetwork/gsiDeclQLocalServer.cc b/src/gsiqt/qt5/QtNetwork/gsiDeclQLocalServer.cc index d07164967..448430d2c 100644 --- a/src/gsiqt/qt5/QtNetwork/gsiDeclQLocalServer.cc +++ b/src/gsiqt/qt5/QtNetwork/gsiDeclQLocalServer.cc @@ -668,7 +668,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLocalServer_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -692,7 +692,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLocalServer_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -734,7 +734,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLocalServer_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -758,7 +758,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QLocalServer_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -783,8 +783,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QLocalServer_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -826,7 +826,7 @@ static void _call_cbs_incomingConnection_1339_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - quintptr arg1 = args.read (heap); + quintptr arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLocalServer_Adaptor *)cls)->cbs_incomingConnection_1339_0 (arg1); } @@ -965,7 +965,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLocalServer_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkAccessManager.cc b/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkAccessManager.cc index 3d4716885..b52499285 100644 --- a/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkAccessManager.cc +++ b/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkAccessManager.cc @@ -1188,7 +1188,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkAccessManager_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1216,9 +1216,9 @@ static void _call_cbs_createRequest_7733_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QNetworkRequest &arg2 = args.read (heap); - QIODevice *arg3 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QNetworkRequest &arg2 = gsi::arg_reader() (args, heap); + QIODevice *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); ret.write ((QNetworkReply *)((QNetworkAccessManager_Adaptor *)cls)->cbs_createRequest_7733_1 (arg1, arg2, arg3)); } @@ -1241,7 +1241,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkAccessManager_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1283,7 +1283,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkAccessManager_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1325,7 +1325,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QNetworkAccessManager_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1350,8 +1350,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QNetworkAccessManager_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1583,7 +1583,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkAccessManager_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkConfigurationManager.cc b/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkConfigurationManager.cc index 95d1cf769..fd92537c9 100644 --- a/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkConfigurationManager.cc +++ b/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkConfigurationManager.cc @@ -451,7 +451,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkConfigurationManager_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -529,7 +529,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkConfigurationManager_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -571,7 +571,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkConfigurationManager_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -595,7 +595,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QNetworkConfigurationManager_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -620,8 +620,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QNetworkConfigurationManager_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -744,7 +744,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkConfigurationManager_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkCookieJar.cc b/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkCookieJar.cc index 906e9fde2..09a3897ca 100644 --- a/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkCookieJar.cc +++ b/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkCookieJar.cc @@ -535,7 +535,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkCookieJar_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -559,7 +559,7 @@ static void _call_cbs_cookiesForUrl_c1701_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QUrl &arg1 = args.read (heap); + const QUrl &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QList)((QNetworkCookieJar_Adaptor *)cls)->cbs_cookiesForUrl_c1701_0 (arg1)); } @@ -582,7 +582,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkCookieJar_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -606,7 +606,7 @@ static void _call_cbs_deleteCookie_2742_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkCookie &arg1 = args.read (heap); + const QNetworkCookie &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QNetworkCookieJar_Adaptor *)cls)->cbs_deleteCookie_2742_0 (arg1)); } @@ -647,7 +647,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkCookieJar_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -671,7 +671,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QNetworkCookieJar_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -696,8 +696,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QNetworkCookieJar_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -720,7 +720,7 @@ static void _call_cbs_insertCookie_2742_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkCookie &arg1 = args.read (heap); + const QNetworkCookie &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QNetworkCookieJar_Adaptor *)cls)->cbs_insertCookie_2742_0 (arg1)); } @@ -846,8 +846,8 @@ static void _call_cbs_setCookiesFromUrl_4950_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); - const QUrl &arg2 = args.read (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); + const QUrl &arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QNetworkCookieJar_Adaptor *)cls)->cbs_setCookiesFromUrl_4950_0 (arg1, arg2)); } @@ -870,7 +870,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkCookieJar_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -894,7 +894,7 @@ static void _call_cbs_updateCookie_2742_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkCookie &arg1 = args.read (heap); + const QNetworkCookie &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QNetworkCookieJar_Adaptor *)cls)->cbs_updateCookie_2742_0 (arg1)); } @@ -919,8 +919,8 @@ static void _call_cbs_validateCookie_c4335_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkCookie &arg1 = args.read (heap); - const QUrl &arg2 = args.read (heap); + const QNetworkCookie &arg1 = gsi::arg_reader() (args, heap); + const QUrl &arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QNetworkCookieJar_Adaptor *)cls)->cbs_validateCookie_c4335_0 (arg1, arg2)); } diff --git a/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkDiskCache.cc b/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkDiskCache.cc index 7ba03a14e..a3d4cd63a 100644 --- a/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkDiskCache.cc +++ b/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkDiskCache.cc @@ -725,7 +725,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkDiskCache_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -769,7 +769,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkDiskCache_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -793,7 +793,7 @@ static void _call_cbs_data_1701_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QUrl &arg1 = args.read (heap); + const QUrl &arg1 = gsi::arg_reader() (args, heap); ret.write ((QIODevice *)((QNetworkDiskCache_Adaptor *)cls)->cbs_data_1701_0 (arg1)); } @@ -834,7 +834,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkDiskCache_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -858,7 +858,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QNetworkDiskCache_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -883,8 +883,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QNetworkDiskCache_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -926,7 +926,7 @@ static void _call_cbs_insert_1447_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QIODevice *arg1 = args.read (heap); + QIODevice *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkDiskCache_Adaptor *)cls)->cbs_insert_1447_0 (arg1); } @@ -968,7 +968,7 @@ static void _call_cbs_metaData_1701_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QUrl &arg1 = args.read (heap); + const QUrl &arg1 = gsi::arg_reader() (args, heap); ret.write ((QNetworkCacheMetaData)((QNetworkDiskCache_Adaptor *)cls)->cbs_metaData_1701_0 (arg1)); } @@ -1009,7 +1009,7 @@ static void _call_cbs_prepare_3377_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkCacheMetaData &arg1 = args.read (heap); + const QNetworkCacheMetaData &arg1 = gsi::arg_reader() (args, heap); ret.write ((QIODevice *)((QNetworkDiskCache_Adaptor *)cls)->cbs_prepare_3377_0 (arg1)); } @@ -1050,7 +1050,7 @@ static void _call_cbs_remove_1701_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QUrl &arg1 = args.read (heap); + const QUrl &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QNetworkDiskCache_Adaptor *)cls)->cbs_remove_1701_0 (arg1)); } @@ -1101,7 +1101,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkDiskCache_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -1125,7 +1125,7 @@ static void _call_cbs_updateMetaData_3377_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkCacheMetaData &arg1 = args.read (heap); + const QNetworkCacheMetaData &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkDiskCache_Adaptor *)cls)->cbs_updateMetaData_3377_0 (arg1); } diff --git a/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkProxyFactory.cc b/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkProxyFactory.cc index 1ff0fae19..6e09c4238 100644 --- a/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkProxyFactory.cc +++ b/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkProxyFactory.cc @@ -232,7 +232,7 @@ static void _call_cbs_queryProxy_3220_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkProxyQuery &arg1 = args.read (heap); + const QNetworkProxyQuery &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QNetworkProxyQuery(), heap); ret.write > ((QList)((QNetworkProxyFactory_Adaptor *)cls)->cbs_queryProxy_3220_1 (arg1)); } diff --git a/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkSession.cc b/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkSession.cc index 4e30d0436..f75c75732 100644 --- a/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkSession.cc +++ b/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkSession.cc @@ -707,7 +707,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkSession_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -745,7 +745,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkSession_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -787,7 +787,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkSession_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -829,7 +829,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QNetworkSession_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -854,8 +854,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QNetworkSession_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1027,7 +1027,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkSession_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtNetwork/gsiDeclQTcpServer.cc b/src/gsiqt/qt5/QtNetwork/gsiDeclQTcpServer.cc index b08ff60c0..5b1690888 100644 --- a/src/gsiqt/qt5/QtNetwork/gsiDeclQTcpServer.cc +++ b/src/gsiqt/qt5/QtNetwork/gsiDeclQTcpServer.cc @@ -736,7 +736,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTcpServer_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -760,7 +760,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTcpServer_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -802,7 +802,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTcpServer_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -826,7 +826,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTcpServer_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -851,8 +851,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTcpServer_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -894,7 +894,7 @@ static void _call_cbs_incomingConnection_3470_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QIntegerForSizeof::Signed arg1 = args.read::Signed > (heap); + QIntegerForSizeof::Signed arg1 = gsi::arg_reader::Signed >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTcpServer_Adaptor *)cls)->cbs_incomingConnection_3470_0 (arg1); } @@ -1033,7 +1033,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTcpServer_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtPrintSupport/gsiDeclQAbstractPrintDialog.cc b/src/gsiqt/qt5/QtPrintSupport/gsiDeclQAbstractPrintDialog.cc index 48229de68..954549e0c 100644 --- a/src/gsiqt/qt5/QtPrintSupport/gsiDeclQAbstractPrintDialog.cc +++ b/src/gsiqt/qt5/QtPrintSupport/gsiDeclQAbstractPrintDialog.cc @@ -1456,7 +1456,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPrintDialog_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1499,7 +1499,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPrintDialog_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1523,7 +1523,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPrintDialog_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1547,7 +1547,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPrintDialog_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1571,7 +1571,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPrintDialog_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1638,7 +1638,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPrintDialog_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1702,7 +1702,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPrintDialog_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1726,7 +1726,7 @@ static void _call_cbs_done_767_0 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPrintDialog_Adaptor *)cls)->cbs_done_767_0 (arg1); } @@ -1750,7 +1750,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPrintDialog_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1774,7 +1774,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPrintDialog_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1798,7 +1798,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPrintDialog_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1822,7 +1822,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPrintDialog_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1846,7 +1846,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPrintDialog_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -1870,7 +1870,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractPrintDialog_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1895,8 +1895,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractPrintDialog_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1956,7 +1956,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPrintDialog_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1994,7 +1994,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractPrintDialog_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -2017,7 +2017,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPrintDialog_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -2074,7 +2074,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QAbstractPrintDialog_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -2097,7 +2097,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPrintDialog_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -2121,7 +2121,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPrintDialog_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -2145,7 +2145,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPrintDialog_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2169,7 +2169,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QAbstractPrintDialog_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2210,7 +2210,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPrintDialog_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2234,7 +2234,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPrintDialog_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2258,7 +2258,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPrintDialog_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2282,7 +2282,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QAbstractPrintDialog_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2324,7 +2324,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPrintDialog_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2348,7 +2348,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPrintDialog_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2372,7 +2372,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPrintDialog_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2396,7 +2396,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPrintDialog_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2420,7 +2420,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPrintDialog_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2448,9 +2448,9 @@ static void _call_cbs_nativeEvent_4678_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - long int *arg3 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + long int *arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractPrintDialog_Adaptor *)cls)->cbs_nativeEvent_4678_0 (arg1, arg2, arg3)); } @@ -2530,7 +2530,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPrintDialog_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2572,7 +2572,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QAbstractPrintDialog_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -2629,7 +2629,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPrintDialog_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2681,7 +2681,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPrintDialog_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2724,7 +2724,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPrintDialog_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2767,7 +2767,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPrintDialog_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2791,7 +2791,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPrintDialog_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2830,7 +2830,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPrintDialog_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt5/QtPrintSupport/gsiDeclQPrintDialog.cc b/src/gsiqt/qt5/QtPrintSupport/gsiDeclQPrintDialog.cc index 14427decc..5b2f73559 100644 --- a/src/gsiqt/qt5/QtPrintSupport/gsiDeclQPrintDialog.cc +++ b/src/gsiqt/qt5/QtPrintSupport/gsiDeclQPrintDialog.cc @@ -1428,7 +1428,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintDialog_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1471,7 +1471,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintDialog_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1495,7 +1495,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintDialog_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1519,7 +1519,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintDialog_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1543,7 +1543,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintDialog_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1610,7 +1610,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintDialog_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1674,7 +1674,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintDialog_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1698,7 +1698,7 @@ static void _call_cbs_done_767_0 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintDialog_Adaptor *)cls)->cbs_done_767_0 (arg1); } @@ -1722,7 +1722,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintDialog_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1746,7 +1746,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintDialog_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1770,7 +1770,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintDialog_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1794,7 +1794,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintDialog_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1818,7 +1818,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintDialog_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -1842,7 +1842,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPrintDialog_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1867,8 +1867,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPrintDialog_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1928,7 +1928,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintDialog_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1966,7 +1966,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPrintDialog_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -1989,7 +1989,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintDialog_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -2046,7 +2046,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QPrintDialog_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -2069,7 +2069,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintDialog_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -2093,7 +2093,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintDialog_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -2117,7 +2117,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintDialog_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2141,7 +2141,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QPrintDialog_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2182,7 +2182,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintDialog_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2206,7 +2206,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintDialog_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2230,7 +2230,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintDialog_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2254,7 +2254,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QPrintDialog_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2296,7 +2296,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintDialog_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2320,7 +2320,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintDialog_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2344,7 +2344,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintDialog_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2368,7 +2368,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintDialog_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2392,7 +2392,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintDialog_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2420,9 +2420,9 @@ static void _call_cbs_nativeEvent_4678_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - long int *arg3 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + long int *arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPrintDialog_Adaptor *)cls)->cbs_nativeEvent_4678_0 (arg1, arg2, arg3)); } @@ -2502,7 +2502,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintDialog_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2544,7 +2544,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QPrintDialog_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -2601,7 +2601,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintDialog_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2653,7 +2653,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintDialog_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2696,7 +2696,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintDialog_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2739,7 +2739,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintDialog_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2763,7 +2763,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintDialog_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2802,7 +2802,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintDialog_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt5/QtPrintSupport/gsiDeclQPrintEngine.cc b/src/gsiqt/qt5/QtPrintSupport/gsiDeclQPrintEngine.cc index 083c7d75d..c105dcb9a 100644 --- a/src/gsiqt/qt5/QtPrintSupport/gsiDeclQPrintEngine.cc +++ b/src/gsiqt/qt5/QtPrintSupport/gsiDeclQPrintEngine.cc @@ -326,7 +326,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QPrintEngine_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -387,7 +387,7 @@ static void _call_cbs_property_c4045_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QPrintEngine_Adaptor *)cls)->cbs_property_c4045_0 (arg1)); } @@ -412,8 +412,8 @@ static void _call_cbs_setProperty_6056_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QVariant &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintEngine_Adaptor *)cls)->cbs_setProperty_6056_0 (arg1, arg2); } diff --git a/src/gsiqt/qt5/QtPrintSupport/gsiDeclQPrintPreviewDialog.cc b/src/gsiqt/qt5/QtPrintSupport/gsiDeclQPrintPreviewDialog.cc index a21d068d4..61f755fa8 100644 --- a/src/gsiqt/qt5/QtPrintSupport/gsiDeclQPrintPreviewDialog.cc +++ b/src/gsiqt/qt5/QtPrintSupport/gsiDeclQPrintPreviewDialog.cc @@ -1330,7 +1330,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewDialog_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1373,7 +1373,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewDialog_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1397,7 +1397,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewDialog_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1421,7 +1421,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewDialog_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1445,7 +1445,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewDialog_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1512,7 +1512,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewDialog_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1576,7 +1576,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewDialog_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1600,7 +1600,7 @@ static void _call_cbs_done_767_0 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewDialog_Adaptor *)cls)->cbs_done_767_0 (arg1); } @@ -1624,7 +1624,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewDialog_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1648,7 +1648,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewDialog_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1672,7 +1672,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewDialog_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1696,7 +1696,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewDialog_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1720,7 +1720,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewDialog_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -1744,7 +1744,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPrintPreviewDialog_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1769,8 +1769,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPrintPreviewDialog_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1830,7 +1830,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewDialog_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1868,7 +1868,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPrintPreviewDialog_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -1891,7 +1891,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewDialog_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -1948,7 +1948,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QPrintPreviewDialog_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -1971,7 +1971,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewDialog_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -1995,7 +1995,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewDialog_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -2019,7 +2019,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewDialog_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2043,7 +2043,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QPrintPreviewDialog_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2084,7 +2084,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewDialog_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2108,7 +2108,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewDialog_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2132,7 +2132,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewDialog_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2156,7 +2156,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QPrintPreviewDialog_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2198,7 +2198,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewDialog_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2222,7 +2222,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewDialog_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2246,7 +2246,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewDialog_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2270,7 +2270,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewDialog_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2294,7 +2294,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewDialog_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2322,9 +2322,9 @@ static void _call_cbs_nativeEvent_4678_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - long int *arg3 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + long int *arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPrintPreviewDialog_Adaptor *)cls)->cbs_nativeEvent_4678_0 (arg1, arg2, arg3)); } @@ -2404,7 +2404,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewDialog_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2464,7 +2464,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QPrintPreviewDialog_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -2521,7 +2521,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewDialog_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2573,7 +2573,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewDialog_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2616,7 +2616,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewDialog_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2659,7 +2659,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewDialog_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2683,7 +2683,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewDialog_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2722,7 +2722,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewDialog_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt5/QtPrintSupport/gsiDeclQPrintPreviewWidget.cc b/src/gsiqt/qt5/QtPrintSupport/gsiDeclQPrintPreviewWidget.cc index 09bf37f8f..e2d25d50e 100644 --- a/src/gsiqt/qt5/QtPrintSupport/gsiDeclQPrintPreviewWidget.cc +++ b/src/gsiqt/qt5/QtPrintSupport/gsiDeclQPrintPreviewWidget.cc @@ -1515,7 +1515,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewWidget_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1539,7 +1539,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewWidget_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1563,7 +1563,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewWidget_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1587,7 +1587,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewWidget_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1611,7 +1611,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewWidget_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1678,7 +1678,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewWidget_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1742,7 +1742,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewWidget_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1766,7 +1766,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewWidget_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1790,7 +1790,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewWidget_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1814,7 +1814,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewWidget_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1838,7 +1838,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewWidget_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1862,7 +1862,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewWidget_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -1886,7 +1886,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPrintPreviewWidget_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1911,8 +1911,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPrintPreviewWidget_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1935,7 +1935,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewWidget_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1973,7 +1973,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPrintPreviewWidget_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -1996,7 +1996,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewWidget_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -2053,7 +2053,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QPrintPreviewWidget_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -2076,7 +2076,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewWidget_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -2100,7 +2100,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewWidget_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -2124,7 +2124,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewWidget_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2148,7 +2148,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QPrintPreviewWidget_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2189,7 +2189,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewWidget_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2213,7 +2213,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewWidget_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2237,7 +2237,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewWidget_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2261,7 +2261,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QPrintPreviewWidget_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2303,7 +2303,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewWidget_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2327,7 +2327,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewWidget_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2351,7 +2351,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewWidget_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2375,7 +2375,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewWidget_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2399,7 +2399,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewWidget_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2427,9 +2427,9 @@ static void _call_cbs_nativeEvent_4678_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - long int *arg3 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + long int *arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPrintPreviewWidget_Adaptor *)cls)->cbs_nativeEvent_4678_0 (arg1, arg2, arg3)); } @@ -2489,7 +2489,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewWidget_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2563,7 +2563,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QPrintPreviewWidget_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -2586,7 +2586,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewWidget_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2638,7 +2638,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewWidget_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2681,7 +2681,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewWidget_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2724,7 +2724,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewWidget_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2748,7 +2748,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewWidget_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2787,7 +2787,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewWidget_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt5/QtPrintSupport/gsiDeclQPrinter.cc b/src/gsiqt/qt5/QtPrintSupport/gsiDeclQPrinter.cc index a8901e819..0c9aa6eaf 100644 --- a/src/gsiqt/qt5/QtPrintSupport/gsiDeclQPrinter.cc +++ b/src/gsiqt/qt5/QtPrintSupport/gsiDeclQPrinter.cc @@ -1673,7 +1673,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrinter_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -1697,7 +1697,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QPrinter_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -1758,7 +1758,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QPrinter_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -1803,7 +1803,7 @@ static void _call_cbs_setMargins_3812_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPagedPaintDevice::Margins &arg1 = args.read (heap); + const QPagedPaintDevice::Margins &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrinter_Adaptor *)cls)->cbs_setMargins_3812_0 (arg1); } @@ -1827,7 +1827,7 @@ static void _call_cbs_setPageSize_3006_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrinter_Adaptor *)cls)->cbs_setPageSize_3006_0 (arg1); } @@ -1851,7 +1851,7 @@ static void _call_cbs_setPageSizeMM_1875_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSizeF &arg1 = args.read (heap); + const QSizeF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrinter_Adaptor *)cls)->cbs_setPageSizeMM_1875_0 (arg1); } diff --git a/src/gsiqt/qt5/QtSql/gsiDeclQSqlDriver.cc b/src/gsiqt/qt5/QtSql/gsiDeclQSqlDriver.cc index d9cb7e7d7..67d8bc973 100644 --- a/src/gsiqt/qt5/QtSql/gsiDeclQSqlDriver.cc +++ b/src/gsiqt/qt5/QtSql/gsiDeclQSqlDriver.cc @@ -1264,7 +1264,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlDriver_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1346,7 +1346,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlDriver_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1388,7 +1388,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlDriver_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1414,8 +1414,8 @@ static void _call_cbs_escapeIdentifier_c4919_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QString)((QSqlDriver_Adaptor *)cls)->cbs_escapeIdentifier_c4919_0 (arg1, arg2)); } @@ -1438,7 +1438,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlDriver_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1463,8 +1463,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlDriver_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1489,8 +1489,8 @@ static void _call_cbs_formatValue_c2938_1 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSqlField &arg1 = args.read (heap); - bool arg2 = args.read (heap); + const QSqlField &arg1 = gsi::arg_reader() (args, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (false, heap); ret.write ((QString)((QSqlDriver_Adaptor *)cls)->cbs_formatValue_c2938_1 (arg1, arg2)); } @@ -1532,7 +1532,7 @@ static void _call_cbs_hasFeature_c2893_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((bool)((QSqlDriver_Adaptor *)cls)->cbs_hasFeature_c2893_0 (arg1)); } @@ -1557,8 +1557,8 @@ static void _call_cbs_isIdentifierEscaped_c4919_0 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((bool)((QSqlDriver_Adaptor *)cls)->cbs_isIdentifierEscaped_c4919_0 (arg1, arg2)); } @@ -1688,12 +1688,12 @@ static void _call_cbs_open_10352_5 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QString &arg3 = args.read (heap); - const QString &arg4 = args.read (heap); - int arg5 = args.read (heap); - const QString &arg6 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); + const QString &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); + const QString &arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); + int arg5 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); + const QString &arg6 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); ret.write ((bool)((QSqlDriver_Adaptor *)cls)->cbs_open_10352_5 (arg1, arg2, arg3, arg4, arg5, arg6)); } @@ -1716,7 +1716,7 @@ static void _call_cbs_primaryIndex_c2025_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QSqlIndex)((QSqlDriver_Adaptor *)cls)->cbs_primaryIndex_c2025_0 (arg1)); } @@ -1757,7 +1757,7 @@ static void _call_cbs_record_c2025_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QSqlRecord)((QSqlDriver_Adaptor *)cls)->cbs_record_c2025_0 (arg1)); } @@ -1827,7 +1827,7 @@ static void _call_cbs_setLastError_2220_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSqlError &arg1 = args.read (heap); + const QSqlError &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlDriver_Adaptor *)cls)->cbs_setLastError_2220_0 (arg1); } @@ -1851,7 +1851,7 @@ static void _call_cbs_setOpen_864_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlDriver_Adaptor *)cls)->cbs_setOpen_864_0 (arg1); } @@ -1875,7 +1875,7 @@ static void _call_cbs_setOpenError_864_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlDriver_Adaptor *)cls)->cbs_setOpenError_864_0 (arg1); } @@ -1905,10 +1905,10 @@ static void _call_cbs_sqlStatement_c7794_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QString &arg2 = args.read (heap); - const QSqlRecord &arg3 = args.read (heap); - bool arg4 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QSqlRecord &arg3 = gsi::arg_reader() (args, heap); + bool arg4 = gsi::arg_reader() (args, heap); ret.write ((QString)((QSqlDriver_Adaptor *)cls)->cbs_sqlStatement_c7794_0 (arg1, arg2, arg3, arg4)); } @@ -1933,8 +1933,8 @@ static void _call_cbs_stripDelimiters_c4919_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QString)((QSqlDriver_Adaptor *)cls)->cbs_stripDelimiters_c4919_0 (arg1, arg2)); } @@ -1957,7 +1957,7 @@ static void _call_cbs_subscribeToNotification_2025_0 (const qt_gsi::GenericMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlDriver_Adaptor *)cls)->cbs_subscribeToNotification_2025_0 (arg1)); } @@ -1999,7 +1999,7 @@ static void _call_cbs_tables_c1843_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QStringList)((QSqlDriver_Adaptor *)cls)->cbs_tables_c1843_0 (arg1)); } @@ -2022,7 +2022,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlDriver_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2046,7 +2046,7 @@ static void _call_cbs_unsubscribeFromNotification_2025_0 (const qt_gsi::GenericM { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlDriver_Adaptor *)cls)->cbs_unsubscribeFromNotification_2025_0 (arg1)); } diff --git a/src/gsiqt/qt5/QtSql/gsiDeclQSqlQueryModel.cc b/src/gsiqt/qt5/QtSql/gsiDeclQSqlQueryModel.cc index 87a280a90..0e5e8cbec 100644 --- a/src/gsiqt/qt5/QtSql/gsiDeclQSqlQueryModel.cc +++ b/src/gsiqt/qt5/QtSql/gsiDeclQSqlQueryModel.cc @@ -1696,7 +1696,7 @@ static void _call_cbs_buddy_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QSqlQueryModel_Adaptor *)cls)->cbs_buddy_c2395_0 (arg1)); } @@ -1727,11 +1727,11 @@ static void _call_cbs_canDropMimeData_c7425_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMimeData *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - const QModelIndex &arg5 = args.read (heap); + const QMimeData *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + const QModelIndex &arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlQueryModel_Adaptor *)cls)->cbs_canDropMimeData_c7425_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -1754,7 +1754,7 @@ static void _call_cbs_canFetchMore_c2395_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QSqlQueryModel_Adaptor *)cls)->cbs_canFetchMore_c2395_1 (arg1)); } @@ -1821,7 +1821,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlQueryModel_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1865,7 +1865,7 @@ static void _call_cbs_columnCount_c2395_1 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((int)((QSqlQueryModel_Adaptor *)cls)->cbs_columnCount_c2395_1 (arg1)); } @@ -2092,7 +2092,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlQueryModel_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -2118,8 +2118,8 @@ static void _call_cbs_data_c3054_1 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::DisplayRole, heap); ret.write ((QVariant)((QSqlQueryModel_Adaptor *)cls)->cbs_data_c3054_1 (arg1, arg2)); } @@ -2211,7 +2211,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlQueryModel_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -2243,11 +2243,11 @@ static void _call_cbs_dropMimeData_7425_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMimeData *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - const QModelIndex &arg5 = args.read (heap); + const QMimeData *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + const QModelIndex &arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlQueryModel_Adaptor *)cls)->cbs_dropMimeData_7425_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -2397,7 +2397,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlQueryModel_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -2422,8 +2422,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlQueryModel_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -2446,7 +2446,7 @@ static void _call_cbs_fetchMore_2395_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlQueryModel_Adaptor *)cls)->cbs_fetchMore_2395_1 (arg1); } @@ -2470,7 +2470,7 @@ static void _call_cbs_flags_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QFlags)((QSqlQueryModel_Adaptor *)cls)->cbs_flags_c2395_0 (arg1)); } @@ -2497,9 +2497,9 @@ static void _call_cbs_headerData_c3231_1 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::DisplayRole, heap); ret.write ((QVariant)((QSqlQueryModel_Adaptor *)cls)->cbs_headerData_c3231_1 (arg1, arg2, arg3)); } @@ -2550,9 +2550,9 @@ static void _call_cbs_index_c3713_1 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((QModelIndex)((QSqlQueryModel_Adaptor *)cls)->cbs_index_c3713_1 (arg1, arg2, arg3)); } @@ -2575,7 +2575,7 @@ static void _call_cbs_indexInQuery_c2395_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QSqlQueryModel_Adaptor *)cls)->cbs_indexInQuery_c2395_0 (arg1)); } @@ -2602,9 +2602,9 @@ static void _call_cbs_insertColumns_3713_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QSqlQueryModel_Adaptor *)cls)->cbs_insertColumns_3713_1 (arg1, arg2, arg3)); } @@ -2631,9 +2631,9 @@ static void _call_cbs_insertRows_3713_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QSqlQueryModel_Adaptor *)cls)->cbs_insertRows_3713_1 (arg1, arg2, arg3)); } @@ -2674,7 +2674,7 @@ static void _call_cbs_itemData_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QMap)((QSqlQueryModel_Adaptor *)cls)->cbs_itemData_c2395_0 (arg1)); } @@ -2747,11 +2747,11 @@ static void _call_cbs_match_c7932_2 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - const QVariant &arg3 = args.read (heap); - int arg4 = args.read (heap); - QFlags arg5 = args.read > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QVariant &arg3 = gsi::arg_reader() (args, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (1, heap); + QFlags arg5 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (Qt::MatchFlags(Qt::MatchStartsWith|Qt::MatchWrap), heap); ret.write > ((QList)((QSqlQueryModel_Adaptor *)cls)->cbs_match_c7932_2 (arg1, arg2, arg3, arg4, arg5)); } @@ -2774,7 +2774,7 @@ static void _call_cbs_mimeData_c3010_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); ret.write ((QMimeData *)((QSqlQueryModel_Adaptor *)cls)->cbs_mimeData_c3010_0 (arg1)); } @@ -2852,11 +2852,11 @@ static void _call_cbs_moveColumns_6659_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - const QModelIndex &arg4 = args.read (heap); - int arg5 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QModelIndex &arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlQueryModel_Adaptor *)cls)->cbs_moveColumns_6659_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -2887,11 +2887,11 @@ static void _call_cbs_moveRows_6659_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - const QModelIndex &arg4 = args.read (heap); - int arg5 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QModelIndex &arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlQueryModel_Adaptor *)cls)->cbs_moveRows_6659_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -2988,9 +2988,9 @@ static void _call_cbs_removeColumns_3713_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QSqlQueryModel_Adaptor *)cls)->cbs_removeColumns_3713_1 (arg1, arg2, arg3)); } @@ -3017,9 +3017,9 @@ static void _call_cbs_removeRows_3713_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QSqlQueryModel_Adaptor *)cls)->cbs_removeRows_3713_1 (arg1, arg2, arg3)); } @@ -3096,7 +3096,7 @@ static void _call_cbs_rowCount_c2395_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((int)((QSqlQueryModel_Adaptor *)cls)->cbs_rowCount_c2395_1 (arg1)); } @@ -3307,9 +3307,9 @@ static void _call_cbs_setData_5065_1 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::EditRole, heap); ret.write ((bool)((QSqlQueryModel_Adaptor *)cls)->cbs_setData_5065_1 (arg1, arg2, arg3)); } @@ -3338,10 +3338,10 @@ static void _call_cbs_setHeaderData_5242_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - const QVariant &arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + const QVariant &arg3 = gsi::arg_reader() (args, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::EditRole, heap); ret.write ((bool)((QSqlQueryModel_Adaptor *)cls)->cbs_setHeaderData_5242_1 (arg1, arg2, arg3, arg4)); } @@ -3366,8 +3366,8 @@ static void _call_cbs_setItemData_5414_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QMap &arg2 = args.read & > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QMap &arg2 = gsi::arg_reader & >() (args, heap); ret.write ((bool)((QSqlQueryModel_Adaptor *)cls)->cbs_setItemData_5414_0 (arg1, arg2)); } @@ -3413,9 +3413,9 @@ static void _call_cbs_sibling_c3713_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QSqlQueryModel_Adaptor *)cls)->cbs_sibling_c3713_0 (arg1, arg2, arg3)); } @@ -3440,8 +3440,8 @@ static void _call_cbs_sort_2340_1 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::AscendingOrder), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlQueryModel_Adaptor *)cls)->cbs_sort_2340_1 (arg1, arg2); } @@ -3465,7 +3465,7 @@ static void _call_cbs_span_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QSize)((QSqlQueryModel_Adaptor *)cls)->cbs_span_c2395_0 (arg1)); } @@ -3545,7 +3545,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlQueryModel_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtSql/gsiDeclQSqlRelationalTableModel.cc b/src/gsiqt/qt5/QtSql/gsiDeclQSqlRelationalTableModel.cc index a778389bb..2c94e186a 100644 --- a/src/gsiqt/qt5/QtSql/gsiDeclQSqlRelationalTableModel.cc +++ b/src/gsiqt/qt5/QtSql/gsiDeclQSqlRelationalTableModel.cc @@ -1910,7 +1910,7 @@ static void _call_cbs_buddy_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QSqlRelationalTableModel_Adaptor *)cls)->cbs_buddy_c2395_0 (arg1)); } @@ -1941,11 +1941,11 @@ static void _call_cbs_canDropMimeData_c7425_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMimeData *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - const QModelIndex &arg5 = args.read (heap); + const QMimeData *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + const QModelIndex &arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlRelationalTableModel_Adaptor *)cls)->cbs_canDropMimeData_c7425_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -1968,7 +1968,7 @@ static void _call_cbs_canFetchMore_c2395_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QSqlRelationalTableModel_Adaptor *)cls)->cbs_canFetchMore_c2395_1 (arg1)); } @@ -2035,7 +2035,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlRelationalTableModel_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -2079,7 +2079,7 @@ static void _call_cbs_columnCount_c2395_1 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((int)((QSqlRelationalTableModel_Adaptor *)cls)->cbs_columnCount_c2395_1 (arg1)); } @@ -2306,7 +2306,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlRelationalTableModel_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -2332,8 +2332,8 @@ static void _call_cbs_data_c3054_1 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::DisplayRole, heap); ret.write ((QVariant)((QSqlRelationalTableModel_Adaptor *)cls)->cbs_data_c3054_1 (arg1, arg2)); } @@ -2407,7 +2407,7 @@ static void _call_cbs_deleteRowFromTable_767_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlRelationalTableModel_Adaptor *)cls)->cbs_deleteRowFromTable_767_0 (arg1)); } @@ -2448,7 +2448,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlRelationalTableModel_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -2480,11 +2480,11 @@ static void _call_cbs_dropMimeData_7425_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMimeData *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - const QModelIndex &arg5 = args.read (heap); + const QMimeData *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + const QModelIndex &arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlRelationalTableModel_Adaptor *)cls)->cbs_dropMimeData_7425_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -2634,7 +2634,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlRelationalTableModel_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -2659,8 +2659,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlRelationalTableModel_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -2683,7 +2683,7 @@ static void _call_cbs_fetchMore_2395_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlRelationalTableModel_Adaptor *)cls)->cbs_fetchMore_2395_1 (arg1); } @@ -2707,7 +2707,7 @@ static void _call_cbs_flags_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QFlags)((QSqlRelationalTableModel_Adaptor *)cls)->cbs_flags_c2395_0 (arg1)); } @@ -2734,9 +2734,9 @@ static void _call_cbs_headerData_c3231_1 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::DisplayRole, heap); ret.write ((QVariant)((QSqlRelationalTableModel_Adaptor *)cls)->cbs_headerData_c3231_1 (arg1, arg2, arg3)); } @@ -2787,9 +2787,9 @@ static void _call_cbs_index_c3713_1 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((QModelIndex)((QSqlRelationalTableModel_Adaptor *)cls)->cbs_index_c3713_1 (arg1, arg2, arg3)); } @@ -2812,7 +2812,7 @@ static void _call_cbs_indexInQuery_c2395_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QSqlRelationalTableModel_Adaptor *)cls)->cbs_indexInQuery_c2395_0 (arg1)); } @@ -2839,9 +2839,9 @@ static void _call_cbs_insertColumns_3713_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QSqlRelationalTableModel_Adaptor *)cls)->cbs_insertColumns_3713_1 (arg1, arg2, arg3)); } @@ -2864,7 +2864,7 @@ static void _call_cbs_insertRowIntoTable_2305_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSqlRecord &arg1 = args.read (heap); + const QSqlRecord &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlRelationalTableModel_Adaptor *)cls)->cbs_insertRowIntoTable_2305_0 (arg1)); } @@ -2891,9 +2891,9 @@ static void _call_cbs_insertRows_3713_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QSqlRelationalTableModel_Adaptor *)cls)->cbs_insertRows_3713_1 (arg1, arg2, arg3)); } @@ -2934,7 +2934,7 @@ static void _call_cbs_itemData_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QMap)((QSqlRelationalTableModel_Adaptor *)cls)->cbs_itemData_c2395_0 (arg1)); } @@ -3007,11 +3007,11 @@ static void _call_cbs_match_c7932_2 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - const QVariant &arg3 = args.read (heap); - int arg4 = args.read (heap); - QFlags arg5 = args.read > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QVariant &arg3 = gsi::arg_reader() (args, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (1, heap); + QFlags arg5 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (Qt::MatchFlags(Qt::MatchStartsWith|Qt::MatchWrap), heap); ret.write > ((QList)((QSqlRelationalTableModel_Adaptor *)cls)->cbs_match_c7932_2 (arg1, arg2, arg3, arg4, arg5)); } @@ -3034,7 +3034,7 @@ static void _call_cbs_mimeData_c3010_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); ret.write ((QMimeData *)((QSqlRelationalTableModel_Adaptor *)cls)->cbs_mimeData_c3010_0 (arg1)); } @@ -3112,11 +3112,11 @@ static void _call_cbs_moveColumns_6659_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - const QModelIndex &arg4 = args.read (heap); - int arg5 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QModelIndex &arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlRelationalTableModel_Adaptor *)cls)->cbs_moveColumns_6659_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -3147,11 +3147,11 @@ static void _call_cbs_moveRows_6659_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - const QModelIndex &arg4 = args.read (heap); - int arg5 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QModelIndex &arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlRelationalTableModel_Adaptor *)cls)->cbs_moveRows_6659_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -3302,7 +3302,7 @@ static void _call_cbs_relationModel_c767_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QSqlTableModel *)((QSqlRelationalTableModel_Adaptor *)cls)->cbs_relationModel_c767_0 (arg1)); } @@ -3329,9 +3329,9 @@ static void _call_cbs_removeColumns_3713_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QSqlRelationalTableModel_Adaptor *)cls)->cbs_removeColumns_3713_1 (arg1, arg2, arg3)); } @@ -3358,9 +3358,9 @@ static void _call_cbs_removeRows_3713_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QSqlRelationalTableModel_Adaptor *)cls)->cbs_removeRows_3713_1 (arg1, arg2, arg3)); } @@ -3418,7 +3418,7 @@ static void _call_cbs_revertRow_767_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlRelationalTableModel_Adaptor *)cls)->cbs_revertRow_767_0 (arg1); } @@ -3461,7 +3461,7 @@ static void _call_cbs_rowCount_c2395_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((int)((QSqlRelationalTableModel_Adaptor *)cls)->cbs_rowCount_c2395_1 (arg1)); } @@ -3659,7 +3659,7 @@ static void _call_cbs_selectRow_767_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlRelationalTableModel_Adaptor *)cls)->cbs_selectRow_767_0 (arg1)); } @@ -3733,9 +3733,9 @@ static void _call_cbs_setData_5065_1 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::EditRole, heap); ret.write ((bool)((QSqlRelationalTableModel_Adaptor *)cls)->cbs_setData_5065_1 (arg1, arg2, arg3)); } @@ -3758,7 +3758,7 @@ static void _call_cbs_setEditStrategy_3163_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlRelationalTableModel_Adaptor *)cls)->cbs_setEditStrategy_3163_0 (arg1); } @@ -3782,7 +3782,7 @@ static void _call_cbs_setFilter_2025_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlRelationalTableModel_Adaptor *)cls)->cbs_setFilter_2025_0 (arg1); } @@ -3812,10 +3812,10 @@ static void _call_cbs_setHeaderData_5242_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - const QVariant &arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + const QVariant &arg3 = gsi::arg_reader() (args, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::EditRole, heap); ret.write ((bool)((QSqlRelationalTableModel_Adaptor *)cls)->cbs_setHeaderData_5242_1 (arg1, arg2, arg3, arg4)); } @@ -3840,8 +3840,8 @@ static void _call_cbs_setItemData_5414_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QMap &arg2 = args.read & > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QMap &arg2 = gsi::arg_reader & >() (args, heap); ret.write ((bool)((QSqlRelationalTableModel_Adaptor *)cls)->cbs_setItemData_5414_0 (arg1, arg2)); } @@ -3923,8 +3923,8 @@ static void _call_cbs_setRelation_3187_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QSqlRelation &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QSqlRelation &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlRelationalTableModel_Adaptor *)cls)->cbs_setRelation_3187_0 (arg1, arg2); } @@ -3950,8 +3950,8 @@ static void _call_cbs_setSort_2340_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlRelationalTableModel_Adaptor *)cls)->cbs_setSort_2340_0 (arg1, arg2); } @@ -3975,7 +3975,7 @@ static void _call_cbs_setTable_2025_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlRelationalTableModel_Adaptor *)cls)->cbs_setTable_2025_0 (arg1); } @@ -4003,9 +4003,9 @@ static void _call_cbs_sibling_c3713_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QSqlRelationalTableModel_Adaptor *)cls)->cbs_sibling_c3713_0 (arg1, arg2, arg3)); } @@ -4030,8 +4030,8 @@ static void _call_cbs_sort_2340_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlRelationalTableModel_Adaptor *)cls)->cbs_sort_2340_0 (arg1, arg2); } @@ -4055,7 +4055,7 @@ static void _call_cbs_span_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QSize)((QSqlRelationalTableModel_Adaptor *)cls)->cbs_span_c2395_0 (arg1)); } @@ -4135,7 +4135,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlRelationalTableModel_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -4161,8 +4161,8 @@ static void _call_cbs_updateRowInTable_2964_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QSqlRecord &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QSqlRecord &arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlRelationalTableModel_Adaptor *)cls)->cbs_updateRowInTable_2964_0 (arg1, arg2)); } diff --git a/src/gsiqt/qt5/QtSql/gsiDeclQSqlResult.cc b/src/gsiqt/qt5/QtSql/gsiDeclQSqlResult.cc index 9feceef13..3b0cd76b3 100644 --- a/src/gsiqt/qt5/QtSql/gsiDeclQSqlResult.cc +++ b/src/gsiqt/qt5/QtSql/gsiDeclQSqlResult.cc @@ -712,9 +712,9 @@ static void _call_cbs_bindValue_5596_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); - QFlags arg3 = args.read > (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); + QFlags arg3 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlResult_Adaptor *)cls)->cbs_bindValue_5596_0 (arg1, arg2, arg3); } @@ -742,9 +742,9 @@ static void _call_cbs_bindValue_6854_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); - QFlags arg3 = args.read > (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); + QFlags arg3 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlResult_Adaptor *)cls)->cbs_bindValue_6854_0 (arg1, arg2, arg3); } @@ -915,7 +915,7 @@ static void _call_cbs_data_767_0 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QSqlResult_Adaptor *)cls)->cbs_data_767_0 (arg1)); } @@ -991,7 +991,7 @@ static void _call_cbs_execBatch_864_1 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (false, heap); ret.write ((bool)((QSqlResult_Adaptor *)cls)->cbs_execBatch_864_1 (arg1)); } @@ -1028,7 +1028,7 @@ static void _call_cbs_fetch_767_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlResult_Adaptor *)cls)->cbs_fetch_767_0 (arg1)); } @@ -1188,7 +1188,7 @@ static void _call_cbs_isNull_767_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlResult_Adaptor *)cls)->cbs_isNull_767_0 (arg1)); } @@ -1338,7 +1338,7 @@ static void _call_cbs_prepare_2025_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlResult_Adaptor *)cls)->cbs_prepare_2025_0 (arg1)); } @@ -1380,7 +1380,7 @@ static void _call_cbs_reset_2025_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlResult_Adaptor *)cls)->cbs_reset_2025_0 (arg1)); } @@ -1418,7 +1418,7 @@ static void _call_cbs_savePrepare_2025_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlResult_Adaptor *)cls)->cbs_savePrepare_2025_0 (arg1)); } @@ -1441,7 +1441,7 @@ static void _call_cbs_setActive_864_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlResult_Adaptor *)cls)->cbs_setActive_864_0 (arg1); } @@ -1465,7 +1465,7 @@ static void _call_cbs_setAt_767_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlResult_Adaptor *)cls)->cbs_setAt_767_0 (arg1); } @@ -1489,7 +1489,7 @@ static void _call_cbs_setForwardOnly_864_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlResult_Adaptor *)cls)->cbs_setForwardOnly_864_0 (arg1); } @@ -1513,7 +1513,7 @@ static void _call_cbs_setLastError_2220_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSqlError &arg1 = args.read (heap); + const QSqlError &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlResult_Adaptor *)cls)->cbs_setLastError_2220_0 (arg1); } @@ -1537,7 +1537,7 @@ static void _call_cbs_setNumericalPrecisionPolicy_3429_0 (const qt_gsi::GenericM { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlResult_Adaptor *)cls)->cbs_setNumericalPrecisionPolicy_3429_0 (arg1); } @@ -1561,7 +1561,7 @@ static void _call_cbs_setQuery_2025_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlResult_Adaptor *)cls)->cbs_setQuery_2025_0 (arg1); } @@ -1585,7 +1585,7 @@ static void _call_cbs_setSelect_864_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlResult_Adaptor *)cls)->cbs_setSelect_864_0 (arg1); } @@ -1630,8 +1630,8 @@ static void _call_cbs_virtual_hook_1715_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - void *arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlResult_Adaptor *)cls)->cbs_virtual_hook_1715_0 (arg1, arg2); } diff --git a/src/gsiqt/qt5/QtSql/gsiDeclQSqlTableModel.cc b/src/gsiqt/qt5/QtSql/gsiDeclQSqlTableModel.cc index bb8250899..1b400b7d8 100644 --- a/src/gsiqt/qt5/QtSql/gsiDeclQSqlTableModel.cc +++ b/src/gsiqt/qt5/QtSql/gsiDeclQSqlTableModel.cc @@ -2303,7 +2303,7 @@ static void _call_cbs_buddy_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QSqlTableModel_Adaptor *)cls)->cbs_buddy_c2395_0 (arg1)); } @@ -2334,11 +2334,11 @@ static void _call_cbs_canDropMimeData_c7425_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMimeData *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - const QModelIndex &arg5 = args.read (heap); + const QMimeData *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + const QModelIndex &arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlTableModel_Adaptor *)cls)->cbs_canDropMimeData_c7425_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -2361,7 +2361,7 @@ static void _call_cbs_canFetchMore_c2395_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QSqlTableModel_Adaptor *)cls)->cbs_canFetchMore_c2395_1 (arg1)); } @@ -2428,7 +2428,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlTableModel_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -2472,7 +2472,7 @@ static void _call_cbs_columnCount_c2395_1 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((int)((QSqlTableModel_Adaptor *)cls)->cbs_columnCount_c2395_1 (arg1)); } @@ -2699,7 +2699,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlTableModel_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -2725,8 +2725,8 @@ static void _call_cbs_data_c3054_1 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::DisplayRole, heap); ret.write ((QVariant)((QSqlTableModel_Adaptor *)cls)->cbs_data_c3054_1 (arg1, arg2)); } @@ -2800,7 +2800,7 @@ static void _call_cbs_deleteRowFromTable_767_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlTableModel_Adaptor *)cls)->cbs_deleteRowFromTable_767_0 (arg1)); } @@ -2841,7 +2841,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlTableModel_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -2873,11 +2873,11 @@ static void _call_cbs_dropMimeData_7425_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMimeData *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - const QModelIndex &arg5 = args.read (heap); + const QMimeData *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + const QModelIndex &arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlTableModel_Adaptor *)cls)->cbs_dropMimeData_7425_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -3027,7 +3027,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlTableModel_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -3052,8 +3052,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlTableModel_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -3076,7 +3076,7 @@ static void _call_cbs_fetchMore_2395_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlTableModel_Adaptor *)cls)->cbs_fetchMore_2395_1 (arg1); } @@ -3100,7 +3100,7 @@ static void _call_cbs_flags_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QFlags)((QSqlTableModel_Adaptor *)cls)->cbs_flags_c2395_0 (arg1)); } @@ -3127,9 +3127,9 @@ static void _call_cbs_headerData_c3231_1 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::DisplayRole, heap); ret.write ((QVariant)((QSqlTableModel_Adaptor *)cls)->cbs_headerData_c3231_1 (arg1, arg2, arg3)); } @@ -3180,9 +3180,9 @@ static void _call_cbs_index_c3713_1 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((QModelIndex)((QSqlTableModel_Adaptor *)cls)->cbs_index_c3713_1 (arg1, arg2, arg3)); } @@ -3205,7 +3205,7 @@ static void _call_cbs_indexInQuery_c2395_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QSqlTableModel_Adaptor *)cls)->cbs_indexInQuery_c2395_0 (arg1)); } @@ -3232,9 +3232,9 @@ static void _call_cbs_insertColumns_3713_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QSqlTableModel_Adaptor *)cls)->cbs_insertColumns_3713_1 (arg1, arg2, arg3)); } @@ -3257,7 +3257,7 @@ static void _call_cbs_insertRowIntoTable_2305_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSqlRecord &arg1 = args.read (heap); + const QSqlRecord &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlTableModel_Adaptor *)cls)->cbs_insertRowIntoTable_2305_0 (arg1)); } @@ -3284,9 +3284,9 @@ static void _call_cbs_insertRows_3713_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QSqlTableModel_Adaptor *)cls)->cbs_insertRows_3713_1 (arg1, arg2, arg3)); } @@ -3327,7 +3327,7 @@ static void _call_cbs_itemData_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QMap)((QSqlTableModel_Adaptor *)cls)->cbs_itemData_c2395_0 (arg1)); } @@ -3400,11 +3400,11 @@ static void _call_cbs_match_c7932_2 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - const QVariant &arg3 = args.read (heap); - int arg4 = args.read (heap); - QFlags arg5 = args.read > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QVariant &arg3 = gsi::arg_reader() (args, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (1, heap); + QFlags arg5 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (Qt::MatchFlags(Qt::MatchStartsWith|Qt::MatchWrap), heap); ret.write > ((QList)((QSqlTableModel_Adaptor *)cls)->cbs_match_c7932_2 (arg1, arg2, arg3, arg4, arg5)); } @@ -3427,7 +3427,7 @@ static void _call_cbs_mimeData_c3010_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); ret.write ((QMimeData *)((QSqlTableModel_Adaptor *)cls)->cbs_mimeData_c3010_0 (arg1)); } @@ -3505,11 +3505,11 @@ static void _call_cbs_moveColumns_6659_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - const QModelIndex &arg4 = args.read (heap); - int arg5 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QModelIndex &arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlTableModel_Adaptor *)cls)->cbs_moveColumns_6659_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -3540,11 +3540,11 @@ static void _call_cbs_moveRows_6659_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - const QModelIndex &arg4 = args.read (heap); - int arg5 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QModelIndex &arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlTableModel_Adaptor *)cls)->cbs_moveRows_6659_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -3699,9 +3699,9 @@ static void _call_cbs_removeColumns_3713_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QSqlTableModel_Adaptor *)cls)->cbs_removeColumns_3713_1 (arg1, arg2, arg3)); } @@ -3728,9 +3728,9 @@ static void _call_cbs_removeRows_3713_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QSqlTableModel_Adaptor *)cls)->cbs_removeRows_3713_1 (arg1, arg2, arg3)); } @@ -3788,7 +3788,7 @@ static void _call_cbs_revertRow_767_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlTableModel_Adaptor *)cls)->cbs_revertRow_767_0 (arg1); } @@ -3831,7 +3831,7 @@ static void _call_cbs_rowCount_c2395_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((int)((QSqlTableModel_Adaptor *)cls)->cbs_rowCount_c2395_1 (arg1)); } @@ -4029,7 +4029,7 @@ static void _call_cbs_selectRow_767_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlTableModel_Adaptor *)cls)->cbs_selectRow_767_0 (arg1)); } @@ -4103,9 +4103,9 @@ static void _call_cbs_setData_5065_1 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::EditRole, heap); ret.write ((bool)((QSqlTableModel_Adaptor *)cls)->cbs_setData_5065_1 (arg1, arg2, arg3)); } @@ -4128,7 +4128,7 @@ static void _call_cbs_setEditStrategy_3163_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlTableModel_Adaptor *)cls)->cbs_setEditStrategy_3163_0 (arg1); } @@ -4152,7 +4152,7 @@ static void _call_cbs_setFilter_2025_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlTableModel_Adaptor *)cls)->cbs_setFilter_2025_0 (arg1); } @@ -4182,10 +4182,10 @@ static void _call_cbs_setHeaderData_5242_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - const QVariant &arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + const QVariant &arg3 = gsi::arg_reader() (args, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::EditRole, heap); ret.write ((bool)((QSqlTableModel_Adaptor *)cls)->cbs_setHeaderData_5242_1 (arg1, arg2, arg3, arg4)); } @@ -4210,8 +4210,8 @@ static void _call_cbs_setItemData_5414_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QMap &arg2 = args.read & > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QMap &arg2 = gsi::arg_reader & >() (args, heap); ret.write ((bool)((QSqlTableModel_Adaptor *)cls)->cbs_setItemData_5414_0 (arg1, arg2)); } @@ -4293,8 +4293,8 @@ static void _call_cbs_setSort_2340_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlTableModel_Adaptor *)cls)->cbs_setSort_2340_0 (arg1, arg2); } @@ -4318,7 +4318,7 @@ static void _call_cbs_setTable_2025_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlTableModel_Adaptor *)cls)->cbs_setTable_2025_0 (arg1); } @@ -4346,9 +4346,9 @@ static void _call_cbs_sibling_c3713_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QSqlTableModel_Adaptor *)cls)->cbs_sibling_c3713_0 (arg1, arg2, arg3)); } @@ -4373,8 +4373,8 @@ static void _call_cbs_sort_2340_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlTableModel_Adaptor *)cls)->cbs_sort_2340_0 (arg1, arg2); } @@ -4398,7 +4398,7 @@ static void _call_cbs_span_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QSize)((QSqlTableModel_Adaptor *)cls)->cbs_span_c2395_0 (arg1)); } @@ -4478,7 +4478,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlTableModel_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -4504,8 +4504,8 @@ static void _call_cbs_updateRowInTable_2964_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QSqlRecord &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QSqlRecord &arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlTableModel_Adaptor *)cls)->cbs_updateRowInTable_2964_0 (arg1, arg2)); } diff --git a/src/gsiqt/qt5/QtSvg/gsiDeclQGraphicsSvgItem.cc b/src/gsiqt/qt5/QtSvg/gsiDeclQGraphicsSvgItem.cc index 0921f0561..b0f3a8be3 100644 --- a/src/gsiqt/qt5/QtSvg/gsiDeclQGraphicsSvgItem.cc +++ b/src/gsiqt/qt5/QtSvg/gsiDeclQGraphicsSvgItem.cc @@ -1256,7 +1256,7 @@ static void _call_cbs_advance_767_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSvgItem_Adaptor *)cls)->cbs_advance_767_0 (arg1); } @@ -1299,7 +1299,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSvgItem_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1339,8 +1339,8 @@ static void _call_cbs_collidesWithItem_c4977_1 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape), heap); ret.write ((bool)((QGraphicsSvgItem_Adaptor *)cls)->cbs_collidesWithItem_c4977_1 (arg1, arg2)); } @@ -1365,8 +1365,8 @@ static void _call_cbs_collidesWithPath_c4877_1 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape), heap); ret.write ((bool)((QGraphicsSvgItem_Adaptor *)cls)->cbs_collidesWithPath_c4877_1 (arg1, arg2)); } @@ -1389,7 +1389,7 @@ static void _call_cbs_contains_c1986_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsSvgItem_Adaptor *)cls)->cbs_contains_c1986_0 (arg1)); } @@ -1412,7 +1412,7 @@ static void _call_cbs_contextMenuEvent_3674_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneContextMenuEvent *arg1 = args.read (heap); + QGraphicsSceneContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSvgItem_Adaptor *)cls)->cbs_contextMenuEvent_3674_0 (arg1); } @@ -1436,7 +1436,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSvgItem_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1478,7 +1478,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSvgItem_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1502,7 +1502,7 @@ static void _call_cbs_dragEnterEvent_3315_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSvgItem_Adaptor *)cls)->cbs_dragEnterEvent_3315_0 (arg1); } @@ -1526,7 +1526,7 @@ static void _call_cbs_dragLeaveEvent_3315_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSvgItem_Adaptor *)cls)->cbs_dragLeaveEvent_3315_0 (arg1); } @@ -1550,7 +1550,7 @@ static void _call_cbs_dragMoveEvent_3315_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSvgItem_Adaptor *)cls)->cbs_dragMoveEvent_3315_0 (arg1); } @@ -1574,7 +1574,7 @@ static void _call_cbs_dropEvent_3315_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSvgItem_Adaptor *)cls)->cbs_dropEvent_3315_0 (arg1); } @@ -1612,7 +1612,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsSvgItem_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1637,8 +1637,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsSvgItem_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1661,7 +1661,7 @@ static void _call_cbs_extension_c2119_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVariant &arg1 = args.read (heap); + const QVariant &arg1 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QGraphicsSvgItem_Adaptor *)cls)->cbs_extension_c2119_0 (arg1)); } @@ -1684,7 +1684,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSvgItem_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1708,7 +1708,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSvgItem_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -1746,7 +1746,7 @@ static void _call_cbs_hoverEnterEvent_3044_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSvgItem_Adaptor *)cls)->cbs_hoverEnterEvent_3044_0 (arg1); } @@ -1770,7 +1770,7 @@ static void _call_cbs_hoverLeaveEvent_3044_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSvgItem_Adaptor *)cls)->cbs_hoverLeaveEvent_3044_0 (arg1); } @@ -1794,7 +1794,7 @@ static void _call_cbs_hoverMoveEvent_3044_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSvgItem_Adaptor *)cls)->cbs_hoverMoveEvent_3044_0 (arg1); } @@ -1818,7 +1818,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSvgItem_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -1842,7 +1842,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QGraphicsSvgItem_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -1865,7 +1865,7 @@ static void _call_cbs_isObscuredBy_c2614_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsSvgItem_Adaptor *)cls)->cbs_isObscuredBy_c2614_0 (arg1)); } @@ -1908,8 +1908,8 @@ static void _call_cbs_itemChange_5658_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QVariant &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QGraphicsSvgItem_Adaptor *)cls)->cbs_itemChange_5658_0 (arg1, arg2)); } @@ -1932,7 +1932,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSvgItem_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -1956,7 +1956,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSvgItem_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -1980,7 +1980,7 @@ static void _call_cbs_mouseDoubleClickEvent_3049_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSvgItem_Adaptor *)cls)->cbs_mouseDoubleClickEvent_3049_0 (arg1); } @@ -2004,7 +2004,7 @@ static void _call_cbs_mouseMoveEvent_3049_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSvgItem_Adaptor *)cls)->cbs_mouseMoveEvent_3049_0 (arg1); } @@ -2028,7 +2028,7 @@ static void _call_cbs_mousePressEvent_3049_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSvgItem_Adaptor *)cls)->cbs_mousePressEvent_3049_0 (arg1); } @@ -2052,7 +2052,7 @@ static void _call_cbs_mouseReleaseEvent_3049_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSvgItem_Adaptor *)cls)->cbs_mouseReleaseEvent_3049_0 (arg1); } @@ -2131,9 +2131,9 @@ static void _call_cbs_paint_6301_1 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QStyleOptionGraphicsItem *arg2 = args.read (heap); - QWidget *arg3 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionGraphicsItem *arg2 = gsi::arg_reader() (args, heap); + QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSvgItem_Adaptor *)cls)->cbs_paint_6301_1 (arg1, arg2, arg3); } @@ -2247,7 +2247,7 @@ static void _call_cbs_sceneEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsSvgItem_Adaptor *)cls)->cbs_sceneEvent_1217_0 (arg1)); } @@ -2272,8 +2272,8 @@ static void _call_cbs_sceneEventFilter_3028_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsItem *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsSvgItem_Adaptor *)cls)->cbs_sceneEventFilter_3028_0 (arg1, arg2)); } @@ -2326,8 +2326,8 @@ static void _call_cbs_setExtension_4817_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSvgItem_Adaptor *)cls)->cbs_setExtension_4817_0 (arg1, arg2); } @@ -2370,7 +2370,7 @@ static void _call_cbs_supportsExtension_c2806_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsSvgItem_Adaptor *)cls)->cbs_supportsExtension_c2806_0 (arg1)); } @@ -2393,7 +2393,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSvgItem_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2465,7 +2465,7 @@ static void _call_cbs_wheelEvent_3029_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneWheelEvent *arg1 = args.read (heap); + QGraphicsSceneWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSvgItem_Adaptor *)cls)->cbs_wheelEvent_3029_0 (arg1); } diff --git a/src/gsiqt/qt5/QtSvg/gsiDeclQSvgGenerator.cc b/src/gsiqt/qt5/QtSvg/gsiDeclQSvgGenerator.cc index 5f1837e00..727688099 100644 --- a/src/gsiqt/qt5/QtSvg/gsiDeclQSvgGenerator.cc +++ b/src/gsiqt/qt5/QtSvg/gsiDeclQSvgGenerator.cc @@ -481,7 +481,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSvgGenerator_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -505,7 +505,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QSvgGenerator_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -547,7 +547,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QSvgGenerator_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } diff --git a/src/gsiqt/qt5/QtSvg/gsiDeclQSvgRenderer.cc b/src/gsiqt/qt5/QtSvg/gsiDeclQSvgRenderer.cc index e35a59410..f333c16a4 100644 --- a/src/gsiqt/qt5/QtSvg/gsiDeclQSvgRenderer.cc +++ b/src/gsiqt/qt5/QtSvg/gsiDeclQSvgRenderer.cc @@ -826,7 +826,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSvgRenderer_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -850,7 +850,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSvgRenderer_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -892,7 +892,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSvgRenderer_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -916,7 +916,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSvgRenderer_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -941,8 +941,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSvgRenderer_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1061,7 +1061,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSvgRenderer_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtSvg/gsiDeclQSvgWidget.cc b/src/gsiqt/qt5/QtSvg/gsiDeclQSvgWidget.cc index a800a9aef..d921ad87e 100644 --- a/src/gsiqt/qt5/QtSvg/gsiDeclQSvgWidget.cc +++ b/src/gsiqt/qt5/QtSvg/gsiDeclQSvgWidget.cc @@ -1140,7 +1140,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSvgWidget_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1164,7 +1164,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSvgWidget_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1188,7 +1188,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSvgWidget_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1212,7 +1212,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSvgWidget_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1236,7 +1236,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSvgWidget_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1303,7 +1303,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSvgWidget_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1367,7 +1367,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSvgWidget_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1391,7 +1391,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSvgWidget_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1415,7 +1415,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSvgWidget_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1439,7 +1439,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSvgWidget_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1463,7 +1463,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSvgWidget_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1487,7 +1487,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSvgWidget_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -1511,7 +1511,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSvgWidget_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1536,8 +1536,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSvgWidget_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1560,7 +1560,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSvgWidget_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1598,7 +1598,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSvgWidget_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -1621,7 +1621,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSvgWidget_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -1678,7 +1678,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QSvgWidget_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -1701,7 +1701,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSvgWidget_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -1725,7 +1725,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSvgWidget_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -1749,7 +1749,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSvgWidget_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -1773,7 +1773,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QSvgWidget_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -1814,7 +1814,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSvgWidget_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -1838,7 +1838,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSvgWidget_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -1862,7 +1862,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSvgWidget_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -1886,7 +1886,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QSvgWidget_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -1928,7 +1928,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSvgWidget_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -1952,7 +1952,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSvgWidget_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -1976,7 +1976,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSvgWidget_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2000,7 +2000,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSvgWidget_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2024,7 +2024,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSvgWidget_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2052,9 +2052,9 @@ static void _call_cbs_nativeEvent_4678_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - long int *arg3 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + long int *arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSvgWidget_Adaptor *)cls)->cbs_nativeEvent_4678_0 (arg1, arg2, arg3)); } @@ -2114,7 +2114,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSvgWidget_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2156,7 +2156,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QSvgWidget_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -2179,7 +2179,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSvgWidget_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2231,7 +2231,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSvgWidget_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2274,7 +2274,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSvgWidget_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2317,7 +2317,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSvgWidget_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2341,7 +2341,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSvgWidget_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2380,7 +2380,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSvgWidget_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt5/QtUiTools/gsiDeclQUiLoader.cc b/src/gsiqt/qt5/QtUiTools/gsiDeclQUiLoader.cc index 549ddd05c..3b523a835 100644 --- a/src/gsiqt/qt5/QtUiTools/gsiDeclQUiLoader.cc +++ b/src/gsiqt/qt5/QtUiTools/gsiDeclQUiLoader.cc @@ -710,7 +710,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUiLoader_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -736,8 +736,8 @@ static void _call_cbs_createAction_3219_2 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); + const QString &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); ret.write ((QAction *)((QUiLoader_Adaptor *)cls)->cbs_createAction_3219_2 (arg1, arg2)); } @@ -762,8 +762,8 @@ static void _call_cbs_createActionGroup_3219_2 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); + const QString &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); ret.write ((QActionGroup *)((QUiLoader_Adaptor *)cls)->cbs_createActionGroup_3219_2 (arg1, arg2)); } @@ -790,9 +790,9 @@ static void _call_cbs_createLayout_5136_2 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - QObject *arg2 = args.read (heap); - const QString &arg3 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + QObject *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); + const QString &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); ret.write ((QLayout *)((QUiLoader_Adaptor *)cls)->cbs_createLayout_5136_2 (arg1, arg2, arg3)); } @@ -819,9 +819,9 @@ static void _call_cbs_createWidget_5149_2 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - QWidget *arg2 = args.read (heap); - const QString &arg3 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); + const QString &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); ret.write ((QWidget *)((QUiLoader_Adaptor *)cls)->cbs_createWidget_5149_2 (arg1, arg2, arg3)); } @@ -844,7 +844,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUiLoader_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -886,7 +886,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUiLoader_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -910,7 +910,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QUiLoader_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -935,8 +935,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QUiLoader_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1041,7 +1041,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUiLoader_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQAbstractButton.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQAbstractButton.cc index d7b391747..4fa48d022 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQAbstractButton.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQAbstractButton.cc @@ -1588,7 +1588,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractButton_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1612,7 +1612,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractButton_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1656,7 +1656,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractButton_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1698,7 +1698,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractButton_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1722,7 +1722,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractButton_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1789,7 +1789,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractButton_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1853,7 +1853,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractButton_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1877,7 +1877,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractButton_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1901,7 +1901,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractButton_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1925,7 +1925,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractButton_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1949,7 +1949,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractButton_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1973,7 +1973,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractButton_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -1997,7 +1997,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractButton_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -2022,8 +2022,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractButton_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -2046,7 +2046,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractButton_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -2084,7 +2084,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractButton_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -2107,7 +2107,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractButton_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -2164,7 +2164,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QAbstractButton_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -2187,7 +2187,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractButton_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -2211,7 +2211,7 @@ static void _call_cbs_hitButton_c1916_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractButton_Adaptor *)cls)->cbs_hitButton_c1916_0 (arg1)); } @@ -2234,7 +2234,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractButton_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -2258,7 +2258,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractButton_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2282,7 +2282,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QAbstractButton_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2323,7 +2323,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractButton_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2347,7 +2347,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractButton_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2371,7 +2371,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractButton_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2395,7 +2395,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QAbstractButton_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2437,7 +2437,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractButton_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2461,7 +2461,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractButton_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2485,7 +2485,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractButton_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2509,7 +2509,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractButton_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2533,7 +2533,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractButton_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2561,9 +2561,9 @@ static void _call_cbs_nativeEvent_4678_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - long int *arg3 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + long int *arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractButton_Adaptor *)cls)->cbs_nativeEvent_4678_0 (arg1, arg2, arg3)); } @@ -2643,7 +2643,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractButton_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2699,7 +2699,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QAbstractButton_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -2736,7 +2736,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractButton_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2788,7 +2788,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractButton_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2831,7 +2831,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractButton_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2874,7 +2874,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractButton_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2898,7 +2898,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractButton_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2955,7 +2955,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractButton_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQAbstractGraphicsShapeItem.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQAbstractGraphicsShapeItem.cc index eb1d9b2a4..a715ff9d8 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQAbstractGraphicsShapeItem.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQAbstractGraphicsShapeItem.cc @@ -844,7 +844,7 @@ static void _call_cbs_advance_767_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractGraphicsShapeItem_Adaptor *)cls)->cbs_advance_767_0 (arg1); } @@ -889,8 +889,8 @@ static void _call_cbs_collidesWithItem_c4977_1 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape), heap); ret.write ((bool)((QAbstractGraphicsShapeItem_Adaptor *)cls)->cbs_collidesWithItem_c4977_1 (arg1, arg2)); } @@ -915,8 +915,8 @@ static void _call_cbs_collidesWithPath_c4877_1 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape), heap); ret.write ((bool)((QAbstractGraphicsShapeItem_Adaptor *)cls)->cbs_collidesWithPath_c4877_1 (arg1, arg2)); } @@ -939,7 +939,7 @@ static void _call_cbs_contains_c1986_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractGraphicsShapeItem_Adaptor *)cls)->cbs_contains_c1986_0 (arg1)); } @@ -962,7 +962,7 @@ static void _call_cbs_contextMenuEvent_3674_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneContextMenuEvent *arg1 = args.read (heap); + QGraphicsSceneContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractGraphicsShapeItem_Adaptor *)cls)->cbs_contextMenuEvent_3674_0 (arg1); } @@ -986,7 +986,7 @@ static void _call_cbs_dragEnterEvent_3315_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractGraphicsShapeItem_Adaptor *)cls)->cbs_dragEnterEvent_3315_0 (arg1); } @@ -1010,7 +1010,7 @@ static void _call_cbs_dragLeaveEvent_3315_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractGraphicsShapeItem_Adaptor *)cls)->cbs_dragLeaveEvent_3315_0 (arg1); } @@ -1034,7 +1034,7 @@ static void _call_cbs_dragMoveEvent_3315_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractGraphicsShapeItem_Adaptor *)cls)->cbs_dragMoveEvent_3315_0 (arg1); } @@ -1058,7 +1058,7 @@ static void _call_cbs_dropEvent_3315_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractGraphicsShapeItem_Adaptor *)cls)->cbs_dropEvent_3315_0 (arg1); } @@ -1082,7 +1082,7 @@ static void _call_cbs_extension_c2119_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVariant &arg1 = args.read (heap); + const QVariant &arg1 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QAbstractGraphicsShapeItem_Adaptor *)cls)->cbs_extension_c2119_0 (arg1)); } @@ -1105,7 +1105,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractGraphicsShapeItem_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1129,7 +1129,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractGraphicsShapeItem_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -1153,7 +1153,7 @@ static void _call_cbs_hoverEnterEvent_3044_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractGraphicsShapeItem_Adaptor *)cls)->cbs_hoverEnterEvent_3044_0 (arg1); } @@ -1177,7 +1177,7 @@ static void _call_cbs_hoverLeaveEvent_3044_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractGraphicsShapeItem_Adaptor *)cls)->cbs_hoverLeaveEvent_3044_0 (arg1); } @@ -1201,7 +1201,7 @@ static void _call_cbs_hoverMoveEvent_3044_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractGraphicsShapeItem_Adaptor *)cls)->cbs_hoverMoveEvent_3044_0 (arg1); } @@ -1225,7 +1225,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractGraphicsShapeItem_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -1249,7 +1249,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QAbstractGraphicsShapeItem_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -1272,7 +1272,7 @@ static void _call_cbs_isObscuredBy_c2614_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractGraphicsShapeItem_Adaptor *)cls)->cbs_isObscuredBy_c2614_0 (arg1)); } @@ -1297,8 +1297,8 @@ static void _call_cbs_itemChange_5658_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QVariant &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QAbstractGraphicsShapeItem_Adaptor *)cls)->cbs_itemChange_5658_0 (arg1, arg2)); } @@ -1321,7 +1321,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractGraphicsShapeItem_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -1345,7 +1345,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractGraphicsShapeItem_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -1369,7 +1369,7 @@ static void _call_cbs_mouseDoubleClickEvent_3049_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractGraphicsShapeItem_Adaptor *)cls)->cbs_mouseDoubleClickEvent_3049_0 (arg1); } @@ -1393,7 +1393,7 @@ static void _call_cbs_mouseMoveEvent_3049_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractGraphicsShapeItem_Adaptor *)cls)->cbs_mouseMoveEvent_3049_0 (arg1); } @@ -1417,7 +1417,7 @@ static void _call_cbs_mousePressEvent_3049_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractGraphicsShapeItem_Adaptor *)cls)->cbs_mousePressEvent_3049_0 (arg1); } @@ -1441,7 +1441,7 @@ static void _call_cbs_mouseReleaseEvent_3049_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractGraphicsShapeItem_Adaptor *)cls)->cbs_mouseReleaseEvent_3049_0 (arg1); } @@ -1488,9 +1488,9 @@ static void _call_cbs_paint_6301_1 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QStyleOptionGraphicsItem *arg2 = args.read (heap); - QWidget *arg3 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionGraphicsItem *arg2 = gsi::arg_reader() (args, heap); + QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractGraphicsShapeItem_Adaptor *)cls)->cbs_paint_6301_1 (arg1, arg2, arg3); } @@ -1544,7 +1544,7 @@ static void _call_cbs_sceneEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractGraphicsShapeItem_Adaptor *)cls)->cbs_sceneEvent_1217_0 (arg1)); } @@ -1569,8 +1569,8 @@ static void _call_cbs_sceneEventFilter_3028_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsItem *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractGraphicsShapeItem_Adaptor *)cls)->cbs_sceneEventFilter_3028_0 (arg1, arg2)); } @@ -1595,8 +1595,8 @@ static void _call_cbs_setExtension_4817_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractGraphicsShapeItem_Adaptor *)cls)->cbs_setExtension_4817_0 (arg1, arg2); } @@ -1639,7 +1639,7 @@ static void _call_cbs_supportsExtension_c2806_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractGraphicsShapeItem_Adaptor *)cls)->cbs_supportsExtension_c2806_0 (arg1)); } @@ -1696,7 +1696,7 @@ static void _call_cbs_wheelEvent_3029_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneWheelEvent *arg1 = args.read (heap); + QGraphicsSceneWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractGraphicsShapeItem_Adaptor *)cls)->cbs_wheelEvent_3029_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQAbstractItemDelegate.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQAbstractItemDelegate.cc index 49b668ff9..92248c66e 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQAbstractItemDelegate.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQAbstractItemDelegate.cc @@ -786,7 +786,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemDelegate_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -853,9 +853,9 @@ static void _call_cbs_createEditor_c6860_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - const QStyleOptionViewItem &arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionViewItem &arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); ret.write ((QWidget *)((QAbstractItemDelegate_Adaptor *)cls)->cbs_createEditor_c6860_0 (arg1, arg2, arg3)); } @@ -878,7 +878,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemDelegate_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -904,8 +904,8 @@ static void _call_cbs_destroyEditor_c3602_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemDelegate_Adaptor *)cls)->cbs_destroyEditor_c3602_0 (arg1, arg2); } @@ -947,7 +947,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemDelegate_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -977,10 +977,10 @@ static void _call_cbs_editorEvent_9073_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); - QAbstractItemModel *arg2 = args.read (heap); - const QStyleOptionViewItem &arg3 = args.read (heap); - const QModelIndex &arg4 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); + QAbstractItemModel *arg2 = gsi::arg_reader() (args, heap); + const QStyleOptionViewItem &arg3 = gsi::arg_reader() (args, heap); + const QModelIndex &arg4 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractItemDelegate_Adaptor *)cls)->cbs_editorEvent_9073_0 (arg1, arg2, arg3, arg4)); } @@ -1003,7 +1003,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractItemDelegate_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1028,8 +1028,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractItemDelegate_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1058,10 +1058,10 @@ static void _call_cbs_helpEvent_9380_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHelpEvent *arg1 = args.read (heap); - QAbstractItemView *arg2 = args.read (heap); - const QStyleOptionViewItem &arg3 = args.read (heap); - const QModelIndex &arg4 = args.read (heap); + QHelpEvent *arg1 = gsi::arg_reader() (args, heap); + QAbstractItemView *arg2 = gsi::arg_reader() (args, heap); + const QStyleOptionViewItem &arg3 = gsi::arg_reader() (args, heap); + const QModelIndex &arg4 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractItemDelegate_Adaptor *)cls)->cbs_helpEvent_9380_0 (arg1, arg2, arg3, arg4)); } @@ -1124,9 +1124,9 @@ static void _call_cbs_paint_c6971_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QStyleOptionViewItem &arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionViewItem &arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemDelegate_Adaptor *)cls)->cbs_paint_c6971_0 (arg1, arg2, arg3); } @@ -1217,8 +1217,8 @@ static void _call_cbs_setEditorData_c3602_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemDelegate_Adaptor *)cls)->cbs_setEditorData_c3602_0 (arg1, arg2); } @@ -1246,9 +1246,9 @@ static void _call_cbs_setModelData_c5913_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - QAbstractItemModel *arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + QAbstractItemModel *arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemDelegate_Adaptor *)cls)->cbs_setModelData_c5913_0 (arg1, arg2, arg3); } @@ -1274,8 +1274,8 @@ static void _call_cbs_sizeHint_c5653_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStyleOptionViewItem &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + const QStyleOptionViewItem &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); ret.write ((QSize)((QAbstractItemDelegate_Adaptor *)cls)->cbs_sizeHint_c5653_0 (arg1, arg2)); } @@ -1316,7 +1316,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemDelegate_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -1344,9 +1344,9 @@ static void _call_cbs_updateEditorGeometry_c6860_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - const QStyleOptionViewItem &arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionViewItem &arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemDelegate_Adaptor *)cls)->cbs_updateEditorGeometry_c6860_0 (arg1, arg2, arg3); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQAbstractItemView.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQAbstractItemView.cc index a080fd299..9288b1001 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQAbstractItemView.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQAbstractItemView.cc @@ -3226,7 +3226,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -3268,7 +3268,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -3292,7 +3292,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -3336,8 +3336,8 @@ static void _call_cbs_closeEditor_4926_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_closeEditor_4926_0 (arg1, arg2); } @@ -3361,7 +3361,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -3385,7 +3385,7 @@ static void _call_cbs_commitData_1315_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_commitData_1315_0 (arg1); } @@ -3409,7 +3409,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -3460,8 +3460,8 @@ static void _call_cbs_currentChanged_4682_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_currentChanged_4682_0 (arg1, arg2); } @@ -3503,7 +3503,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -3531,9 +3531,9 @@ static void _call_cbs_dataChanged_7048_1 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); - const QVector &arg3 = args.read & > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); + const QVector &arg3 = args ? gsi::arg_reader & >() (args, heap) : gsi::arg_maker & >() (QVector(), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_dataChanged_7048_1 (arg1, arg2, arg3); } @@ -3611,7 +3611,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -3688,7 +3688,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -3712,7 +3712,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -3736,7 +3736,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -3779,7 +3779,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -3821,9 +3821,9 @@ static void _call_cbs_edit_6773_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - QEvent *arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + QEvent *arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractItemView_Adaptor *)cls)->cbs_edit_6773_0 (arg1, arg2, arg3)); } @@ -3846,7 +3846,7 @@ static void _call_cbs_editorDestroyed_1302_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_editorDestroyed_1302_0 (arg1); } @@ -3870,7 +3870,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -3912,7 +3912,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractItemView_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -3937,8 +3937,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractItemView_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -3976,7 +3976,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -4014,7 +4014,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractItemView_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -4037,7 +4037,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -4094,7 +4094,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QAbstractItemView_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -4117,7 +4117,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -4160,7 +4160,7 @@ static void _call_cbs_horizontalScrollbarAction_767_0 (const qt_gsi::GenericMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_horizontalScrollbarAction_767_0 (arg1); } @@ -4184,7 +4184,7 @@ static void _call_cbs_horizontalScrollbarValueChanged_767_0 (const qt_gsi::Gener { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_horizontalScrollbarValueChanged_767_0 (arg1); } @@ -4240,7 +4240,7 @@ static void _call_cbs_indexAt_c1916_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QAbstractItemView_Adaptor *)cls)->cbs_indexAt_c1916_0 (arg1)); } @@ -4263,7 +4263,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -4306,7 +4306,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -4330,7 +4330,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QAbstractItemView_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -4353,7 +4353,7 @@ static void _call_cbs_isIndexHidden_c2395_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractItemView_Adaptor *)cls)->cbs_isIndexHidden_c2395_0 (arg1)); } @@ -4394,7 +4394,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -4418,7 +4418,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -4442,7 +4442,7 @@ static void _call_cbs_keyboardSearch_2025_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_keyboardSearch_2025_0 (arg1); } @@ -4466,7 +4466,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -4490,7 +4490,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QAbstractItemView_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -4532,7 +4532,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -4556,7 +4556,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -4580,7 +4580,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -4604,7 +4604,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -4630,8 +4630,8 @@ static void _call_cbs_moveCursor_6476_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); - QFlags arg2 = args.read > (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); ret.write ((QModelIndex)((QAbstractItemView_Adaptor *)cls)->cbs_moveCursor_6476_0 (arg1, arg2)); } @@ -4654,7 +4654,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -4682,9 +4682,9 @@ static void _call_cbs_nativeEvent_4678_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - long int *arg3 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + long int *arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractItemView_Adaptor *)cls)->cbs_nativeEvent_4678_0 (arg1, arg2, arg3)); } @@ -4744,7 +4744,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -4804,7 +4804,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QAbstractItemView_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -4847,7 +4847,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -4875,9 +4875,9 @@ static void _call_cbs_rowsAboutToBeRemoved_3713_0 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_rowsAboutToBeRemoved_3713_0 (arg1, arg2, arg3); } @@ -4905,9 +4905,9 @@ static void _call_cbs_rowsInserted_3713_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_rowsInserted_3713_0 (arg1, arg2, arg3); } @@ -4948,8 +4948,8 @@ static void _call_cbs_scrollContentsBy_1426_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_scrollContentsBy_1426_0 (arg1, arg2); } @@ -4997,8 +4997,8 @@ static void _call_cbs_scrollTo_5576_1 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QAbstractItemView::EnsureVisible), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_scrollTo_5576_1 (arg1, arg2); } @@ -5063,8 +5063,8 @@ static void _call_cbs_selectionChanged_5346_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QItemSelection &arg1 = args.read (heap); - const QItemSelection &arg2 = args.read (heap); + const QItemSelection &arg1 = gsi::arg_reader() (args, heap); + const QItemSelection &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_selectionChanged_5346_0 (arg1, arg2); } @@ -5090,8 +5090,8 @@ static void _call_cbs_selectionCommand_c4199_1 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QEvent *arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QEvent *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); ret.write > ((QFlags)((QAbstractItemView_Adaptor *)cls)->cbs_selectionCommand_c4199_1 (arg1, arg2)); } @@ -5180,7 +5180,7 @@ static void _call_cbs_setModel_2419_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractItemModel *arg1 = args.read (heap); + QAbstractItemModel *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_setModel_2419_0 (arg1); } @@ -5204,7 +5204,7 @@ static void _call_cbs_setRootIndex_2395_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_setRootIndex_2395_0 (arg1); } @@ -5230,8 +5230,8 @@ static void _call_cbs_setSelection_6155_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); - QFlags arg2 = args.read > (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_setSelection_6155_0 (arg1, arg2); } @@ -5255,7 +5255,7 @@ static void _call_cbs_setSelectionModel_2533_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QItemSelectionModel *arg1 = args.read (heap); + QItemSelectionModel *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_setSelectionModel_2533_0 (arg1); } @@ -5364,7 +5364,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -5388,7 +5388,7 @@ static void _call_cbs_setupViewport_1315_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_setupViewport_1315_0 (arg1); } @@ -5431,7 +5431,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -5474,7 +5474,7 @@ static void _call_cbs_sizeHintForColumn_c767_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QAbstractItemView_Adaptor *)cls)->cbs_sizeHintForColumn_c767_0 (arg1)); } @@ -5497,7 +5497,7 @@ static void _call_cbs_sizeHintForRow_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QAbstractItemView_Adaptor *)cls)->cbs_sizeHintForRow_c767_0 (arg1)); } @@ -5535,7 +5535,7 @@ static void _call_cbs_startDrag_2456_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_startDrag_2456_0 (arg1); } @@ -5588,7 +5588,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -5612,7 +5612,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -5730,7 +5730,7 @@ static void _call_cbs_verticalScrollbarAction_767_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_verticalScrollbarAction_767_0 (arg1); } @@ -5754,7 +5754,7 @@ static void _call_cbs_verticalScrollbarValueChanged_767_0 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_verticalScrollbarValueChanged_767_0 (arg1); } @@ -5825,7 +5825,7 @@ static void _call_cbs_viewportEvent_1217_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractItemView_Adaptor *)cls)->cbs_viewportEvent_1217_0 (arg1)); } @@ -5881,7 +5881,7 @@ static void _call_cbs_visualRect_c2395_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QAbstractItemView_Adaptor *)cls)->cbs_visualRect_c2395_0 (arg1)); } @@ -5904,7 +5904,7 @@ static void _call_cbs_visualRegionForSelection_c2727_0 (const qt_gsi::GenericMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QItemSelection &arg1 = args.read (heap); + const QItemSelection &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRegion)((QAbstractItemView_Adaptor *)cls)->cbs_visualRegionForSelection_c2727_0 (arg1)); } @@ -5927,7 +5927,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQAbstractScrollArea.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQAbstractScrollArea.cc index 92cea02ab..8094ae673 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQAbstractScrollArea.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQAbstractScrollArea.cc @@ -1495,7 +1495,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1519,7 +1519,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1543,7 +1543,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1567,7 +1567,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1591,7 +1591,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1658,7 +1658,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1722,7 +1722,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1746,7 +1746,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1770,7 +1770,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1794,7 +1794,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1837,7 +1837,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1861,7 +1861,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -1885,7 +1885,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractScrollArea_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1910,8 +1910,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractScrollArea_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1934,7 +1934,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1972,7 +1972,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractScrollArea_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -1995,7 +1995,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -2052,7 +2052,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QAbstractScrollArea_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -2075,7 +2075,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -2099,7 +2099,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -2142,7 +2142,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2166,7 +2166,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QAbstractScrollArea_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2207,7 +2207,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2231,7 +2231,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2255,7 +2255,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2279,7 +2279,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QAbstractScrollArea_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2321,7 +2321,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2345,7 +2345,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2369,7 +2369,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2393,7 +2393,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2417,7 +2417,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2445,9 +2445,9 @@ static void _call_cbs_nativeEvent_4678_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - long int *arg3 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + long int *arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractScrollArea_Adaptor *)cls)->cbs_nativeEvent_4678_0 (arg1, arg2, arg3)); } @@ -2507,7 +2507,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2549,7 +2549,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QAbstractScrollArea_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -2572,7 +2572,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2598,8 +2598,8 @@ static void _call_cbs_scrollContentsBy_1426_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea_Adaptor *)cls)->cbs_scrollContentsBy_1426_0 (arg1, arg2); } @@ -2698,7 +2698,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2722,7 +2722,7 @@ static void _call_cbs_setupViewport_1315_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea_Adaptor *)cls)->cbs_setupViewport_1315_0 (arg1); } @@ -2765,7 +2765,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2808,7 +2808,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2832,7 +2832,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2871,7 +2871,7 @@ static void _call_cbs_viewportEvent_1217_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractScrollArea_Adaptor *)cls)->cbs_viewportEvent_1217_0 (arg1)); } @@ -2927,7 +2927,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQAbstractSlider.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQAbstractSlider.cc index 94a4799fd..8a0ccc494 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQAbstractSlider.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQAbstractSlider.cc @@ -1552,7 +1552,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1594,7 +1594,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1618,7 +1618,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1642,7 +1642,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1666,7 +1666,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1733,7 +1733,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1797,7 +1797,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1821,7 +1821,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1845,7 +1845,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1869,7 +1869,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1893,7 +1893,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1917,7 +1917,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -1941,7 +1941,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractSlider_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1966,8 +1966,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractSlider_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1990,7 +1990,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -2028,7 +2028,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractSlider_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -2051,7 +2051,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -2108,7 +2108,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QAbstractSlider_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -2131,7 +2131,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -2155,7 +2155,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -2179,7 +2179,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2203,7 +2203,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QAbstractSlider_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2244,7 +2244,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2268,7 +2268,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2292,7 +2292,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2316,7 +2316,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QAbstractSlider_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2358,7 +2358,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2382,7 +2382,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2406,7 +2406,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2430,7 +2430,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2454,7 +2454,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2482,9 +2482,9 @@ static void _call_cbs_nativeEvent_4678_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - long int *arg3 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + long int *arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractSlider_Adaptor *)cls)->cbs_nativeEvent_4678_0 (arg1, arg2, arg3)); } @@ -2544,7 +2544,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2607,7 +2607,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QAbstractSlider_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -2644,7 +2644,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2721,7 +2721,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2764,7 +2764,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2807,7 +2807,7 @@ static void _call_cbs_sliderChange_3257_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider_Adaptor *)cls)->cbs_sliderChange_3257_0 (arg1); } @@ -2877,7 +2877,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2901,7 +2901,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2958,7 +2958,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQAbstractSpinBox.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQAbstractSpinBox.cc index 14f058ae7..85718dfd7 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQAbstractSpinBox.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQAbstractSpinBox.cc @@ -1760,7 +1760,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1784,7 +1784,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1808,7 +1808,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1852,7 +1852,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1876,7 +1876,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1943,7 +1943,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -2007,7 +2007,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -2031,7 +2031,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -2055,7 +2055,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -2079,7 +2079,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -2103,7 +2103,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -2141,7 +2141,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -2165,7 +2165,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractSpinBox_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -2190,8 +2190,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractSpinBox_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -2214,7 +2214,7 @@ static void _call_cbs_fixup_c1330_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QString &arg1 = args.read (heap); + QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox_Adaptor *)cls)->cbs_fixup_c1330_0 (arg1); } @@ -2238,7 +2238,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -2276,7 +2276,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractSpinBox_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -2299,7 +2299,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -2356,7 +2356,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QAbstractSpinBox_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -2379,7 +2379,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -2403,7 +2403,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -2446,7 +2446,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2470,7 +2470,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QAbstractSpinBox_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2511,7 +2511,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2535,7 +2535,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2559,7 +2559,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2597,7 +2597,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QAbstractSpinBox_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2639,7 +2639,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2663,7 +2663,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2687,7 +2687,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2711,7 +2711,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2735,7 +2735,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2763,9 +2763,9 @@ static void _call_cbs_nativeEvent_4678_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - long int *arg3 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + long int *arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractSpinBox_Adaptor *)cls)->cbs_nativeEvent_4678_0 (arg1, arg2, arg3)); } @@ -2825,7 +2825,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2867,7 +2867,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QAbstractSpinBox_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -2890,7 +2890,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2961,7 +2961,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -3004,7 +3004,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -3047,7 +3047,7 @@ static void _call_cbs_stepBy_767_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox_Adaptor *)cls)->cbs_stepBy_767_0 (arg1); } @@ -3090,7 +3090,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -3114,7 +3114,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -3155,8 +3155,8 @@ static void _call_cbs_validate_c2171_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QString &arg1 = args.read (heap); - int &arg2 = args.read (heap); + QString &arg1 = gsi::arg_reader() (args, heap); + int &arg2 = gsi::arg_reader() (args, heap); ret.write::target_type > ((qt_gsi::Converter::target_type)((QAbstractSpinBox_Adaptor *)cls)->cbs_validate_c2171_0 (arg1, arg2)); } @@ -3179,7 +3179,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQAction.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQAction.cc index 864752bc9..f8d0573b8 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQAction.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQAction.cc @@ -1450,7 +1450,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAction_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1474,7 +1474,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAction_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1516,7 +1516,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAction_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1540,7 +1540,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAction_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1565,8 +1565,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAction_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1685,7 +1685,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAction_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQActionGroup.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQActionGroup.cc index eee41cb75..b8d7d4eac 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQActionGroup.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQActionGroup.cc @@ -568,7 +568,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QActionGroup_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -592,7 +592,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QActionGroup_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -634,7 +634,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QActionGroup_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -658,7 +658,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QActionGroup_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -683,8 +683,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QActionGroup_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -807,7 +807,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QActionGroup_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQApplication.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQApplication.cc index f87599547..f85d5cc86 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQApplication.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQApplication.cc @@ -1508,7 +1508,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QApplication_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1550,7 +1550,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QApplication_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1592,7 +1592,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QApplication_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1616,7 +1616,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QApplication_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1641,8 +1641,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QApplication_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1986,7 +1986,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QApplication_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQBoxLayout.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQBoxLayout.cc index bf8f2c5dc..4c2d4a8de 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQBoxLayout.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQBoxLayout.cc @@ -1399,7 +1399,8 @@ static void _call_cbs_addItem_1740_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QLayoutItem *arg1 = args.read (heap); + QLayoutItem *arg1 = gsi::arg_reader() (args, heap); + qt_gsi::qt_keep (arg1); __SUPPRESS_UNUSED_WARNING(ret); ((QBoxLayout_Adaptor *)cls)->cbs_addItem_1740_0 (arg1); } @@ -1459,7 +1460,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QBoxLayout_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1521,7 +1522,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QBoxLayout_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1563,7 +1564,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QBoxLayout_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1587,7 +1588,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QBoxLayout_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1612,8 +1613,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QBoxLayout_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1693,7 +1694,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QBoxLayout_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -1716,7 +1717,7 @@ static void _call_cbs_indexOf_c1315_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QBoxLayout_Adaptor *)cls)->cbs_indexOf_c1315_0 (arg1)); } @@ -1796,7 +1797,7 @@ static void _call_cbs_itemAt_c767_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QLayoutItem *)((QBoxLayout_Adaptor *)cls)->cbs_itemAt_c767_0 (arg1)); } @@ -1857,7 +1858,7 @@ static void _call_cbs_minimumHeightForWidth_c767_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QBoxLayout_Adaptor *)cls)->cbs_minimumHeightForWidth_c767_0 (arg1)); } @@ -1963,7 +1964,7 @@ static void _call_cbs_setGeometry_1792_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QBoxLayout_Adaptor *)cls)->cbs_setGeometry_1792_0 (arg1); } @@ -2025,7 +2026,7 @@ static void _call_cbs_takeAt_767_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QLayoutItem *)((QBoxLayout_Adaptor *)cls)->cbs_takeAt_767_0 (arg1)); } @@ -2048,7 +2049,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QBoxLayout_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQButtonGroup.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQButtonGroup.cc index 8e5415d94..d0fec82bc 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQButtonGroup.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQButtonGroup.cc @@ -711,7 +711,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QButtonGroup_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -735,7 +735,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QButtonGroup_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -777,7 +777,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QButtonGroup_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -801,7 +801,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QButtonGroup_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -826,8 +826,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QButtonGroup_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -932,7 +932,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QButtonGroup_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQCalendarWidget.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQCalendarWidget.cc index 3a1455947..3e10254dd 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQCalendarWidget.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQCalendarWidget.cc @@ -1850,7 +1850,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1892,7 +1892,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1916,7 +1916,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1958,7 +1958,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1982,7 +1982,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -2070,7 +2070,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -2134,7 +2134,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -2158,7 +2158,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -2182,7 +2182,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -2206,7 +2206,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -2230,7 +2230,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -2254,7 +2254,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -2278,7 +2278,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCalendarWidget_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -2303,8 +2303,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCalendarWidget_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -2327,7 +2327,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -2365,7 +2365,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCalendarWidget_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -2388,7 +2388,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -2445,7 +2445,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QCalendarWidget_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -2468,7 +2468,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -2492,7 +2492,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -2516,7 +2516,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2540,7 +2540,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QCalendarWidget_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2581,7 +2581,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2605,7 +2605,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2629,7 +2629,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2653,7 +2653,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QCalendarWidget_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2695,7 +2695,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2719,7 +2719,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2743,7 +2743,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2767,7 +2767,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2791,7 +2791,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2819,9 +2819,9 @@ static void _call_cbs_nativeEvent_4678_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - long int *arg3 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + long int *arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCalendarWidget_Adaptor *)cls)->cbs_nativeEvent_4678_0 (arg1, arg2, arg3)); } @@ -2866,9 +2866,9 @@ static void _call_cbs_paintCell_c4778_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QRect &arg2 = args.read (heap); - const QDate &arg3 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QRect &arg2 = gsi::arg_reader() (args, heap); + const QDate &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget_Adaptor *)cls)->cbs_paintCell_c4778_0 (arg1, arg2, arg3); } @@ -2911,7 +2911,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2953,7 +2953,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QCalendarWidget_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -2976,7 +2976,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -3042,7 +3042,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -3085,7 +3085,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -3128,7 +3128,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -3152,7 +3152,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -3225,7 +3225,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQCheckBox.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQCheckBox.cc index e6135674a..62c7c39d5 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQCheckBox.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQCheckBox.cc @@ -1261,7 +1261,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCheckBox_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1285,7 +1285,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCheckBox_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1329,7 +1329,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCheckBox_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1371,7 +1371,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCheckBox_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1395,7 +1395,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCheckBox_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1462,7 +1462,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCheckBox_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1526,7 +1526,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCheckBox_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1550,7 +1550,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCheckBox_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1574,7 +1574,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCheckBox_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1598,7 +1598,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCheckBox_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1622,7 +1622,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCheckBox_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1646,7 +1646,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCheckBox_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -1670,7 +1670,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCheckBox_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1695,8 +1695,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCheckBox_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1719,7 +1719,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCheckBox_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1757,7 +1757,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCheckBox_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -1780,7 +1780,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCheckBox_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -1837,7 +1837,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QCheckBox_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -1860,7 +1860,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCheckBox_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -1884,7 +1884,7 @@ static void _call_cbs_hitButton_c1916_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCheckBox_Adaptor *)cls)->cbs_hitButton_c1916_0 (arg1)); } @@ -1907,7 +1907,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCheckBox_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -1950,7 +1950,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCheckBox_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -1974,7 +1974,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QCheckBox_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2015,7 +2015,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCheckBox_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2039,7 +2039,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCheckBox_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2063,7 +2063,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCheckBox_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2087,7 +2087,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QCheckBox_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2129,7 +2129,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCheckBox_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2153,7 +2153,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCheckBox_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2177,7 +2177,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCheckBox_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2201,7 +2201,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCheckBox_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2225,7 +2225,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCheckBox_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2253,9 +2253,9 @@ static void _call_cbs_nativeEvent_4678_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - long int *arg3 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + long int *arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCheckBox_Adaptor *)cls)->cbs_nativeEvent_4678_0 (arg1, arg2, arg3)); } @@ -2335,7 +2335,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCheckBox_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2391,7 +2391,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QCheckBox_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -2428,7 +2428,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCheckBox_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2480,7 +2480,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCheckBox_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2523,7 +2523,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCheckBox_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2584,7 +2584,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCheckBox_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2608,7 +2608,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCheckBox_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2665,7 +2665,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCheckBox_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQColorDialog.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQColorDialog.cc index e212a4683..c0a0962ef 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQColorDialog.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQColorDialog.cc @@ -1575,7 +1575,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColorDialog_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1618,7 +1618,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColorDialog_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1642,7 +1642,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColorDialog_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1666,7 +1666,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColorDialog_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1708,7 +1708,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColorDialog_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1793,7 +1793,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColorDialog_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1857,7 +1857,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColorDialog_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1881,7 +1881,7 @@ static void _call_cbs_done_767_0 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColorDialog_Adaptor *)cls)->cbs_done_767_0 (arg1); } @@ -1905,7 +1905,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColorDialog_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1929,7 +1929,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColorDialog_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1953,7 +1953,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColorDialog_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1977,7 +1977,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColorDialog_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -2001,7 +2001,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColorDialog_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -2025,7 +2025,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QColorDialog_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -2050,8 +2050,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QColorDialog_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -2111,7 +2111,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColorDialog_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -2149,7 +2149,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QColorDialog_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -2172,7 +2172,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColorDialog_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -2229,7 +2229,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QColorDialog_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -2252,7 +2252,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColorDialog_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -2276,7 +2276,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColorDialog_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -2300,7 +2300,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColorDialog_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2324,7 +2324,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QColorDialog_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2365,7 +2365,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColorDialog_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2389,7 +2389,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColorDialog_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2413,7 +2413,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColorDialog_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2437,7 +2437,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QColorDialog_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2479,7 +2479,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColorDialog_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2503,7 +2503,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColorDialog_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2527,7 +2527,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColorDialog_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2551,7 +2551,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColorDialog_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2575,7 +2575,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColorDialog_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2603,9 +2603,9 @@ static void _call_cbs_nativeEvent_4678_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - long int *arg3 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + long int *arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QColorDialog_Adaptor *)cls)->cbs_nativeEvent_4678_0 (arg1, arg2, arg3)); } @@ -2685,7 +2685,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColorDialog_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2727,7 +2727,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QColorDialog_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -2784,7 +2784,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColorDialog_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2836,7 +2836,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColorDialog_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2879,7 +2879,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColorDialog_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2922,7 +2922,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColorDialog_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2946,7 +2946,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColorDialog_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2985,7 +2985,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColorDialog_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQColumnView.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQColumnView.cc index 449f9752e..519f8b48f 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQColumnView.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQColumnView.cc @@ -2161,7 +2161,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -2203,7 +2203,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -2227,7 +2227,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -2271,8 +2271,8 @@ static void _call_cbs_closeEditor_4926_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_closeEditor_4926_0 (arg1, arg2); } @@ -2296,7 +2296,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -2320,7 +2320,7 @@ static void _call_cbs_commitData_1315_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_commitData_1315_0 (arg1); } @@ -2344,7 +2344,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -2393,7 +2393,7 @@ static void _call_cbs_createColumn_2395_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QAbstractItemView *)((QColumnView_Adaptor *)cls)->cbs_createColumn_2395_0 (arg1)); } @@ -2418,8 +2418,8 @@ static void _call_cbs_currentChanged_4682_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_currentChanged_4682_0 (arg1, arg2); } @@ -2461,7 +2461,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -2489,9 +2489,9 @@ static void _call_cbs_dataChanged_7048_1 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); - const QVector &arg3 = args.read & > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); + const QVector &arg3 = args ? gsi::arg_reader & >() (args, heap) : gsi::arg_maker & >() (QVector(), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_dataChanged_7048_1 (arg1, arg2, arg3); } @@ -2569,7 +2569,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -2646,7 +2646,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -2670,7 +2670,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -2694,7 +2694,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -2737,7 +2737,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -2779,9 +2779,9 @@ static void _call_cbs_edit_6773_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - QEvent *arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + QEvent *arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QColumnView_Adaptor *)cls)->cbs_edit_6773_0 (arg1, arg2, arg3)); } @@ -2804,7 +2804,7 @@ static void _call_cbs_editorDestroyed_1302_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_editorDestroyed_1302_0 (arg1); } @@ -2828,7 +2828,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -2870,7 +2870,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QColumnView_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -2895,8 +2895,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QColumnView_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -2934,7 +2934,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -2972,7 +2972,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QColumnView_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -2995,7 +2995,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -3052,7 +3052,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QColumnView_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -3075,7 +3075,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -3118,7 +3118,7 @@ static void _call_cbs_horizontalScrollbarAction_767_0 (const qt_gsi::GenericMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_horizontalScrollbarAction_767_0 (arg1); } @@ -3142,7 +3142,7 @@ static void _call_cbs_horizontalScrollbarValueChanged_767_0 (const qt_gsi::Gener { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_horizontalScrollbarValueChanged_767_0 (arg1); } @@ -3198,7 +3198,7 @@ static void _call_cbs_indexAt_c1916_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QColumnView_Adaptor *)cls)->cbs_indexAt_c1916_0 (arg1)); } @@ -3221,7 +3221,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -3283,7 +3283,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -3307,7 +3307,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QColumnView_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -3330,7 +3330,7 @@ static void _call_cbs_isIndexHidden_c2395_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QColumnView_Adaptor *)cls)->cbs_isIndexHidden_c2395_0 (arg1)); } @@ -3371,7 +3371,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -3395,7 +3395,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -3419,7 +3419,7 @@ static void _call_cbs_keyboardSearch_2025_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_keyboardSearch_2025_0 (arg1); } @@ -3443,7 +3443,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -3467,7 +3467,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QColumnView_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -3509,7 +3509,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -3533,7 +3533,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -3557,7 +3557,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -3581,7 +3581,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -3607,8 +3607,8 @@ static void _call_cbs_moveCursor_6476_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); - QFlags arg2 = args.read > (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); ret.write ((QModelIndex)((QColumnView_Adaptor *)cls)->cbs_moveCursor_6476_0 (arg1, arg2)); } @@ -3631,7 +3631,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -3659,9 +3659,9 @@ static void _call_cbs_nativeEvent_4678_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - long int *arg3 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + long int *arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QColumnView_Adaptor *)cls)->cbs_nativeEvent_4678_0 (arg1, arg2, arg3)); } @@ -3721,7 +3721,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -3781,7 +3781,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QColumnView_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -3824,7 +3824,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -3852,9 +3852,9 @@ static void _call_cbs_rowsAboutToBeRemoved_3713_0 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_rowsAboutToBeRemoved_3713_0 (arg1, arg2, arg3); } @@ -3882,9 +3882,9 @@ static void _call_cbs_rowsInserted_3713_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_rowsInserted_3713_0 (arg1, arg2, arg3); } @@ -3925,8 +3925,8 @@ static void _call_cbs_scrollContentsBy_1426_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_scrollContentsBy_1426_0 (arg1, arg2); } @@ -3974,8 +3974,8 @@ static void _call_cbs_scrollTo_5576_1 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QAbstractItemView::EnsureVisible), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_scrollTo_5576_1 (arg1, arg2); } @@ -4040,8 +4040,8 @@ static void _call_cbs_selectionChanged_5346_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QItemSelection &arg1 = args.read (heap); - const QItemSelection &arg2 = args.read (heap); + const QItemSelection &arg1 = gsi::arg_reader() (args, heap); + const QItemSelection &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_selectionChanged_5346_0 (arg1, arg2); } @@ -4067,8 +4067,8 @@ static void _call_cbs_selectionCommand_c4199_1 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QEvent *arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QEvent *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); ret.write > ((QFlags)((QColumnView_Adaptor *)cls)->cbs_selectionCommand_c4199_1 (arg1, arg2)); } @@ -4157,7 +4157,7 @@ static void _call_cbs_setModel_2419_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractItemModel *arg1 = args.read (heap); + QAbstractItemModel *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_setModel_2419_0 (arg1); } @@ -4181,7 +4181,7 @@ static void _call_cbs_setRootIndex_2395_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_setRootIndex_2395_0 (arg1); } @@ -4207,8 +4207,8 @@ static void _call_cbs_setSelection_6155_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); - QFlags arg2 = args.read > (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_setSelection_6155_0 (arg1, arg2); } @@ -4232,7 +4232,7 @@ static void _call_cbs_setSelectionModel_2533_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QItemSelectionModel *arg1 = args.read (heap); + QItemSelectionModel *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_setSelectionModel_2533_0 (arg1); } @@ -4341,7 +4341,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -4365,7 +4365,7 @@ static void _call_cbs_setupViewport_1315_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_setupViewport_1315_0 (arg1); } @@ -4408,7 +4408,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -4451,7 +4451,7 @@ static void _call_cbs_sizeHintForColumn_c767_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QColumnView_Adaptor *)cls)->cbs_sizeHintForColumn_c767_0 (arg1)); } @@ -4474,7 +4474,7 @@ static void _call_cbs_sizeHintForRow_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QColumnView_Adaptor *)cls)->cbs_sizeHintForRow_c767_0 (arg1)); } @@ -4512,7 +4512,7 @@ static void _call_cbs_startDrag_2456_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_startDrag_2456_0 (arg1); } @@ -4565,7 +4565,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -4589,7 +4589,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -4725,7 +4725,7 @@ static void _call_cbs_verticalScrollbarAction_767_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_verticalScrollbarAction_767_0 (arg1); } @@ -4749,7 +4749,7 @@ static void _call_cbs_verticalScrollbarValueChanged_767_0 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_verticalScrollbarValueChanged_767_0 (arg1); } @@ -4820,7 +4820,7 @@ static void _call_cbs_viewportEvent_1217_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QColumnView_Adaptor *)cls)->cbs_viewportEvent_1217_0 (arg1)); } @@ -4876,7 +4876,7 @@ static void _call_cbs_visualRect_c2395_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QColumnView_Adaptor *)cls)->cbs_visualRect_c2395_0 (arg1)); } @@ -4899,7 +4899,7 @@ static void _call_cbs_visualRegionForSelection_c2727_0 (const qt_gsi::GenericMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QItemSelection &arg1 = args.read (heap); + const QItemSelection &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRegion)((QColumnView_Adaptor *)cls)->cbs_visualRegionForSelection_c2727_0 (arg1)); } @@ -4922,7 +4922,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQComboBox.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQComboBox.cc index 0add4734c..1d0308442 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQComboBox.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQComboBox.cc @@ -2512,7 +2512,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -2572,7 +2572,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -2596,7 +2596,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -2620,7 +2620,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -2644,7 +2644,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -2765,7 +2765,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -2829,7 +2829,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -2853,7 +2853,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -2877,7 +2877,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -2901,7 +2901,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -2925,7 +2925,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -2967,7 +2967,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -2991,7 +2991,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QComboBox_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -3016,8 +3016,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QComboBox_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -3040,7 +3040,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -3078,7 +3078,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QComboBox_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -3101,7 +3101,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -3158,7 +3158,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QComboBox_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -3181,7 +3181,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -3261,7 +3261,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -3304,7 +3304,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -3328,7 +3328,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QComboBox_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -3369,7 +3369,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -3393,7 +3393,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -3417,7 +3417,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -3441,7 +3441,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QComboBox_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -3483,7 +3483,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -3507,7 +3507,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -3531,7 +3531,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -3555,7 +3555,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -3579,7 +3579,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -3607,9 +3607,9 @@ static void _call_cbs_nativeEvent_4678_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - long int *arg3 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + long int *arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QComboBox_Adaptor *)cls)->cbs_nativeEvent_4678_0 (arg1, arg2, arg3)); } @@ -3669,7 +3669,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -3711,7 +3711,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QComboBox_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -3734,7 +3734,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -3786,7 +3786,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -3829,7 +3829,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -3892,7 +3892,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -3916,7 +3916,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -3955,7 +3955,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQCommandLinkButton.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQCommandLinkButton.cc index 7d3d28bd9..8673f9e80 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQCommandLinkButton.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQCommandLinkButton.cc @@ -1222,7 +1222,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommandLinkButton_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1246,7 +1246,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommandLinkButton_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1290,7 +1290,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommandLinkButton_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1332,7 +1332,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommandLinkButton_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1356,7 +1356,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommandLinkButton_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1423,7 +1423,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommandLinkButton_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1487,7 +1487,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommandLinkButton_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1511,7 +1511,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommandLinkButton_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1535,7 +1535,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommandLinkButton_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1559,7 +1559,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommandLinkButton_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1583,7 +1583,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommandLinkButton_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1607,7 +1607,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommandLinkButton_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -1631,7 +1631,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCommandLinkButton_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1656,8 +1656,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCommandLinkButton_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1680,7 +1680,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommandLinkButton_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1718,7 +1718,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCommandLinkButton_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -1741,7 +1741,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommandLinkButton_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -1798,7 +1798,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QCommandLinkButton_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -1821,7 +1821,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommandLinkButton_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -1845,7 +1845,7 @@ static void _call_cbs_hitButton_c1916_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCommandLinkButton_Adaptor *)cls)->cbs_hitButton_c1916_0 (arg1)); } @@ -1868,7 +1868,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommandLinkButton_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -1911,7 +1911,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommandLinkButton_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -1935,7 +1935,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QCommandLinkButton_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -1976,7 +1976,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommandLinkButton_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2000,7 +2000,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommandLinkButton_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2024,7 +2024,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommandLinkButton_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2048,7 +2048,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QCommandLinkButton_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2090,7 +2090,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommandLinkButton_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2114,7 +2114,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommandLinkButton_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2138,7 +2138,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommandLinkButton_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2162,7 +2162,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommandLinkButton_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2186,7 +2186,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommandLinkButton_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2214,9 +2214,9 @@ static void _call_cbs_nativeEvent_4678_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - long int *arg3 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + long int *arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCommandLinkButton_Adaptor *)cls)->cbs_nativeEvent_4678_0 (arg1, arg2, arg3)); } @@ -2296,7 +2296,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommandLinkButton_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2352,7 +2352,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QCommandLinkButton_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -2389,7 +2389,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommandLinkButton_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2441,7 +2441,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommandLinkButton_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2484,7 +2484,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommandLinkButton_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2527,7 +2527,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommandLinkButton_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2551,7 +2551,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommandLinkButton_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2608,7 +2608,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommandLinkButton_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQCommonStyle.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQCommonStyle.cc index ba89cc266..75b27084f 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQCommonStyle.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQCommonStyle.cc @@ -1155,7 +1155,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommonStyle_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1179,7 +1179,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommonStyle_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1221,7 +1221,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommonStyle_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1251,10 +1251,10 @@ static void _call_cbs_drawComplexControl_c9027_1 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOptionComplex *arg2 = args.read (heap); - QPainter *arg3 = args.read (heap); - const QWidget *arg4 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOptionComplex *arg2 = gsi::arg_reader() (args, heap); + QPainter *arg3 = gsi::arg_reader() (args, heap); + const QWidget *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommonStyle_Adaptor *)cls)->cbs_drawComplexControl_c9027_1 (arg1, arg2, arg3, arg4); } @@ -1284,10 +1284,10 @@ static void _call_cbs_drawControl_c8285_1 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args.read (heap); - QPainter *arg3 = args.read (heap); - const QWidget *arg4 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = gsi::arg_reader() (args, heap); + QPainter *arg3 = gsi::arg_reader() (args, heap); + const QWidget *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommonStyle_Adaptor *)cls)->cbs_drawControl_c8285_1 (arg1, arg2, arg3, arg4); } @@ -1317,10 +1317,10 @@ static void _call_cbs_drawItemPixmap_c5678_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QRect &arg2 = args.read (heap); - int arg3 = args.read (heap); - const QPixmap &arg4 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QRect &arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QPixmap &arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommonStyle_Adaptor *)cls)->cbs_drawItemPixmap_c5678_0 (arg1, arg2, arg3, arg4); } @@ -1356,13 +1356,13 @@ static void _call_cbs_drawItemText_c10604_1 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QRect &arg2 = args.read (heap); - int arg3 = args.read (heap); - const QPalette &arg4 = args.read (heap); - bool arg5 = args.read (heap); - const QString &arg6 = args.read (heap); - const qt_gsi::Converter::target_type & arg7 = args.read::target_type & > (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QRect &arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QPalette &arg4 = gsi::arg_reader() (args, heap); + bool arg5 = gsi::arg_reader() (args, heap); + const QString &arg6 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg7 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QPalette::NoRole), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommonStyle_Adaptor *)cls)->cbs_drawItemText_c10604_1 (arg1, arg2, arg3, arg4, arg5, arg6, arg7); } @@ -1392,10 +1392,10 @@ static void _call_cbs_drawPrimitive_c8501_1 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args.read (heap); - QPainter *arg3 = args.read (heap); - const QWidget *arg4 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = gsi::arg_reader() (args, heap); + QPainter *arg3 = gsi::arg_reader() (args, heap); + const QWidget *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommonStyle_Adaptor *)cls)->cbs_drawPrimitive_c8501_1 (arg1, arg2, arg3, arg4); } @@ -1419,7 +1419,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCommonStyle_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1444,8 +1444,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCommonStyle_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1472,9 +1472,9 @@ static void _call_cbs_generatedIconPixmap_c5776_0 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QPixmap &arg2 = args.read (heap); - const QStyleOption *arg3 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QPixmap &arg2 = gsi::arg_reader() (args, heap); + const QStyleOption *arg3 = gsi::arg_reader() (args, heap); ret.write ((QPixmap)((QCommonStyle_Adaptor *)cls)->cbs_generatedIconPixmap_c5776_0 (arg1, arg2, arg3)); } @@ -1503,10 +1503,10 @@ static void _call_cbs_hitTestComplexControl_c9517_1 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOptionComplex *arg2 = args.read (heap); - const QPoint &arg3 = args.read (heap); - const QWidget *arg4 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOptionComplex *arg2 = gsi::arg_reader() (args, heap); + const QPoint &arg3 = gsi::arg_reader() (args, heap); + const QWidget *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); ret.write::target_type > ((qt_gsi::Converter::target_type)((QCommonStyle_Adaptor *)cls)->cbs_hitTestComplexControl_c9517_1 (arg1, arg2, arg3, arg4)); } @@ -1551,9 +1551,9 @@ static void _call_cbs_itemPixmapRect_c4360_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); - int arg2 = args.read (heap); - const QPixmap &arg3 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QPixmap &arg3 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QCommonStyle_Adaptor *)cls)->cbs_itemPixmapRect_c4360_0 (arg1, arg2, arg3)); } @@ -1584,11 +1584,11 @@ static void _call_cbs_itemTextRect_c7544_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFontMetrics &arg1 = args.read (heap); - const QRect &arg2 = args.read (heap); - int arg3 = args.read (heap); - bool arg4 = args.read (heap); - const QString &arg5 = args.read (heap); + const QFontMetrics &arg1 = gsi::arg_reader() (args, heap); + const QRect &arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + bool arg4 = gsi::arg_reader() (args, heap); + const QString &arg5 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QCommonStyle_Adaptor *)cls)->cbs_itemTextRect_c7544_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -1619,11 +1619,11 @@ static void _call_cbs_layoutSpacing_c11697_2 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg3 = args.read::target_type & > (heap); - const QStyleOption *arg4 = args.read (heap); - const QWidget *arg5 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg3 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); + const QWidget *arg5 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); ret.write ((int)((QCommonStyle_Adaptor *)cls)->cbs_layoutSpacing_c11697_2 (arg1, arg2, arg3, arg4, arg5)); } @@ -1668,9 +1668,9 @@ static void _call_cbs_pixelMetric_c6642_2 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args.read (heap); - const QWidget *arg3 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); + const QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); ret.write ((int)((QCommonStyle_Adaptor *)cls)->cbs_pixelMetric_c6642_2 (arg1, arg2, arg3)); } @@ -1693,7 +1693,7 @@ static void _call_cbs_polish_1418_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPalette &arg1 = args.read (heap); + QPalette &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommonStyle_Adaptor *)cls)->cbs_polish_1418_0 (arg1); } @@ -1717,7 +1717,7 @@ static void _call_cbs_polish_1843_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QApplication *arg1 = args.read (heap); + QApplication *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommonStyle_Adaptor *)cls)->cbs_polish_1843_0 (arg1); } @@ -1741,7 +1741,7 @@ static void _call_cbs_polish_1315_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommonStyle_Adaptor *)cls)->cbs_polish_1315_0 (arg1); } @@ -1817,10 +1817,10 @@ static void _call_cbs_sizeFromContents_c8477_1 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args.read (heap); - const QSize &arg3 = args.read (heap); - const QWidget *arg4 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = gsi::arg_reader() (args, heap); + const QSize &arg3 = gsi::arg_reader() (args, heap); + const QWidget *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); ret.write ((QSize)((QCommonStyle_Adaptor *)cls)->cbs_sizeFromContents_c8477_1 (arg1, arg2, arg3, arg4)); } @@ -1847,9 +1847,9 @@ static void _call_cbs_standardIcon_c6956_2 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args.read (heap); - const QWidget *arg3 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); + const QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); ret.write ((QIcon)((QCommonStyle_Adaptor *)cls)->cbs_standardIcon_c6956_2 (arg1, arg2, arg3)); } @@ -1895,9 +1895,9 @@ static void _call_cbs_standardPixmap_c6956_2 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args.read (heap); - const QWidget *arg3 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); + const QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); ret.write ((QPixmap)((QCommonStyle_Adaptor *)cls)->cbs_standardPixmap_c6956_2 (arg1, arg2, arg3)); } @@ -1926,10 +1926,10 @@ static void _call_cbs_styleHint_c8615_3 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args.read (heap); - const QWidget *arg3 = args.read (heap); - QStyleHintReturn *arg4 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); + const QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); + QStyleHintReturn *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); ret.write ((int)((QCommonStyle_Adaptor *)cls)->cbs_styleHint_c8615_3 (arg1, arg2, arg3, arg4)); } @@ -1958,10 +1958,10 @@ static void _call_cbs_subControlRect_c9798_1 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOptionComplex *arg2 = args.read (heap); - const qt_gsi::Converter::target_type & arg3 = args.read::target_type & > (heap); - const QWidget *arg4 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOptionComplex *arg2 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg3 = gsi::arg_reader::target_type & >() (args, heap); + const QWidget *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); ret.write ((QRect)((QCommonStyle_Adaptor *)cls)->cbs_subControlRect_c9798_1 (arg1, arg2, arg3, arg4)); } @@ -1988,9 +1988,9 @@ static void _call_cbs_subElementRect_c6528_1 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args.read (heap); - const QWidget *arg3 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = gsi::arg_reader() (args, heap); + const QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); ret.write ((QRect)((QCommonStyle_Adaptor *)cls)->cbs_subElementRect_c6528_1 (arg1, arg2, arg3)); } @@ -2013,7 +2013,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommonStyle_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2037,7 +2037,7 @@ static void _call_cbs_unpolish_1315_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommonStyle_Adaptor *)cls)->cbs_unpolish_1315_0 (arg1); } @@ -2061,7 +2061,7 @@ static void _call_cbs_unpolish_1843_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QApplication *arg1 = args.read (heap); + QApplication *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommonStyle_Adaptor *)cls)->cbs_unpolish_1843_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQCompleter.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQCompleter.cc index f45d1de15..92c7361b1 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQCompleter.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQCompleter.cc @@ -1082,7 +1082,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCompleter_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1106,7 +1106,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCompleter_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1148,7 +1148,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCompleter_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1172,7 +1172,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCompleter_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1197,8 +1197,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCompleter_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1293,7 +1293,7 @@ static void _call_cbs_pathFromIndex_c2395_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QCompleter_Adaptor *)cls)->cbs_pathFromIndex_c2395_0 (arg1)); } @@ -1362,7 +1362,7 @@ static void _call_cbs_splitPath_c2025_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QStringList)((QCompleter_Adaptor *)cls)->cbs_splitPath_c2025_0 (arg1)); } @@ -1385,7 +1385,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCompleter_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQDataWidgetMapper.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQDataWidgetMapper.cc index f7776c23f..1439afd04 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQDataWidgetMapper.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQDataWidgetMapper.cc @@ -830,7 +830,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDataWidgetMapper_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -872,7 +872,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDataWidgetMapper_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -914,7 +914,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDataWidgetMapper_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -938,7 +938,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDataWidgetMapper_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -963,8 +963,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDataWidgetMapper_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1069,7 +1069,7 @@ static void _call_cbs_setCurrentIndex_767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDataWidgetMapper_Adaptor *)cls)->cbs_setCurrentIndex_767_0 (arg1); } @@ -1093,7 +1093,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDataWidgetMapper_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQDateEdit.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQDateEdit.cc index f9a9a12b4..7b5cd66d6 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQDateEdit.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQDateEdit.cc @@ -1233,7 +1233,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateEdit_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1257,7 +1257,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateEdit_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1281,7 +1281,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateEdit_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1325,7 +1325,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateEdit_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1349,7 +1349,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateEdit_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1416,7 +1416,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateEdit_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1476,7 +1476,7 @@ static void _call_cbs_dateTimeFromText_c2025_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QDateTime)((QDateEdit_Adaptor *)cls)->cbs_dateTimeFromText_c2025_0 (arg1)); } @@ -1539,7 +1539,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateEdit_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1563,7 +1563,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateEdit_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1587,7 +1587,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateEdit_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1611,7 +1611,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateEdit_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1635,7 +1635,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateEdit_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1673,7 +1673,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateEdit_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -1697,7 +1697,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDateEdit_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1722,8 +1722,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDateEdit_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1746,7 +1746,7 @@ static void _call_cbs_fixup_c1330_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QString &arg1 = args.read (heap); + QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateEdit_Adaptor *)cls)->cbs_fixup_c1330_0 (arg1); } @@ -1770,7 +1770,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateEdit_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1808,7 +1808,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDateEdit_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -1831,7 +1831,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateEdit_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -1888,7 +1888,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QDateEdit_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -1911,7 +1911,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateEdit_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -1935,7 +1935,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateEdit_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -1978,7 +1978,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateEdit_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2002,7 +2002,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QDateEdit_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2043,7 +2043,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateEdit_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2067,7 +2067,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateEdit_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2091,7 +2091,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateEdit_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2129,7 +2129,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QDateEdit_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2171,7 +2171,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateEdit_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2195,7 +2195,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateEdit_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2219,7 +2219,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateEdit_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2243,7 +2243,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateEdit_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2267,7 +2267,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateEdit_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2295,9 +2295,9 @@ static void _call_cbs_nativeEvent_4678_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - long int *arg3 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + long int *arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDateEdit_Adaptor *)cls)->cbs_nativeEvent_4678_0 (arg1, arg2, arg3)); } @@ -2357,7 +2357,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateEdit_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2399,7 +2399,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QDateEdit_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -2422,7 +2422,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateEdit_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2493,7 +2493,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateEdit_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2536,7 +2536,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateEdit_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2579,7 +2579,7 @@ static void _call_cbs_stepBy_767_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateEdit_Adaptor *)cls)->cbs_stepBy_767_0 (arg1); } @@ -2622,7 +2622,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateEdit_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2646,7 +2646,7 @@ static void _call_cbs_textFromDateTime_c2175_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDateTime &arg1 = args.read (heap); + const QDateTime &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QDateEdit_Adaptor *)cls)->cbs_textFromDateTime_c2175_0 (arg1)); } @@ -2687,7 +2687,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateEdit_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2746,8 +2746,8 @@ static void _call_cbs_validate_c2171_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QString &arg1 = args.read (heap); - int &arg2 = args.read (heap); + QString &arg1 = gsi::arg_reader() (args, heap); + int &arg2 = gsi::arg_reader() (args, heap); ret.write::target_type > ((qt_gsi::Converter::target_type)((QDateEdit_Adaptor *)cls)->cbs_validate_c2171_0 (arg1, arg2)); } @@ -2770,7 +2770,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateEdit_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQDateTimeEdit.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQDateTimeEdit.cc index 16ea49df9..b1cfb03aa 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQDateTimeEdit.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQDateTimeEdit.cc @@ -2188,7 +2188,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -2212,7 +2212,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -2236,7 +2236,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -2280,7 +2280,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -2304,7 +2304,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -2371,7 +2371,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -2431,7 +2431,7 @@ static void _call_cbs_dateTimeFromText_c2025_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QDateTime)((QDateTimeEdit_Adaptor *)cls)->cbs_dateTimeFromText_c2025_0 (arg1)); } @@ -2494,7 +2494,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -2518,7 +2518,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -2542,7 +2542,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -2566,7 +2566,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -2590,7 +2590,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -2628,7 +2628,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -2652,7 +2652,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDateTimeEdit_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -2677,8 +2677,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDateTimeEdit_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -2701,7 +2701,7 @@ static void _call_cbs_fixup_c1330_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QString &arg1 = args.read (heap); + QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit_Adaptor *)cls)->cbs_fixup_c1330_0 (arg1); } @@ -2725,7 +2725,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -2763,7 +2763,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDateTimeEdit_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -2786,7 +2786,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -2843,7 +2843,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QDateTimeEdit_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -2866,7 +2866,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -2890,7 +2890,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -2933,7 +2933,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2957,7 +2957,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QDateTimeEdit_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2998,7 +2998,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -3022,7 +3022,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -3046,7 +3046,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -3084,7 +3084,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QDateTimeEdit_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -3126,7 +3126,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -3150,7 +3150,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -3174,7 +3174,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -3198,7 +3198,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -3222,7 +3222,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -3250,9 +3250,9 @@ static void _call_cbs_nativeEvent_4678_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - long int *arg3 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + long int *arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDateTimeEdit_Adaptor *)cls)->cbs_nativeEvent_4678_0 (arg1, arg2, arg3)); } @@ -3312,7 +3312,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -3354,7 +3354,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QDateTimeEdit_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -3377,7 +3377,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -3448,7 +3448,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -3491,7 +3491,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -3534,7 +3534,7 @@ static void _call_cbs_stepBy_767_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit_Adaptor *)cls)->cbs_stepBy_767_0 (arg1); } @@ -3577,7 +3577,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -3601,7 +3601,7 @@ static void _call_cbs_textFromDateTime_c2175_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDateTime &arg1 = args.read (heap); + const QDateTime &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QDateTimeEdit_Adaptor *)cls)->cbs_textFromDateTime_c2175_0 (arg1)); } @@ -3642,7 +3642,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -3683,8 +3683,8 @@ static void _call_cbs_validate_c2171_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QString &arg1 = args.read (heap); - int &arg2 = args.read (heap); + QString &arg1 = gsi::arg_reader() (args, heap); + int &arg2 = gsi::arg_reader() (args, heap); ret.write::target_type > ((qt_gsi::Converter::target_type)((QDateTimeEdit_Adaptor *)cls)->cbs_validate_c2171_0 (arg1, arg2)); } @@ -3707,7 +3707,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQDesktopWidget.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQDesktopWidget.cc index f9c5d69bc..cd6e69f67 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQDesktopWidget.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQDesktopWidget.cc @@ -1294,7 +1294,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDesktopWidget_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1318,7 +1318,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDesktopWidget_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1342,7 +1342,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDesktopWidget_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1366,7 +1366,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDesktopWidget_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1390,7 +1390,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDesktopWidget_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1457,7 +1457,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDesktopWidget_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1521,7 +1521,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDesktopWidget_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1545,7 +1545,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDesktopWidget_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1569,7 +1569,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDesktopWidget_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1593,7 +1593,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDesktopWidget_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1617,7 +1617,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDesktopWidget_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1641,7 +1641,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDesktopWidget_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -1665,7 +1665,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDesktopWidget_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1690,8 +1690,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDesktopWidget_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1714,7 +1714,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDesktopWidget_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1752,7 +1752,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDesktopWidget_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -1775,7 +1775,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDesktopWidget_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -1832,7 +1832,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QDesktopWidget_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -1855,7 +1855,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDesktopWidget_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -1879,7 +1879,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDesktopWidget_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -1903,7 +1903,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDesktopWidget_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -1927,7 +1927,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QDesktopWidget_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -1968,7 +1968,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDesktopWidget_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -1992,7 +1992,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDesktopWidget_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2016,7 +2016,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDesktopWidget_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2040,7 +2040,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QDesktopWidget_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2082,7 +2082,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDesktopWidget_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2106,7 +2106,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDesktopWidget_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2130,7 +2130,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDesktopWidget_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2154,7 +2154,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDesktopWidget_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2178,7 +2178,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDesktopWidget_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2206,9 +2206,9 @@ static void _call_cbs_nativeEvent_4678_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - long int *arg3 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + long int *arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDesktopWidget_Adaptor *)cls)->cbs_nativeEvent_4678_0 (arg1, arg2, arg3)); } @@ -2268,7 +2268,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDesktopWidget_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2324,7 +2324,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QDesktopWidget_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -2347,7 +2347,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDesktopWidget_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2435,7 +2435,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDesktopWidget_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2478,7 +2478,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDesktopWidget_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2521,7 +2521,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDesktopWidget_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2545,7 +2545,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDesktopWidget_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2584,7 +2584,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDesktopWidget_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQDial.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQDial.cc index 2caafcb85..63b626fde 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQDial.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQDial.cc @@ -1265,7 +1265,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDial_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1307,7 +1307,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDial_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1331,7 +1331,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDial_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1355,7 +1355,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDial_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1379,7 +1379,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDial_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1446,7 +1446,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDial_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1510,7 +1510,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDial_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1534,7 +1534,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDial_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1558,7 +1558,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDial_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1582,7 +1582,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDial_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1606,7 +1606,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDial_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1630,7 +1630,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDial_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -1654,7 +1654,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDial_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1679,8 +1679,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDial_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1703,7 +1703,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDial_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1741,7 +1741,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDial_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -1764,7 +1764,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDial_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -1821,7 +1821,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QDial_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -1844,7 +1844,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDial_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -1868,7 +1868,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDial_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -1911,7 +1911,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDial_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -1935,7 +1935,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QDial_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -1976,7 +1976,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDial_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2000,7 +2000,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDial_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2024,7 +2024,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDial_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2048,7 +2048,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QDial_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2090,7 +2090,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDial_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2114,7 +2114,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDial_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2138,7 +2138,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDial_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2162,7 +2162,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDial_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2186,7 +2186,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDial_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2214,9 +2214,9 @@ static void _call_cbs_nativeEvent_4678_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - long int *arg3 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + long int *arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDial_Adaptor *)cls)->cbs_nativeEvent_4678_0 (arg1, arg2, arg3)); } @@ -2276,7 +2276,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDial_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2339,7 +2339,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QDial_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -2376,7 +2376,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDial_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2453,7 +2453,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDial_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2496,7 +2496,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDial_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2539,7 +2539,7 @@ static void _call_cbs_sliderChange_3257_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDial_Adaptor *)cls)->cbs_sliderChange_3257_0 (arg1); } @@ -2609,7 +2609,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDial_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2633,7 +2633,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDial_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2690,7 +2690,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDial_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQDialog.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQDialog.cc index 5d289f016..2fe2871bf 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQDialog.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQDialog.cc @@ -1512,7 +1512,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialog_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1555,7 +1555,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialog_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1579,7 +1579,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialog_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1603,7 +1603,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialog_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1627,7 +1627,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialog_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1694,7 +1694,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialog_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1758,7 +1758,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialog_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1782,7 +1782,7 @@ static void _call_cbs_done_767_0 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialog_Adaptor *)cls)->cbs_done_767_0 (arg1); } @@ -1806,7 +1806,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialog_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1830,7 +1830,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialog_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1854,7 +1854,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialog_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1878,7 +1878,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialog_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1902,7 +1902,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialog_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -1926,7 +1926,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDialog_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1951,8 +1951,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDialog_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -2012,7 +2012,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialog_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -2050,7 +2050,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDialog_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -2073,7 +2073,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialog_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -2130,7 +2130,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QDialog_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -2153,7 +2153,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialog_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -2177,7 +2177,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialog_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -2201,7 +2201,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialog_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2225,7 +2225,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QDialog_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2266,7 +2266,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialog_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2290,7 +2290,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialog_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2314,7 +2314,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialog_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2338,7 +2338,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QDialog_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2380,7 +2380,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialog_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2404,7 +2404,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialog_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2428,7 +2428,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialog_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2452,7 +2452,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialog_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2476,7 +2476,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialog_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2504,9 +2504,9 @@ static void _call_cbs_nativeEvent_4678_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - long int *arg3 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + long int *arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDialog_Adaptor *)cls)->cbs_nativeEvent_4678_0 (arg1, arg2, arg3)); } @@ -2586,7 +2586,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialog_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2628,7 +2628,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QDialog_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -2685,7 +2685,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialog_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2737,7 +2737,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialog_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2780,7 +2780,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialog_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2823,7 +2823,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialog_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2847,7 +2847,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialog_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2886,7 +2886,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialog_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQDialogButtonBox.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQDialogButtonBox.cc index 8fbcf1853..30fe0677c 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQDialogButtonBox.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQDialogButtonBox.cc @@ -1470,7 +1470,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialogButtonBox_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1494,7 +1494,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialogButtonBox_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1518,7 +1518,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialogButtonBox_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1560,7 +1560,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialogButtonBox_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1584,7 +1584,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialogButtonBox_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1651,7 +1651,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialogButtonBox_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1715,7 +1715,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialogButtonBox_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1739,7 +1739,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialogButtonBox_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1763,7 +1763,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialogButtonBox_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1787,7 +1787,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialogButtonBox_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1811,7 +1811,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialogButtonBox_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1835,7 +1835,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialogButtonBox_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -1859,7 +1859,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDialogButtonBox_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1884,8 +1884,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDialogButtonBox_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1908,7 +1908,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialogButtonBox_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1946,7 +1946,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDialogButtonBox_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -1969,7 +1969,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialogButtonBox_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -2026,7 +2026,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QDialogButtonBox_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -2063,7 +2063,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialogButtonBox_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -2087,7 +2087,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialogButtonBox_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -2111,7 +2111,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialogButtonBox_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2135,7 +2135,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QDialogButtonBox_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2176,7 +2176,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialogButtonBox_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2200,7 +2200,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialogButtonBox_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2224,7 +2224,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialogButtonBox_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2248,7 +2248,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QDialogButtonBox_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2290,7 +2290,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialogButtonBox_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2314,7 +2314,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialogButtonBox_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2338,7 +2338,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialogButtonBox_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2362,7 +2362,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialogButtonBox_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2386,7 +2386,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialogButtonBox_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2414,9 +2414,9 @@ static void _call_cbs_nativeEvent_4678_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - long int *arg3 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + long int *arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDialogButtonBox_Adaptor *)cls)->cbs_nativeEvent_4678_0 (arg1, arg2, arg3)); } @@ -2476,7 +2476,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialogButtonBox_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2518,7 +2518,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QDialogButtonBox_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -2555,7 +2555,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialogButtonBox_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2607,7 +2607,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialogButtonBox_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2650,7 +2650,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialogButtonBox_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2693,7 +2693,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialogButtonBox_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2717,7 +2717,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialogButtonBox_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2756,7 +2756,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialogButtonBox_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQDirModel.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQDirModel.cc index ac85f24b2..8204b36e2 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQDirModel.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQDirModel.cc @@ -2147,7 +2147,7 @@ static void _call_cbs_buddy_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QDirModel_Adaptor *)cls)->cbs_buddy_c2395_0 (arg1)); } @@ -2178,11 +2178,11 @@ static void _call_cbs_canDropMimeData_c7425_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMimeData *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - const QModelIndex &arg5 = args.read (heap); + const QMimeData *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + const QModelIndex &arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDirModel_Adaptor *)cls)->cbs_canDropMimeData_c7425_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -2205,7 +2205,7 @@ static void _call_cbs_canFetchMore_c2395_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDirModel_Adaptor *)cls)->cbs_canFetchMore_c2395_0 (arg1)); } @@ -2272,7 +2272,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDirModel_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -2296,7 +2296,7 @@ static void _call_cbs_columnCount_c2395_1 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((int)((QDirModel_Adaptor *)cls)->cbs_columnCount_c2395_1 (arg1)); } @@ -2523,7 +2523,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDirModel_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -2549,8 +2549,8 @@ static void _call_cbs_data_c3054_1 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::DisplayRole, heap); ret.write ((QVariant)((QDirModel_Adaptor *)cls)->cbs_data_c3054_1 (arg1, arg2)); } @@ -2642,7 +2642,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDirModel_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -2674,11 +2674,11 @@ static void _call_cbs_dropMimeData_7425_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMimeData *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - const QModelIndex &arg5 = args.read (heap); + const QMimeData *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + const QModelIndex &arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDirModel_Adaptor *)cls)->cbs_dropMimeData_7425_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -2828,7 +2828,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDirModel_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -2853,8 +2853,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDirModel_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -2877,7 +2877,7 @@ static void _call_cbs_fetchMore_2395_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDirModel_Adaptor *)cls)->cbs_fetchMore_2395_0 (arg1); } @@ -2901,7 +2901,7 @@ static void _call_cbs_flags_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QFlags)((QDirModel_Adaptor *)cls)->cbs_flags_c2395_0 (arg1)); } @@ -2924,7 +2924,7 @@ static void _call_cbs_hasChildren_c2395_1 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QDirModel_Adaptor *)cls)->cbs_hasChildren_c2395_1 (arg1)); } @@ -2951,9 +2951,9 @@ static void _call_cbs_headerData_c3231_1 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::DisplayRole, heap); ret.write ((QVariant)((QDirModel_Adaptor *)cls)->cbs_headerData_c3231_1 (arg1, arg2, arg3)); } @@ -3004,9 +3004,9 @@ static void _call_cbs_index_c3713_1 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((QModelIndex)((QDirModel_Adaptor *)cls)->cbs_index_c3713_1 (arg1, arg2, arg3)); } @@ -3033,9 +3033,9 @@ static void _call_cbs_insertColumns_3713_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QDirModel_Adaptor *)cls)->cbs_insertColumns_3713_1 (arg1, arg2, arg3)); } @@ -3062,9 +3062,9 @@ static void _call_cbs_insertRows_3713_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QDirModel_Adaptor *)cls)->cbs_insertRows_3713_1 (arg1, arg2, arg3)); } @@ -3105,7 +3105,7 @@ static void _call_cbs_itemData_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QMap)((QDirModel_Adaptor *)cls)->cbs_itemData_c2395_0 (arg1)); } @@ -3178,11 +3178,11 @@ static void _call_cbs_match_c7932_2 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - const QVariant &arg3 = args.read (heap); - int arg4 = args.read (heap); - QFlags arg5 = args.read > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QVariant &arg3 = gsi::arg_reader() (args, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (1, heap); + QFlags arg5 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (Qt::MatchFlags(Qt::MatchStartsWith|Qt::MatchWrap), heap); ret.write > ((QList)((QDirModel_Adaptor *)cls)->cbs_match_c7932_2 (arg1, arg2, arg3, arg4, arg5)); } @@ -3205,7 +3205,7 @@ static void _call_cbs_mimeData_c3010_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); ret.write ((QMimeData *)((QDirModel_Adaptor *)cls)->cbs_mimeData_c3010_0 (arg1)); } @@ -3283,11 +3283,11 @@ static void _call_cbs_moveColumns_6659_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - const QModelIndex &arg4 = args.read (heap); - int arg5 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QModelIndex &arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDirModel_Adaptor *)cls)->cbs_moveColumns_6659_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -3318,11 +3318,11 @@ static void _call_cbs_moveRows_6659_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - const QModelIndex &arg4 = args.read (heap); - int arg5 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QModelIndex &arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDirModel_Adaptor *)cls)->cbs_moveRows_6659_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -3363,7 +3363,7 @@ static void _call_cbs_parent_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QDirModel_Adaptor *)cls)->cbs_parent_c2395_0 (arg1)); } @@ -3422,9 +3422,9 @@ static void _call_cbs_removeColumns_3713_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QDirModel_Adaptor *)cls)->cbs_removeColumns_3713_1 (arg1, arg2, arg3)); } @@ -3451,9 +3451,9 @@ static void _call_cbs_removeRows_3713_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QDirModel_Adaptor *)cls)->cbs_removeRows_3713_1 (arg1, arg2, arg3)); } @@ -3530,7 +3530,7 @@ static void _call_cbs_rowCount_c2395_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((int)((QDirModel_Adaptor *)cls)->cbs_rowCount_c2395_1 (arg1)); } @@ -3741,9 +3741,9 @@ static void _call_cbs_setData_5065_1 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::EditRole, heap); ret.write ((bool)((QDirModel_Adaptor *)cls)->cbs_setData_5065_1 (arg1, arg2, arg3)); } @@ -3772,10 +3772,10 @@ static void _call_cbs_setHeaderData_5242_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - const QVariant &arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + const QVariant &arg3 = gsi::arg_reader() (args, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::EditRole, heap); ret.write ((bool)((QDirModel_Adaptor *)cls)->cbs_setHeaderData_5242_1 (arg1, arg2, arg3, arg4)); } @@ -3800,8 +3800,8 @@ static void _call_cbs_setItemData_5414_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QMap &arg2 = args.read & > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QMap &arg2 = gsi::arg_reader & >() (args, heap); ret.write ((bool)((QDirModel_Adaptor *)cls)->cbs_setItemData_5414_0 (arg1, arg2)); } @@ -3828,9 +3828,9 @@ static void _call_cbs_sibling_c3713_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QDirModel_Adaptor *)cls)->cbs_sibling_c3713_0 (arg1, arg2, arg3)); } @@ -3855,8 +3855,8 @@ static void _call_cbs_sort_2340_1 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::AscendingOrder), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDirModel_Adaptor *)cls)->cbs_sort_2340_1 (arg1, arg2); } @@ -3880,7 +3880,7 @@ static void _call_cbs_span_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QSize)((QDirModel_Adaptor *)cls)->cbs_span_c2395_0 (arg1)); } @@ -3960,7 +3960,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDirModel_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQDockWidget.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQDockWidget.cc index 9127aebdd..4d6fd2866 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQDockWidget.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQDockWidget.cc @@ -1345,7 +1345,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDockWidget_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1387,7 +1387,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDockWidget_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1411,7 +1411,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDockWidget_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1435,7 +1435,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDockWidget_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1459,7 +1459,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDockWidget_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1526,7 +1526,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDockWidget_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1590,7 +1590,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDockWidget_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1632,7 +1632,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDockWidget_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1656,7 +1656,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDockWidget_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1680,7 +1680,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDockWidget_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1704,7 +1704,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDockWidget_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1728,7 +1728,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDockWidget_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -1752,7 +1752,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDockWidget_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1777,8 +1777,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDockWidget_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1819,7 +1819,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDockWidget_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1857,7 +1857,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDockWidget_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -1880,7 +1880,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDockWidget_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -1937,7 +1937,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QDockWidget_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -1960,7 +1960,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDockWidget_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -1984,7 +1984,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDockWidget_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -2027,7 +2027,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDockWidget_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2051,7 +2051,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QDockWidget_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2092,7 +2092,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDockWidget_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2116,7 +2116,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDockWidget_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2140,7 +2140,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDockWidget_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2164,7 +2164,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QDockWidget_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2206,7 +2206,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDockWidget_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2230,7 +2230,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDockWidget_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2254,7 +2254,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDockWidget_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2278,7 +2278,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDockWidget_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2302,7 +2302,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDockWidget_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2330,9 +2330,9 @@ static void _call_cbs_nativeEvent_4678_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - long int *arg3 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + long int *arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDockWidget_Adaptor *)cls)->cbs_nativeEvent_4678_0 (arg1, arg2, arg3)); } @@ -2392,7 +2392,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDockWidget_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2434,7 +2434,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QDockWidget_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -2457,7 +2457,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDockWidget_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2509,7 +2509,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDockWidget_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2552,7 +2552,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDockWidget_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2595,7 +2595,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDockWidget_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2619,7 +2619,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDockWidget_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2694,7 +2694,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDockWidget_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQDoubleSpinBox.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQDoubleSpinBox.cc index 647c8673d..e6a2c8cf0 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQDoubleSpinBox.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQDoubleSpinBox.cc @@ -1602,7 +1602,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1626,7 +1626,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1650,7 +1650,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1694,7 +1694,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1718,7 +1718,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1785,7 +1785,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1849,7 +1849,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1873,7 +1873,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1897,7 +1897,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1921,7 +1921,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1945,7 +1945,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1983,7 +1983,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -2007,7 +2007,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDoubleSpinBox_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -2032,8 +2032,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDoubleSpinBox_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -2056,7 +2056,7 @@ static void _call_cbs_fixup_c1330_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QString &arg1 = args.read (heap); + QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox_Adaptor *)cls)->cbs_fixup_c1330_0 (arg1); } @@ -2080,7 +2080,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -2118,7 +2118,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDoubleSpinBox_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -2141,7 +2141,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -2198,7 +2198,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QDoubleSpinBox_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -2221,7 +2221,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -2245,7 +2245,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -2288,7 +2288,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2312,7 +2312,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QDoubleSpinBox_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2353,7 +2353,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2377,7 +2377,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2401,7 +2401,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2439,7 +2439,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QDoubleSpinBox_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2481,7 +2481,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2505,7 +2505,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2529,7 +2529,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2553,7 +2553,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2577,7 +2577,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2605,9 +2605,9 @@ static void _call_cbs_nativeEvent_4678_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - long int *arg3 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + long int *arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDoubleSpinBox_Adaptor *)cls)->cbs_nativeEvent_4678_0 (arg1, arg2, arg3)); } @@ -2667,7 +2667,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2709,7 +2709,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QDoubleSpinBox_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -2732,7 +2732,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2803,7 +2803,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2846,7 +2846,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2889,7 +2889,7 @@ static void _call_cbs_stepBy_767_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox_Adaptor *)cls)->cbs_stepBy_767_0 (arg1); } @@ -2932,7 +2932,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2956,7 +2956,7 @@ static void _call_cbs_textFromValue_c1071_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QDoubleSpinBox_Adaptor *)cls)->cbs_textFromValue_c1071_0 (arg1)); } @@ -2979,7 +2979,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -3020,8 +3020,8 @@ static void _call_cbs_validate_c2171_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QString &arg1 = args.read (heap); - int &arg2 = args.read (heap); + QString &arg1 = gsi::arg_reader() (args, heap); + int &arg2 = gsi::arg_reader() (args, heap); ret.write::target_type > ((qt_gsi::Converter::target_type)((QDoubleSpinBox_Adaptor *)cls)->cbs_validate_c2171_0 (arg1, arg2)); } @@ -3080,7 +3080,7 @@ static void _call_cbs_valueFromText_c2025_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((double)((QDoubleSpinBox_Adaptor *)cls)->cbs_valueFromText_c2025_0 (arg1)); } @@ -3103,7 +3103,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQErrorMessage.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQErrorMessage.cc index 1da9edfd9..9e45d22ac 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQErrorMessage.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQErrorMessage.cc @@ -1233,7 +1233,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QErrorMessage_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1276,7 +1276,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QErrorMessage_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1300,7 +1300,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QErrorMessage_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1324,7 +1324,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QErrorMessage_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1348,7 +1348,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QErrorMessage_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1415,7 +1415,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QErrorMessage_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1479,7 +1479,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QErrorMessage_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1503,7 +1503,7 @@ static void _call_cbs_done_767_0 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QErrorMessage_Adaptor *)cls)->cbs_done_767_0 (arg1); } @@ -1527,7 +1527,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QErrorMessage_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1551,7 +1551,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QErrorMessage_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1575,7 +1575,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QErrorMessage_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1599,7 +1599,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QErrorMessage_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1623,7 +1623,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QErrorMessage_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -1647,7 +1647,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QErrorMessage_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1672,8 +1672,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QErrorMessage_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1733,7 +1733,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QErrorMessage_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1771,7 +1771,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QErrorMessage_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -1794,7 +1794,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QErrorMessage_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -1851,7 +1851,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QErrorMessage_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -1874,7 +1874,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QErrorMessage_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -1898,7 +1898,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QErrorMessage_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -1922,7 +1922,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QErrorMessage_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -1946,7 +1946,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QErrorMessage_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -1987,7 +1987,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QErrorMessage_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2011,7 +2011,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QErrorMessage_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2035,7 +2035,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QErrorMessage_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2059,7 +2059,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QErrorMessage_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2101,7 +2101,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QErrorMessage_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2125,7 +2125,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QErrorMessage_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2149,7 +2149,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QErrorMessage_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2173,7 +2173,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QErrorMessage_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2197,7 +2197,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QErrorMessage_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2225,9 +2225,9 @@ static void _call_cbs_nativeEvent_4678_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - long int *arg3 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + long int *arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QErrorMessage_Adaptor *)cls)->cbs_nativeEvent_4678_0 (arg1, arg2, arg3)); } @@ -2307,7 +2307,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QErrorMessage_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2349,7 +2349,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QErrorMessage_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -2406,7 +2406,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QErrorMessage_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2458,7 +2458,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QErrorMessage_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2501,7 +2501,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QErrorMessage_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2544,7 +2544,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QErrorMessage_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2568,7 +2568,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QErrorMessage_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2607,7 +2607,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QErrorMessage_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQFileDialog.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQFileDialog.cc index 7f4925517..9a33e2919 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQFileDialog.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQFileDialog.cc @@ -2690,7 +2690,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -2733,7 +2733,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -2757,7 +2757,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -2781,7 +2781,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -2805,7 +2805,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -2908,7 +2908,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -3008,7 +3008,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -3032,7 +3032,7 @@ static void _call_cbs_done_767_0 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog_Adaptor *)cls)->cbs_done_767_0 (arg1); } @@ -3056,7 +3056,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -3080,7 +3080,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -3104,7 +3104,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -3128,7 +3128,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -3152,7 +3152,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -3176,7 +3176,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFileDialog_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -3201,8 +3201,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFileDialog_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -3316,7 +3316,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -3354,7 +3354,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFileDialog_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -3377,7 +3377,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -3434,7 +3434,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QFileDialog_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -3457,7 +3457,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -3481,7 +3481,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -3505,7 +3505,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -3529,7 +3529,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QFileDialog_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -3570,7 +3570,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -3594,7 +3594,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -3618,7 +3618,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -3642,7 +3642,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QFileDialog_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -3684,7 +3684,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -3708,7 +3708,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -3732,7 +3732,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -3756,7 +3756,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -3780,7 +3780,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -3808,9 +3808,9 @@ static void _call_cbs_nativeEvent_4678_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - long int *arg3 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + long int *arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFileDialog_Adaptor *)cls)->cbs_nativeEvent_4678_0 (arg1, arg2, arg3)); } @@ -3890,7 +3890,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -3932,7 +3932,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QFileDialog_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -3989,7 +3989,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -4041,7 +4041,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -4084,7 +4084,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -4127,7 +4127,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -4151,7 +4151,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -4226,7 +4226,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQFileIconProvider.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQFileIconProvider.cc index df5102be9..6000a63bf 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQFileIconProvider.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQFileIconProvider.cc @@ -242,7 +242,7 @@ static void _call_cbs_icon_c3064_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QIcon)((QFileIconProvider_Adaptor *)cls)->cbs_icon_c3064_0 (arg1)); } @@ -265,7 +265,7 @@ static void _call_cbs_icon_c2174_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFileInfo &arg1 = args.read (heap); + const QFileInfo &arg1 = gsi::arg_reader() (args, heap); ret.write ((QIcon)((QFileIconProvider_Adaptor *)cls)->cbs_icon_c2174_0 (arg1)); } @@ -288,7 +288,7 @@ static void _call_cbs_type_c2174_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFileInfo &arg1 = args.read (heap); + const QFileInfo &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QFileIconProvider_Adaptor *)cls)->cbs_type_c2174_0 (arg1)); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQFileSystemModel.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQFileSystemModel.cc index f74fff1c2..765c4692c 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQFileSystemModel.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQFileSystemModel.cc @@ -2292,7 +2292,7 @@ static void _call_cbs_buddy_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QFileSystemModel_Adaptor *)cls)->cbs_buddy_c2395_0 (arg1)); } @@ -2323,11 +2323,11 @@ static void _call_cbs_canDropMimeData_c7425_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMimeData *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - const QModelIndex &arg5 = args.read (heap); + const QMimeData *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + const QModelIndex &arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFileSystemModel_Adaptor *)cls)->cbs_canDropMimeData_c7425_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -2350,7 +2350,7 @@ static void _call_cbs_canFetchMore_c2395_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFileSystemModel_Adaptor *)cls)->cbs_canFetchMore_c2395_0 (arg1)); } @@ -2417,7 +2417,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileSystemModel_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -2441,7 +2441,7 @@ static void _call_cbs_columnCount_c2395_1 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((int)((QFileSystemModel_Adaptor *)cls)->cbs_columnCount_c2395_1 (arg1)); } @@ -2668,7 +2668,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileSystemModel_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -2694,8 +2694,8 @@ static void _call_cbs_data_c3054_1 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::DisplayRole, heap); ret.write ((QVariant)((QFileSystemModel_Adaptor *)cls)->cbs_data_c3054_1 (arg1, arg2)); } @@ -2805,7 +2805,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileSystemModel_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -2837,11 +2837,11 @@ static void _call_cbs_dropMimeData_7425_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMimeData *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - const QModelIndex &arg5 = args.read (heap); + const QMimeData *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + const QModelIndex &arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFileSystemModel_Adaptor *)cls)->cbs_dropMimeData_7425_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -2991,7 +2991,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFileSystemModel_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -3016,8 +3016,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFileSystemModel_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -3040,7 +3040,7 @@ static void _call_cbs_fetchMore_2395_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileSystemModel_Adaptor *)cls)->cbs_fetchMore_2395_0 (arg1); } @@ -3088,7 +3088,7 @@ static void _call_cbs_flags_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QFlags)((QFileSystemModel_Adaptor *)cls)->cbs_flags_c2395_0 (arg1)); } @@ -3111,7 +3111,7 @@ static void _call_cbs_hasChildren_c2395_1 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QFileSystemModel_Adaptor *)cls)->cbs_hasChildren_c2395_1 (arg1)); } @@ -3138,9 +3138,9 @@ static void _call_cbs_headerData_c3231_1 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::DisplayRole, heap); ret.write ((QVariant)((QFileSystemModel_Adaptor *)cls)->cbs_headerData_c3231_1 (arg1, arg2, arg3)); } @@ -3191,9 +3191,9 @@ static void _call_cbs_index_c3713_1 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((QModelIndex)((QFileSystemModel_Adaptor *)cls)->cbs_index_c3713_1 (arg1, arg2, arg3)); } @@ -3220,9 +3220,9 @@ static void _call_cbs_insertColumns_3713_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QFileSystemModel_Adaptor *)cls)->cbs_insertColumns_3713_1 (arg1, arg2, arg3)); } @@ -3249,9 +3249,9 @@ static void _call_cbs_insertRows_3713_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QFileSystemModel_Adaptor *)cls)->cbs_insertRows_3713_1 (arg1, arg2, arg3)); } @@ -3292,7 +3292,7 @@ static void _call_cbs_itemData_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QMap)((QFileSystemModel_Adaptor *)cls)->cbs_itemData_c2395_0 (arg1)); } @@ -3365,11 +3365,11 @@ static void _call_cbs_match_c7932_2 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - const QVariant &arg3 = args.read (heap); - int arg4 = args.read (heap); - QFlags arg5 = args.read > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QVariant &arg3 = gsi::arg_reader() (args, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (1, heap); + QFlags arg5 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (Qt::MatchFlags(Qt::MatchStartsWith|Qt::MatchWrap), heap); ret.write > ((QList)((QFileSystemModel_Adaptor *)cls)->cbs_match_c7932_2 (arg1, arg2, arg3, arg4, arg5)); } @@ -3392,7 +3392,7 @@ static void _call_cbs_mimeData_c3010_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); ret.write ((QMimeData *)((QFileSystemModel_Adaptor *)cls)->cbs_mimeData_c3010_0 (arg1)); } @@ -3470,11 +3470,11 @@ static void _call_cbs_moveColumns_6659_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - const QModelIndex &arg4 = args.read (heap); - int arg5 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QModelIndex &arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFileSystemModel_Adaptor *)cls)->cbs_moveColumns_6659_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -3505,11 +3505,11 @@ static void _call_cbs_moveRows_6659_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - const QModelIndex &arg4 = args.read (heap); - int arg5 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QModelIndex &arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFileSystemModel_Adaptor *)cls)->cbs_moveRows_6659_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -3550,7 +3550,7 @@ static void _call_cbs_parent_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QFileSystemModel_Adaptor *)cls)->cbs_parent_c2395_0 (arg1)); } @@ -3609,9 +3609,9 @@ static void _call_cbs_removeColumns_3713_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QFileSystemModel_Adaptor *)cls)->cbs_removeColumns_3713_1 (arg1, arg2, arg3)); } @@ -3638,9 +3638,9 @@ static void _call_cbs_removeRows_3713_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QFileSystemModel_Adaptor *)cls)->cbs_removeRows_3713_1 (arg1, arg2, arg3)); } @@ -3735,7 +3735,7 @@ static void _call_cbs_rowCount_c2395_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((int)((QFileSystemModel_Adaptor *)cls)->cbs_rowCount_c2395_1 (arg1)); } @@ -3946,9 +3946,9 @@ static void _call_cbs_setData_5065_1 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::EditRole, heap); ret.write ((bool)((QFileSystemModel_Adaptor *)cls)->cbs_setData_5065_1 (arg1, arg2, arg3)); } @@ -3977,10 +3977,10 @@ static void _call_cbs_setHeaderData_5242_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - const QVariant &arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + const QVariant &arg3 = gsi::arg_reader() (args, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::EditRole, heap); ret.write ((bool)((QFileSystemModel_Adaptor *)cls)->cbs_setHeaderData_5242_1 (arg1, arg2, arg3, arg4)); } @@ -4005,8 +4005,8 @@ static void _call_cbs_setItemData_5414_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QMap &arg2 = args.read & > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QMap &arg2 = gsi::arg_reader & >() (args, heap); ret.write ((bool)((QFileSystemModel_Adaptor *)cls)->cbs_setItemData_5414_0 (arg1, arg2)); } @@ -4033,9 +4033,9 @@ static void _call_cbs_sibling_c3713_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QFileSystemModel_Adaptor *)cls)->cbs_sibling_c3713_0 (arg1, arg2, arg3)); } @@ -4060,8 +4060,8 @@ static void _call_cbs_sort_2340_1 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::AscendingOrder), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileSystemModel_Adaptor *)cls)->cbs_sort_2340_1 (arg1, arg2); } @@ -4085,7 +4085,7 @@ static void _call_cbs_span_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QSize)((QFileSystemModel_Adaptor *)cls)->cbs_span_c2395_0 (arg1)); } @@ -4165,7 +4165,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileSystemModel_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQFocusFrame.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQFocusFrame.cc index 614dd1eef..17548fff0 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQFocusFrame.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQFocusFrame.cc @@ -1075,7 +1075,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFocusFrame_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1099,7 +1099,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFocusFrame_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1123,7 +1123,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFocusFrame_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1147,7 +1147,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFocusFrame_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1171,7 +1171,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFocusFrame_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1238,7 +1238,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFocusFrame_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1302,7 +1302,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFocusFrame_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1326,7 +1326,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFocusFrame_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1350,7 +1350,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFocusFrame_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1374,7 +1374,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFocusFrame_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1398,7 +1398,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFocusFrame_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1422,7 +1422,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFocusFrame_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -1446,7 +1446,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFocusFrame_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1471,8 +1471,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFocusFrame_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1495,7 +1495,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFocusFrame_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1533,7 +1533,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFocusFrame_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -1556,7 +1556,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFocusFrame_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -1613,7 +1613,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QFocusFrame_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -1636,7 +1636,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFocusFrame_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -1660,7 +1660,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFocusFrame_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -1703,7 +1703,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFocusFrame_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -1727,7 +1727,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QFocusFrame_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -1768,7 +1768,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFocusFrame_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -1792,7 +1792,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFocusFrame_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -1816,7 +1816,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFocusFrame_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -1840,7 +1840,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QFocusFrame_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -1882,7 +1882,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFocusFrame_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -1906,7 +1906,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFocusFrame_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -1930,7 +1930,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFocusFrame_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -1954,7 +1954,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFocusFrame_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -1978,7 +1978,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFocusFrame_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2006,9 +2006,9 @@ static void _call_cbs_nativeEvent_4678_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - long int *arg3 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + long int *arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFocusFrame_Adaptor *)cls)->cbs_nativeEvent_4678_0 (arg1, arg2, arg3)); } @@ -2068,7 +2068,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFocusFrame_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2110,7 +2110,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QFocusFrame_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -2133,7 +2133,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFocusFrame_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2185,7 +2185,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFocusFrame_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2228,7 +2228,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFocusFrame_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2271,7 +2271,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFocusFrame_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2295,7 +2295,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFocusFrame_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2334,7 +2334,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFocusFrame_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQFontComboBox.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQFontComboBox.cc index 5b8c2b95d..61bfb2383 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQFontComboBox.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQFontComboBox.cc @@ -1267,7 +1267,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontComboBox_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1327,7 +1327,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontComboBox_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1351,7 +1351,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontComboBox_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1375,7 +1375,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontComboBox_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1399,7 +1399,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontComboBox_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1538,7 +1538,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontComboBox_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1602,7 +1602,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontComboBox_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1626,7 +1626,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontComboBox_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1650,7 +1650,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontComboBox_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1674,7 +1674,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontComboBox_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1698,7 +1698,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontComboBox_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1740,7 +1740,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontComboBox_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -1764,7 +1764,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFontComboBox_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1789,8 +1789,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFontComboBox_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1813,7 +1813,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontComboBox_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1851,7 +1851,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFontComboBox_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -1874,7 +1874,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontComboBox_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -1931,7 +1931,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QFontComboBox_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -1954,7 +1954,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontComboBox_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -2034,7 +2034,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontComboBox_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -2077,7 +2077,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontComboBox_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2101,7 +2101,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QFontComboBox_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2142,7 +2142,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontComboBox_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2166,7 +2166,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontComboBox_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2190,7 +2190,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontComboBox_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2214,7 +2214,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QFontComboBox_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2256,7 +2256,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontComboBox_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2280,7 +2280,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontComboBox_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2304,7 +2304,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontComboBox_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2328,7 +2328,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontComboBox_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2352,7 +2352,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontComboBox_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2380,9 +2380,9 @@ static void _call_cbs_nativeEvent_4678_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - long int *arg3 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + long int *arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFontComboBox_Adaptor *)cls)->cbs_nativeEvent_4678_0 (arg1, arg2, arg3)); } @@ -2442,7 +2442,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontComboBox_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2484,7 +2484,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QFontComboBox_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -2507,7 +2507,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontComboBox_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2559,7 +2559,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontComboBox_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2602,7 +2602,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontComboBox_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2665,7 +2665,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontComboBox_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2689,7 +2689,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontComboBox_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2728,7 +2728,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontComboBox_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQFontDialog.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQFontDialog.cc index 1d9db3a56..b74db9175 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQFontDialog.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQFontDialog.cc @@ -1470,7 +1470,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontDialog_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1513,7 +1513,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontDialog_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1537,7 +1537,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontDialog_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1561,7 +1561,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontDialog_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1585,7 +1585,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontDialog_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1670,7 +1670,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontDialog_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1734,7 +1734,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontDialog_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1758,7 +1758,7 @@ static void _call_cbs_done_767_0 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontDialog_Adaptor *)cls)->cbs_done_767_0 (arg1); } @@ -1782,7 +1782,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontDialog_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1806,7 +1806,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontDialog_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1830,7 +1830,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontDialog_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1854,7 +1854,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontDialog_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1878,7 +1878,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontDialog_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -1902,7 +1902,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFontDialog_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1927,8 +1927,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFontDialog_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1988,7 +1988,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontDialog_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -2026,7 +2026,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFontDialog_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -2049,7 +2049,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontDialog_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -2124,7 +2124,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QFontDialog_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -2147,7 +2147,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontDialog_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -2171,7 +2171,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontDialog_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -2195,7 +2195,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontDialog_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2219,7 +2219,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QFontDialog_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2260,7 +2260,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontDialog_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2284,7 +2284,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontDialog_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2308,7 +2308,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontDialog_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2332,7 +2332,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QFontDialog_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2374,7 +2374,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontDialog_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2398,7 +2398,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontDialog_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2422,7 +2422,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontDialog_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2446,7 +2446,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontDialog_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2470,7 +2470,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontDialog_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2498,9 +2498,9 @@ static void _call_cbs_nativeEvent_4678_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - long int *arg3 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + long int *arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFontDialog_Adaptor *)cls)->cbs_nativeEvent_4678_0 (arg1, arg2, arg3)); } @@ -2580,7 +2580,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontDialog_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2622,7 +2622,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QFontDialog_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -2679,7 +2679,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontDialog_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2731,7 +2731,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontDialog_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2774,7 +2774,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontDialog_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2817,7 +2817,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontDialog_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2841,7 +2841,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontDialog_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2880,7 +2880,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontDialog_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQFormLayout.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQFormLayout.cc index 5742e526c..0e9f799bd 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQFormLayout.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQFormLayout.cc @@ -1818,7 +1818,8 @@ static void _call_cbs_addItem_1740_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QLayoutItem *arg1 = args.read (heap); + QLayoutItem *arg1 = gsi::arg_reader() (args, heap); + qt_gsi::qt_keep (arg1); __SUPPRESS_UNUSED_WARNING(ret); ((QFormLayout_Adaptor *)cls)->cbs_addItem_1740_0 (arg1); } @@ -1878,7 +1879,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFormLayout_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1940,7 +1941,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFormLayout_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1982,7 +1983,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFormLayout_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -2006,7 +2007,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFormLayout_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -2031,8 +2032,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFormLayout_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -2112,7 +2113,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QFormLayout_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -2135,7 +2136,7 @@ static void _call_cbs_indexOf_c1315_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QFormLayout_Adaptor *)cls)->cbs_indexOf_c1315_0 (arg1)); } @@ -2215,7 +2216,7 @@ static void _call_cbs_itemAt_c767_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QLayoutItem *)((QFormLayout_Adaptor *)cls)->cbs_itemAt_c767_0 (arg1)); } @@ -2276,7 +2277,7 @@ static void _call_cbs_minimumHeightForWidth_c767_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QFormLayout_Adaptor *)cls)->cbs_minimumHeightForWidth_c767_0 (arg1)); } @@ -2382,7 +2383,7 @@ static void _call_cbs_setGeometry_1792_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFormLayout_Adaptor *)cls)->cbs_setGeometry_1792_0 (arg1); } @@ -2444,7 +2445,7 @@ static void _call_cbs_takeAt_767_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QLayoutItem *)((QFormLayout_Adaptor *)cls)->cbs_takeAt_767_0 (arg1)); } @@ -2467,7 +2468,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFormLayout_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQFrame.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQFrame.cc index 7f1b0102e..7e8b68df3 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQFrame.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQFrame.cc @@ -1306,7 +1306,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFrame_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1330,7 +1330,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFrame_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1354,7 +1354,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFrame_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1378,7 +1378,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFrame_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1402,7 +1402,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFrame_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1469,7 +1469,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFrame_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1533,7 +1533,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFrame_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1557,7 +1557,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFrame_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1581,7 +1581,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFrame_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1605,7 +1605,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFrame_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1648,7 +1648,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFrame_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1672,7 +1672,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFrame_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -1696,7 +1696,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFrame_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1721,8 +1721,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFrame_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1745,7 +1745,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFrame_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1783,7 +1783,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFrame_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -1806,7 +1806,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFrame_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -1863,7 +1863,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QFrame_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -1886,7 +1886,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFrame_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -1910,7 +1910,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFrame_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -1953,7 +1953,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFrame_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -1977,7 +1977,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QFrame_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2018,7 +2018,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFrame_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2042,7 +2042,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFrame_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2066,7 +2066,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFrame_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2090,7 +2090,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QFrame_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2132,7 +2132,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFrame_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2156,7 +2156,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFrame_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2180,7 +2180,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFrame_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2204,7 +2204,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFrame_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2228,7 +2228,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFrame_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2256,9 +2256,9 @@ static void _call_cbs_nativeEvent_4678_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - long int *arg3 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + long int *arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFrame_Adaptor *)cls)->cbs_nativeEvent_4678_0 (arg1, arg2, arg3)); } @@ -2318,7 +2318,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFrame_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2360,7 +2360,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QFrame_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -2383,7 +2383,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFrame_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2435,7 +2435,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFrame_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2478,7 +2478,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFrame_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2521,7 +2521,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFrame_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2545,7 +2545,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFrame_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2584,7 +2584,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFrame_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGesture.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGesture.cc index cf17d9af9..970cbff5d 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGesture.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGesture.cc @@ -450,7 +450,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGesture_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -474,7 +474,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGesture_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -516,7 +516,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGesture_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -540,7 +540,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGesture_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -565,8 +565,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGesture_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -671,7 +671,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGesture_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGestureRecognizer.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGestureRecognizer.cc index 2ca6a9283..30ab4453a 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGestureRecognizer.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGestureRecognizer.cc @@ -257,7 +257,7 @@ static void _call_cbs_create_1302_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); ret.write ((QGesture *)((QGestureRecognizer_Adaptor *)cls)->cbs_create_1302_0 (arg1)); } @@ -284,9 +284,9 @@ static void _call_cbs_recognize_3741_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGesture *arg1 = args.read (heap); - QObject *arg2 = args.read (heap); - QEvent *arg3 = args.read (heap); + QGesture *arg1 = gsi::arg_reader() (args, heap); + QObject *arg2 = gsi::arg_reader() (args, heap); + QEvent *arg3 = gsi::arg_reader() (args, heap); ret.write > ((QFlags)((QGestureRecognizer_Adaptor *)cls)->cbs_recognize_3741_0 (arg1, arg2, arg3)); } @@ -309,7 +309,7 @@ static void _call_cbs_reset_1438_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGesture *arg1 = args.read (heap); + QGesture *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGestureRecognizer_Adaptor *)cls)->cbs_reset_1438_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsAnchor.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsAnchor.cc index 0e97e437c..9e13e5adb 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsAnchor.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsAnchor.cc @@ -371,7 +371,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsAnchor_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -395,7 +395,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsAnchor_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -437,7 +437,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsAnchor_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -461,7 +461,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsAnchor_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -486,8 +486,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsAnchor_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -592,7 +592,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsAnchor_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsAnchorLayout.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsAnchorLayout.cc index d69f6c1a8..fd0ad24d9 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsAnchorLayout.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsAnchorLayout.cc @@ -622,10 +622,10 @@ static void _call_cbs_getContentsMargins_c4704_0 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double *arg1 = args.read (heap); - double *arg2 = args.read (heap); - double *arg3 = args.read (heap); - double *arg4 = args.read (heap); + double *arg1 = gsi::arg_reader() (args, heap); + double *arg2 = gsi::arg_reader() (args, heap); + double *arg3 = gsi::arg_reader() (args, heap); + double *arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsAnchorLayout_Adaptor *)cls)->cbs_getContentsMargins_c4704_0 (arg1, arg2, arg3, arg4); } @@ -669,7 +669,7 @@ static void _call_cbs_itemAt_c767_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QGraphicsLayoutItem *)((QGraphicsAnchorLayout_Adaptor *)cls)->cbs_itemAt_c767_0 (arg1)); } @@ -692,7 +692,7 @@ static void _call_cbs_removeAt_767_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsAnchorLayout_Adaptor *)cls)->cbs_removeAt_767_0 (arg1); } @@ -716,7 +716,7 @@ static void _call_cbs_setGeometry_1862_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsAnchorLayout_Adaptor *)cls)->cbs_setGeometry_1862_0 (arg1); } @@ -780,8 +780,8 @@ static void _call_cbs_sizeHint_c3330_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QSizeF &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QSizeF &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QSizeF(), heap); ret.write ((QSizeF)((QGraphicsAnchorLayout_Adaptor *)cls)->cbs_sizeHint_c3330_1 (arg1, arg2)); } @@ -824,7 +824,7 @@ static void _call_cbs_widgetEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsAnchorLayout_Adaptor *)cls)->cbs_widgetEvent_1217_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsBlurEffect.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsBlurEffect.cc index a50d60ed8..25c535397 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsBlurEffect.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsBlurEffect.cc @@ -538,7 +538,7 @@ static void _call_cbs_boundingRectFor_c1862_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRectF)((QGraphicsBlurEffect_Adaptor *)cls)->cbs_boundingRectFor_c1862_0 (arg1)); } @@ -561,7 +561,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsBlurEffect_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -585,7 +585,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsBlurEffect_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -627,7 +627,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsBlurEffect_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -651,7 +651,7 @@ static void _call_cbs_draw_1426_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsBlurEffect_Adaptor *)cls)->cbs_draw_1426_0 (arg1); } @@ -712,7 +712,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsBlurEffect_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -737,8 +737,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsBlurEffect_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -861,7 +861,7 @@ static void _call_cbs_sourceChanged_3695_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsBlurEffect_Adaptor *)cls)->cbs_sourceChanged_3695_0 (arg1); } @@ -923,7 +923,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsBlurEffect_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsColorizeEffect.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsColorizeEffect.cc index 1be9c2938..5172b78f0 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsColorizeEffect.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsColorizeEffect.cc @@ -483,7 +483,7 @@ static void _call_cbs_boundingRectFor_c1862_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRectF)((QGraphicsColorizeEffect_Adaptor *)cls)->cbs_boundingRectFor_c1862_0 (arg1)); } @@ -506,7 +506,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsColorizeEffect_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -548,7 +548,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsColorizeEffect_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -590,7 +590,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsColorizeEffect_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -614,7 +614,7 @@ static void _call_cbs_draw_1426_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsColorizeEffect_Adaptor *)cls)->cbs_draw_1426_0 (arg1); } @@ -675,7 +675,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsColorizeEffect_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -700,8 +700,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsColorizeEffect_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -824,7 +824,7 @@ static void _call_cbs_sourceChanged_3695_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsColorizeEffect_Adaptor *)cls)->cbs_sourceChanged_3695_0 (arg1); } @@ -904,7 +904,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsColorizeEffect_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsDropShadowEffect.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsDropShadowEffect.cc index 84ec6dfbb..07ff5c822 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsDropShadowEffect.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsDropShadowEffect.cc @@ -685,7 +685,7 @@ static void _call_cbs_boundingRectFor_c1862_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRectF)((QGraphicsDropShadowEffect_Adaptor *)cls)->cbs_boundingRectFor_c1862_0 (arg1)); } @@ -708,7 +708,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsDropShadowEffect_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -750,7 +750,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsDropShadowEffect_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -792,7 +792,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsDropShadowEffect_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -816,7 +816,7 @@ static void _call_cbs_draw_1426_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsDropShadowEffect_Adaptor *)cls)->cbs_draw_1426_0 (arg1); } @@ -877,7 +877,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsDropShadowEffect_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -902,8 +902,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsDropShadowEffect_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1044,7 +1044,7 @@ static void _call_cbs_sourceChanged_3695_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsDropShadowEffect_Adaptor *)cls)->cbs_sourceChanged_3695_0 (arg1); } @@ -1106,7 +1106,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsDropShadowEffect_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsEffect.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsEffect.cc index 4ba97d488..7447221e6 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsEffect.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsEffect.cc @@ -485,7 +485,7 @@ static void _call_cbs_boundingRectFor_c1862_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRectF)((QGraphicsEffect_Adaptor *)cls)->cbs_boundingRectFor_c1862_0 (arg1)); } @@ -508,7 +508,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsEffect_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -532,7 +532,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsEffect_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -574,7 +574,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsEffect_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -598,7 +598,7 @@ static void _call_cbs_draw_1426_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsEffect_Adaptor *)cls)->cbs_draw_1426_0 (arg1); } @@ -659,7 +659,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsEffect_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -684,8 +684,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsEffect_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -808,7 +808,7 @@ static void _call_cbs_sourceChanged_3695_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsEffect_Adaptor *)cls)->cbs_sourceChanged_3695_0 (arg1); } @@ -870,7 +870,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsEffect_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsEllipseItem.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsEllipseItem.cc index d18ee8d91..de9701b8a 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsEllipseItem.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsEllipseItem.cc @@ -1078,7 +1078,7 @@ static void _call_cbs_advance_767_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsEllipseItem_Adaptor *)cls)->cbs_advance_767_0 (arg1); } @@ -1123,8 +1123,8 @@ static void _call_cbs_collidesWithItem_c4977_1 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape), heap); ret.write ((bool)((QGraphicsEllipseItem_Adaptor *)cls)->cbs_collidesWithItem_c4977_1 (arg1, arg2)); } @@ -1149,8 +1149,8 @@ static void _call_cbs_collidesWithPath_c4877_1 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape), heap); ret.write ((bool)((QGraphicsEllipseItem_Adaptor *)cls)->cbs_collidesWithPath_c4877_1 (arg1, arg2)); } @@ -1173,7 +1173,7 @@ static void _call_cbs_contains_c1986_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsEllipseItem_Adaptor *)cls)->cbs_contains_c1986_0 (arg1)); } @@ -1196,7 +1196,7 @@ static void _call_cbs_contextMenuEvent_3674_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneContextMenuEvent *arg1 = args.read (heap); + QGraphicsSceneContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsEllipseItem_Adaptor *)cls)->cbs_contextMenuEvent_3674_0 (arg1); } @@ -1220,7 +1220,7 @@ static void _call_cbs_dragEnterEvent_3315_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsEllipseItem_Adaptor *)cls)->cbs_dragEnterEvent_3315_0 (arg1); } @@ -1244,7 +1244,7 @@ static void _call_cbs_dragLeaveEvent_3315_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsEllipseItem_Adaptor *)cls)->cbs_dragLeaveEvent_3315_0 (arg1); } @@ -1268,7 +1268,7 @@ static void _call_cbs_dragMoveEvent_3315_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsEllipseItem_Adaptor *)cls)->cbs_dragMoveEvent_3315_0 (arg1); } @@ -1292,7 +1292,7 @@ static void _call_cbs_dropEvent_3315_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsEllipseItem_Adaptor *)cls)->cbs_dropEvent_3315_0 (arg1); } @@ -1316,7 +1316,7 @@ static void _call_cbs_extension_c2119_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVariant &arg1 = args.read (heap); + const QVariant &arg1 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QGraphicsEllipseItem_Adaptor *)cls)->cbs_extension_c2119_0 (arg1)); } @@ -1339,7 +1339,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsEllipseItem_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1363,7 +1363,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsEllipseItem_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -1387,7 +1387,7 @@ static void _call_cbs_hoverEnterEvent_3044_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsEllipseItem_Adaptor *)cls)->cbs_hoverEnterEvent_3044_0 (arg1); } @@ -1411,7 +1411,7 @@ static void _call_cbs_hoverLeaveEvent_3044_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsEllipseItem_Adaptor *)cls)->cbs_hoverLeaveEvent_3044_0 (arg1); } @@ -1435,7 +1435,7 @@ static void _call_cbs_hoverMoveEvent_3044_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsEllipseItem_Adaptor *)cls)->cbs_hoverMoveEvent_3044_0 (arg1); } @@ -1459,7 +1459,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsEllipseItem_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -1483,7 +1483,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QGraphicsEllipseItem_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -1506,7 +1506,7 @@ static void _call_cbs_isObscuredBy_c2614_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsEllipseItem_Adaptor *)cls)->cbs_isObscuredBy_c2614_0 (arg1)); } @@ -1531,8 +1531,8 @@ static void _call_cbs_itemChange_5658_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QVariant &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QGraphicsEllipseItem_Adaptor *)cls)->cbs_itemChange_5658_0 (arg1, arg2)); } @@ -1555,7 +1555,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsEllipseItem_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -1579,7 +1579,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsEllipseItem_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -1603,7 +1603,7 @@ static void _call_cbs_mouseDoubleClickEvent_3049_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsEllipseItem_Adaptor *)cls)->cbs_mouseDoubleClickEvent_3049_0 (arg1); } @@ -1627,7 +1627,7 @@ static void _call_cbs_mouseMoveEvent_3049_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsEllipseItem_Adaptor *)cls)->cbs_mouseMoveEvent_3049_0 (arg1); } @@ -1651,7 +1651,7 @@ static void _call_cbs_mousePressEvent_3049_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsEllipseItem_Adaptor *)cls)->cbs_mousePressEvent_3049_0 (arg1); } @@ -1675,7 +1675,7 @@ static void _call_cbs_mouseReleaseEvent_3049_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsEllipseItem_Adaptor *)cls)->cbs_mouseReleaseEvent_3049_0 (arg1); } @@ -1722,9 +1722,9 @@ static void _call_cbs_paint_6301_1 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QStyleOptionGraphicsItem *arg2 = args.read (heap); - QWidget *arg3 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionGraphicsItem *arg2 = gsi::arg_reader() (args, heap); + QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsEllipseItem_Adaptor *)cls)->cbs_paint_6301_1 (arg1, arg2, arg3); } @@ -1778,7 +1778,7 @@ static void _call_cbs_sceneEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsEllipseItem_Adaptor *)cls)->cbs_sceneEvent_1217_0 (arg1)); } @@ -1803,8 +1803,8 @@ static void _call_cbs_sceneEventFilter_3028_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsItem *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsEllipseItem_Adaptor *)cls)->cbs_sceneEventFilter_3028_0 (arg1, arg2)); } @@ -1829,8 +1829,8 @@ static void _call_cbs_setExtension_4817_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsEllipseItem_Adaptor *)cls)->cbs_setExtension_4817_0 (arg1, arg2); } @@ -1873,7 +1873,7 @@ static void _call_cbs_supportsExtension_c2806_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsEllipseItem_Adaptor *)cls)->cbs_supportsExtension_c2806_0 (arg1)); } @@ -1930,7 +1930,7 @@ static void _call_cbs_wheelEvent_3029_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneWheelEvent *arg1 = args.read (heap); + QGraphicsSceneWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsEllipseItem_Adaptor *)cls)->cbs_wheelEvent_3029_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsGridLayout.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsGridLayout.cc index d5ac51bf3..b184e67d9 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsGridLayout.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsGridLayout.cc @@ -1291,10 +1291,10 @@ static void _call_cbs_getContentsMargins_c4704_0 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double *arg1 = args.read (heap); - double *arg2 = args.read (heap); - double *arg3 = args.read (heap); - double *arg4 = args.read (heap); + double *arg1 = gsi::arg_reader() (args, heap); + double *arg2 = gsi::arg_reader() (args, heap); + double *arg3 = gsi::arg_reader() (args, heap); + double *arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsGridLayout_Adaptor *)cls)->cbs_getContentsMargins_c4704_0 (arg1, arg2, arg3, arg4); } @@ -1338,7 +1338,7 @@ static void _call_cbs_itemAt_c767_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QGraphicsLayoutItem *)((QGraphicsGridLayout_Adaptor *)cls)->cbs_itemAt_c767_0 (arg1)); } @@ -1361,7 +1361,7 @@ static void _call_cbs_removeAt_767_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsGridLayout_Adaptor *)cls)->cbs_removeAt_767_0 (arg1); } @@ -1385,7 +1385,7 @@ static void _call_cbs_setGeometry_1862_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsGridLayout_Adaptor *)cls)->cbs_setGeometry_1862_0 (arg1); } @@ -1449,8 +1449,8 @@ static void _call_cbs_sizeHint_c3330_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QSizeF &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QSizeF &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QSizeF(), heap); ret.write ((QSizeF)((QGraphicsGridLayout_Adaptor *)cls)->cbs_sizeHint_c3330_1 (arg1, arg2)); } @@ -1493,7 +1493,7 @@ static void _call_cbs_widgetEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsGridLayout_Adaptor *)cls)->cbs_widgetEvent_1217_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsItem.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsItem.cc index 510df0d33..ffd91fc5f 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsItem.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsItem.cc @@ -4382,7 +4382,7 @@ static void _call_cbs_advance_767_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem_Adaptor *)cls)->cbs_advance_767_0 (arg1); } @@ -4427,8 +4427,8 @@ static void _call_cbs_collidesWithItem_c4977_1 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape), heap); ret.write ((bool)((QGraphicsItem_Adaptor *)cls)->cbs_collidesWithItem_c4977_1 (arg1, arg2)); } @@ -4453,8 +4453,8 @@ static void _call_cbs_collidesWithPath_c4877_1 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape), heap); ret.write ((bool)((QGraphicsItem_Adaptor *)cls)->cbs_collidesWithPath_c4877_1 (arg1, arg2)); } @@ -4477,7 +4477,7 @@ static void _call_cbs_contains_c1986_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsItem_Adaptor *)cls)->cbs_contains_c1986_0 (arg1)); } @@ -4500,7 +4500,7 @@ static void _call_cbs_contextMenuEvent_3674_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneContextMenuEvent *arg1 = args.read (heap); + QGraphicsSceneContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem_Adaptor *)cls)->cbs_contextMenuEvent_3674_0 (arg1); } @@ -4524,7 +4524,7 @@ static void _call_cbs_dragEnterEvent_3315_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem_Adaptor *)cls)->cbs_dragEnterEvent_3315_0 (arg1); } @@ -4548,7 +4548,7 @@ static void _call_cbs_dragLeaveEvent_3315_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem_Adaptor *)cls)->cbs_dragLeaveEvent_3315_0 (arg1); } @@ -4572,7 +4572,7 @@ static void _call_cbs_dragMoveEvent_3315_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem_Adaptor *)cls)->cbs_dragMoveEvent_3315_0 (arg1); } @@ -4596,7 +4596,7 @@ static void _call_cbs_dropEvent_3315_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem_Adaptor *)cls)->cbs_dropEvent_3315_0 (arg1); } @@ -4620,7 +4620,7 @@ static void _call_cbs_extension_c2119_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVariant &arg1 = args.read (heap); + const QVariant &arg1 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QGraphicsItem_Adaptor *)cls)->cbs_extension_c2119_0 (arg1)); } @@ -4643,7 +4643,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -4667,7 +4667,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -4691,7 +4691,7 @@ static void _call_cbs_hoverEnterEvent_3044_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem_Adaptor *)cls)->cbs_hoverEnterEvent_3044_0 (arg1); } @@ -4715,7 +4715,7 @@ static void _call_cbs_hoverLeaveEvent_3044_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem_Adaptor *)cls)->cbs_hoverLeaveEvent_3044_0 (arg1); } @@ -4739,7 +4739,7 @@ static void _call_cbs_hoverMoveEvent_3044_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem_Adaptor *)cls)->cbs_hoverMoveEvent_3044_0 (arg1); } @@ -4763,7 +4763,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -4787,7 +4787,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QGraphicsItem_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -4810,7 +4810,7 @@ static void _call_cbs_isObscuredBy_c2614_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsItem_Adaptor *)cls)->cbs_isObscuredBy_c2614_0 (arg1)); } @@ -4835,8 +4835,8 @@ static void _call_cbs_itemChange_5658_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QVariant &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QGraphicsItem_Adaptor *)cls)->cbs_itemChange_5658_0 (arg1, arg2)); } @@ -4859,7 +4859,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -4883,7 +4883,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -4907,7 +4907,7 @@ static void _call_cbs_mouseDoubleClickEvent_3049_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem_Adaptor *)cls)->cbs_mouseDoubleClickEvent_3049_0 (arg1); } @@ -4931,7 +4931,7 @@ static void _call_cbs_mouseMoveEvent_3049_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem_Adaptor *)cls)->cbs_mouseMoveEvent_3049_0 (arg1); } @@ -4955,7 +4955,7 @@ static void _call_cbs_mousePressEvent_3049_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem_Adaptor *)cls)->cbs_mousePressEvent_3049_0 (arg1); } @@ -4979,7 +4979,7 @@ static void _call_cbs_mouseReleaseEvent_3049_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem_Adaptor *)cls)->cbs_mouseReleaseEvent_3049_0 (arg1); } @@ -5026,9 +5026,9 @@ static void _call_cbs_paint_6301_1 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QStyleOptionGraphicsItem *arg2 = args.read (heap); - QWidget *arg3 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionGraphicsItem *arg2 = gsi::arg_reader() (args, heap); + QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem_Adaptor *)cls)->cbs_paint_6301_1 (arg1, arg2, arg3); } @@ -5082,7 +5082,7 @@ static void _call_cbs_sceneEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsItem_Adaptor *)cls)->cbs_sceneEvent_1217_0 (arg1)); } @@ -5107,8 +5107,8 @@ static void _call_cbs_sceneEventFilter_3028_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsItem *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsItem_Adaptor *)cls)->cbs_sceneEventFilter_3028_0 (arg1, arg2)); } @@ -5133,8 +5133,8 @@ static void _call_cbs_setExtension_4817_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem_Adaptor *)cls)->cbs_setExtension_4817_0 (arg1, arg2); } @@ -5177,7 +5177,7 @@ static void _call_cbs_supportsExtension_c2806_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsItem_Adaptor *)cls)->cbs_supportsExtension_c2806_0 (arg1)); } @@ -5234,7 +5234,7 @@ static void _call_cbs_wheelEvent_3029_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneWheelEvent *arg1 = args.read (heap); + QGraphicsSceneWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem_Adaptor *)cls)->cbs_wheelEvent_3029_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsItemAnimation.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsItemAnimation.cc index 95f89a6cb..7ac3a4166 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsItemAnimation.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsItemAnimation.cc @@ -864,7 +864,7 @@ static void _call_cbs_afterAnimationStep_1071_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItemAnimation_Adaptor *)cls)->cbs_afterAnimationStep_1071_0 (arg1); } @@ -888,7 +888,7 @@ static void _call_cbs_beforeAnimationStep_1071_0 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItemAnimation_Adaptor *)cls)->cbs_beforeAnimationStep_1071_0 (arg1); } @@ -912,7 +912,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItemAnimation_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -936,7 +936,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItemAnimation_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -978,7 +978,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItemAnimation_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1002,7 +1002,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsItemAnimation_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1027,8 +1027,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsItemAnimation_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1133,7 +1133,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItemAnimation_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsItemGroup.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsItemGroup.cc index 8fc4becc2..796f5ca62 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsItemGroup.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsItemGroup.cc @@ -866,7 +866,7 @@ static void _call_cbs_advance_767_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItemGroup_Adaptor *)cls)->cbs_advance_767_0 (arg1); } @@ -911,8 +911,8 @@ static void _call_cbs_collidesWithItem_c4977_1 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape), heap); ret.write ((bool)((QGraphicsItemGroup_Adaptor *)cls)->cbs_collidesWithItem_c4977_1 (arg1, arg2)); } @@ -937,8 +937,8 @@ static void _call_cbs_collidesWithPath_c4877_1 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape), heap); ret.write ((bool)((QGraphicsItemGroup_Adaptor *)cls)->cbs_collidesWithPath_c4877_1 (arg1, arg2)); } @@ -961,7 +961,7 @@ static void _call_cbs_contains_c1986_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsItemGroup_Adaptor *)cls)->cbs_contains_c1986_0 (arg1)); } @@ -984,7 +984,7 @@ static void _call_cbs_contextMenuEvent_3674_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneContextMenuEvent *arg1 = args.read (heap); + QGraphicsSceneContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItemGroup_Adaptor *)cls)->cbs_contextMenuEvent_3674_0 (arg1); } @@ -1008,7 +1008,7 @@ static void _call_cbs_dragEnterEvent_3315_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItemGroup_Adaptor *)cls)->cbs_dragEnterEvent_3315_0 (arg1); } @@ -1032,7 +1032,7 @@ static void _call_cbs_dragLeaveEvent_3315_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItemGroup_Adaptor *)cls)->cbs_dragLeaveEvent_3315_0 (arg1); } @@ -1056,7 +1056,7 @@ static void _call_cbs_dragMoveEvent_3315_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItemGroup_Adaptor *)cls)->cbs_dragMoveEvent_3315_0 (arg1); } @@ -1080,7 +1080,7 @@ static void _call_cbs_dropEvent_3315_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItemGroup_Adaptor *)cls)->cbs_dropEvent_3315_0 (arg1); } @@ -1104,7 +1104,7 @@ static void _call_cbs_extension_c2119_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVariant &arg1 = args.read (heap); + const QVariant &arg1 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QGraphicsItemGroup_Adaptor *)cls)->cbs_extension_c2119_0 (arg1)); } @@ -1127,7 +1127,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItemGroup_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1151,7 +1151,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItemGroup_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -1175,7 +1175,7 @@ static void _call_cbs_hoverEnterEvent_3044_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItemGroup_Adaptor *)cls)->cbs_hoverEnterEvent_3044_0 (arg1); } @@ -1199,7 +1199,7 @@ static void _call_cbs_hoverLeaveEvent_3044_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItemGroup_Adaptor *)cls)->cbs_hoverLeaveEvent_3044_0 (arg1); } @@ -1223,7 +1223,7 @@ static void _call_cbs_hoverMoveEvent_3044_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItemGroup_Adaptor *)cls)->cbs_hoverMoveEvent_3044_0 (arg1); } @@ -1247,7 +1247,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItemGroup_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -1271,7 +1271,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QGraphicsItemGroup_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -1294,7 +1294,7 @@ static void _call_cbs_isObscuredBy_c2614_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsItemGroup_Adaptor *)cls)->cbs_isObscuredBy_c2614_0 (arg1)); } @@ -1319,8 +1319,8 @@ static void _call_cbs_itemChange_5658_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QVariant &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QGraphicsItemGroup_Adaptor *)cls)->cbs_itemChange_5658_0 (arg1, arg2)); } @@ -1343,7 +1343,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItemGroup_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -1367,7 +1367,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItemGroup_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -1391,7 +1391,7 @@ static void _call_cbs_mouseDoubleClickEvent_3049_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItemGroup_Adaptor *)cls)->cbs_mouseDoubleClickEvent_3049_0 (arg1); } @@ -1415,7 +1415,7 @@ static void _call_cbs_mouseMoveEvent_3049_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItemGroup_Adaptor *)cls)->cbs_mouseMoveEvent_3049_0 (arg1); } @@ -1439,7 +1439,7 @@ static void _call_cbs_mousePressEvent_3049_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItemGroup_Adaptor *)cls)->cbs_mousePressEvent_3049_0 (arg1); } @@ -1463,7 +1463,7 @@ static void _call_cbs_mouseReleaseEvent_3049_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItemGroup_Adaptor *)cls)->cbs_mouseReleaseEvent_3049_0 (arg1); } @@ -1510,9 +1510,9 @@ static void _call_cbs_paint_6301_1 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QStyleOptionGraphicsItem *arg2 = args.read (heap); - QWidget *arg3 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionGraphicsItem *arg2 = gsi::arg_reader() (args, heap); + QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItemGroup_Adaptor *)cls)->cbs_paint_6301_1 (arg1, arg2, arg3); } @@ -1566,7 +1566,7 @@ static void _call_cbs_sceneEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsItemGroup_Adaptor *)cls)->cbs_sceneEvent_1217_0 (arg1)); } @@ -1591,8 +1591,8 @@ static void _call_cbs_sceneEventFilter_3028_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsItem *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsItemGroup_Adaptor *)cls)->cbs_sceneEventFilter_3028_0 (arg1, arg2)); } @@ -1617,8 +1617,8 @@ static void _call_cbs_setExtension_4817_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItemGroup_Adaptor *)cls)->cbs_setExtension_4817_0 (arg1, arg2); } @@ -1661,7 +1661,7 @@ static void _call_cbs_supportsExtension_c2806_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsItemGroup_Adaptor *)cls)->cbs_supportsExtension_c2806_0 (arg1)); } @@ -1718,7 +1718,7 @@ static void _call_cbs_wheelEvent_3029_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneWheelEvent *arg1 = args.read (heap); + QGraphicsSceneWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItemGroup_Adaptor *)cls)->cbs_wheelEvent_3029_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsLayout.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsLayout.cc index 0bcaee99c..d82cd4a9a 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsLayout.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsLayout.cc @@ -562,10 +562,10 @@ static void _call_cbs_getContentsMargins_c4704_0 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double *arg1 = args.read (heap); - double *arg2 = args.read (heap); - double *arg3 = args.read (heap); - double *arg4 = args.read (heap); + double *arg1 = gsi::arg_reader() (args, heap); + double *arg2 = gsi::arg_reader() (args, heap); + double *arg3 = gsi::arg_reader() (args, heap); + double *arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLayout_Adaptor *)cls)->cbs_getContentsMargins_c4704_0 (arg1, arg2, arg3, arg4); } @@ -609,7 +609,7 @@ static void _call_cbs_itemAt_c767_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QGraphicsLayoutItem *)((QGraphicsLayout_Adaptor *)cls)->cbs_itemAt_c767_0 (arg1)); } @@ -632,7 +632,7 @@ static void _call_cbs_removeAt_767_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLayout_Adaptor *)cls)->cbs_removeAt_767_0 (arg1); } @@ -656,7 +656,7 @@ static void _call_cbs_setGeometry_1862_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLayout_Adaptor *)cls)->cbs_setGeometry_1862_0 (arg1); } @@ -720,8 +720,8 @@ static void _call_cbs_sizeHint_c3330_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QSizeF &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QSizeF &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QSizeF(), heap); ret.write ((QSizeF)((QGraphicsLayout_Adaptor *)cls)->cbs_sizeHint_c3330_1 (arg1, arg2)); } @@ -764,7 +764,7 @@ static void _call_cbs_widgetEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLayout_Adaptor *)cls)->cbs_widgetEvent_1217_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsLayoutItem.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsLayoutItem.cc index 23eca8e86..e83d89e91 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsLayoutItem.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsLayoutItem.cc @@ -877,10 +877,10 @@ static void _call_cbs_getContentsMargins_c4704_0 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double *arg1 = args.read (heap); - double *arg2 = args.read (heap); - double *arg3 = args.read (heap); - double *arg4 = args.read (heap); + double *arg1 = gsi::arg_reader() (args, heap); + double *arg2 = gsi::arg_reader() (args, heap); + double *arg3 = gsi::arg_reader() (args, heap); + double *arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLayoutItem_Adaptor *)cls)->cbs_getContentsMargins_c4704_0 (arg1, arg2, arg3, arg4); } @@ -904,7 +904,7 @@ static void _call_cbs_setGeometry_1862_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLayoutItem_Adaptor *)cls)->cbs_setGeometry_1862_0 (arg1); } @@ -968,8 +968,8 @@ static void _call_cbs_sizeHint_c3330_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QSizeF &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QSizeF &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QSizeF(), heap); ret.write ((QSizeF)((QGraphicsLayoutItem_Adaptor *)cls)->cbs_sizeHint_c3330_1 (arg1, arg2)); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsLineItem.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsLineItem.cc index 5308e581f..4295511a5 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsLineItem.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsLineItem.cc @@ -1041,7 +1041,7 @@ static void _call_cbs_advance_767_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLineItem_Adaptor *)cls)->cbs_advance_767_0 (arg1); } @@ -1086,8 +1086,8 @@ static void _call_cbs_collidesWithItem_c4977_1 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape), heap); ret.write ((bool)((QGraphicsLineItem_Adaptor *)cls)->cbs_collidesWithItem_c4977_1 (arg1, arg2)); } @@ -1112,8 +1112,8 @@ static void _call_cbs_collidesWithPath_c4877_1 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape), heap); ret.write ((bool)((QGraphicsLineItem_Adaptor *)cls)->cbs_collidesWithPath_c4877_1 (arg1, arg2)); } @@ -1136,7 +1136,7 @@ static void _call_cbs_contains_c1986_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsLineItem_Adaptor *)cls)->cbs_contains_c1986_0 (arg1)); } @@ -1159,7 +1159,7 @@ static void _call_cbs_contextMenuEvent_3674_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneContextMenuEvent *arg1 = args.read (heap); + QGraphicsSceneContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLineItem_Adaptor *)cls)->cbs_contextMenuEvent_3674_0 (arg1); } @@ -1183,7 +1183,7 @@ static void _call_cbs_dragEnterEvent_3315_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLineItem_Adaptor *)cls)->cbs_dragEnterEvent_3315_0 (arg1); } @@ -1207,7 +1207,7 @@ static void _call_cbs_dragLeaveEvent_3315_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLineItem_Adaptor *)cls)->cbs_dragLeaveEvent_3315_0 (arg1); } @@ -1231,7 +1231,7 @@ static void _call_cbs_dragMoveEvent_3315_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLineItem_Adaptor *)cls)->cbs_dragMoveEvent_3315_0 (arg1); } @@ -1255,7 +1255,7 @@ static void _call_cbs_dropEvent_3315_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLineItem_Adaptor *)cls)->cbs_dropEvent_3315_0 (arg1); } @@ -1279,7 +1279,7 @@ static void _call_cbs_extension_c2119_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVariant &arg1 = args.read (heap); + const QVariant &arg1 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QGraphicsLineItem_Adaptor *)cls)->cbs_extension_c2119_0 (arg1)); } @@ -1302,7 +1302,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLineItem_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1326,7 +1326,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLineItem_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -1350,7 +1350,7 @@ static void _call_cbs_hoverEnterEvent_3044_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLineItem_Adaptor *)cls)->cbs_hoverEnterEvent_3044_0 (arg1); } @@ -1374,7 +1374,7 @@ static void _call_cbs_hoverLeaveEvent_3044_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLineItem_Adaptor *)cls)->cbs_hoverLeaveEvent_3044_0 (arg1); } @@ -1398,7 +1398,7 @@ static void _call_cbs_hoverMoveEvent_3044_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLineItem_Adaptor *)cls)->cbs_hoverMoveEvent_3044_0 (arg1); } @@ -1422,7 +1422,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLineItem_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -1446,7 +1446,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QGraphicsLineItem_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -1469,7 +1469,7 @@ static void _call_cbs_isObscuredBy_c2614_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsLineItem_Adaptor *)cls)->cbs_isObscuredBy_c2614_0 (arg1)); } @@ -1494,8 +1494,8 @@ static void _call_cbs_itemChange_5658_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QVariant &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QGraphicsLineItem_Adaptor *)cls)->cbs_itemChange_5658_0 (arg1, arg2)); } @@ -1518,7 +1518,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLineItem_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -1542,7 +1542,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLineItem_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -1566,7 +1566,7 @@ static void _call_cbs_mouseDoubleClickEvent_3049_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLineItem_Adaptor *)cls)->cbs_mouseDoubleClickEvent_3049_0 (arg1); } @@ -1590,7 +1590,7 @@ static void _call_cbs_mouseMoveEvent_3049_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLineItem_Adaptor *)cls)->cbs_mouseMoveEvent_3049_0 (arg1); } @@ -1614,7 +1614,7 @@ static void _call_cbs_mousePressEvent_3049_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLineItem_Adaptor *)cls)->cbs_mousePressEvent_3049_0 (arg1); } @@ -1638,7 +1638,7 @@ static void _call_cbs_mouseReleaseEvent_3049_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLineItem_Adaptor *)cls)->cbs_mouseReleaseEvent_3049_0 (arg1); } @@ -1685,9 +1685,9 @@ static void _call_cbs_paint_6301_1 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QStyleOptionGraphicsItem *arg2 = args.read (heap); - QWidget *arg3 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionGraphicsItem *arg2 = gsi::arg_reader() (args, heap); + QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLineItem_Adaptor *)cls)->cbs_paint_6301_1 (arg1, arg2, arg3); } @@ -1741,7 +1741,7 @@ static void _call_cbs_sceneEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsLineItem_Adaptor *)cls)->cbs_sceneEvent_1217_0 (arg1)); } @@ -1766,8 +1766,8 @@ static void _call_cbs_sceneEventFilter_3028_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsItem *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsLineItem_Adaptor *)cls)->cbs_sceneEventFilter_3028_0 (arg1, arg2)); } @@ -1792,8 +1792,8 @@ static void _call_cbs_setExtension_4817_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLineItem_Adaptor *)cls)->cbs_setExtension_4817_0 (arg1, arg2); } @@ -1836,7 +1836,7 @@ static void _call_cbs_supportsExtension_c2806_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsLineItem_Adaptor *)cls)->cbs_supportsExtension_c2806_0 (arg1)); } @@ -1893,7 +1893,7 @@ static void _call_cbs_wheelEvent_3029_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneWheelEvent *arg1 = args.read (heap); + QGraphicsSceneWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLineItem_Adaptor *)cls)->cbs_wheelEvent_3029_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsLinearLayout.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsLinearLayout.cc index 1c5e994a6..7d65e00ea 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsLinearLayout.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsLinearLayout.cc @@ -805,10 +805,10 @@ static void _call_cbs_getContentsMargins_c4704_0 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double *arg1 = args.read (heap); - double *arg2 = args.read (heap); - double *arg3 = args.read (heap); - double *arg4 = args.read (heap); + double *arg1 = gsi::arg_reader() (args, heap); + double *arg2 = gsi::arg_reader() (args, heap); + double *arg3 = gsi::arg_reader() (args, heap); + double *arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLinearLayout_Adaptor *)cls)->cbs_getContentsMargins_c4704_0 (arg1, arg2, arg3, arg4); } @@ -852,7 +852,7 @@ static void _call_cbs_itemAt_c767_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QGraphicsLayoutItem *)((QGraphicsLinearLayout_Adaptor *)cls)->cbs_itemAt_c767_0 (arg1)); } @@ -875,7 +875,7 @@ static void _call_cbs_removeAt_767_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLinearLayout_Adaptor *)cls)->cbs_removeAt_767_0 (arg1); } @@ -899,7 +899,7 @@ static void _call_cbs_setGeometry_1862_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLinearLayout_Adaptor *)cls)->cbs_setGeometry_1862_0 (arg1); } @@ -963,8 +963,8 @@ static void _call_cbs_sizeHint_c3330_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QSizeF &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QSizeF &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QSizeF(), heap); ret.write ((QSizeF)((QGraphicsLinearLayout_Adaptor *)cls)->cbs_sizeHint_c3330_1 (arg1, arg2)); } @@ -1007,7 +1007,7 @@ static void _call_cbs_widgetEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLinearLayout_Adaptor *)cls)->cbs_widgetEvent_1217_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsObject.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsObject.cc index 7767145c3..cbb6f0833 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsObject.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsObject.cc @@ -1133,7 +1133,7 @@ static void _call_cbs_advance_767_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsObject_Adaptor *)cls)->cbs_advance_767_0 (arg1); } @@ -1176,7 +1176,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsObject_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1216,8 +1216,8 @@ static void _call_cbs_collidesWithItem_c4977_1 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape), heap); ret.write ((bool)((QGraphicsObject_Adaptor *)cls)->cbs_collidesWithItem_c4977_1 (arg1, arg2)); } @@ -1242,8 +1242,8 @@ static void _call_cbs_collidesWithPath_c4877_1 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape), heap); ret.write ((bool)((QGraphicsObject_Adaptor *)cls)->cbs_collidesWithPath_c4877_1 (arg1, arg2)); } @@ -1266,7 +1266,7 @@ static void _call_cbs_contains_c1986_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsObject_Adaptor *)cls)->cbs_contains_c1986_0 (arg1)); } @@ -1289,7 +1289,7 @@ static void _call_cbs_contextMenuEvent_3674_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneContextMenuEvent *arg1 = args.read (heap); + QGraphicsSceneContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsObject_Adaptor *)cls)->cbs_contextMenuEvent_3674_0 (arg1); } @@ -1313,7 +1313,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsObject_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1355,7 +1355,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsObject_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1379,7 +1379,7 @@ static void _call_cbs_dragEnterEvent_3315_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsObject_Adaptor *)cls)->cbs_dragEnterEvent_3315_0 (arg1); } @@ -1403,7 +1403,7 @@ static void _call_cbs_dragLeaveEvent_3315_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsObject_Adaptor *)cls)->cbs_dragLeaveEvent_3315_0 (arg1); } @@ -1427,7 +1427,7 @@ static void _call_cbs_dragMoveEvent_3315_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsObject_Adaptor *)cls)->cbs_dragMoveEvent_3315_0 (arg1); } @@ -1451,7 +1451,7 @@ static void _call_cbs_dropEvent_3315_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsObject_Adaptor *)cls)->cbs_dropEvent_3315_0 (arg1); } @@ -1489,7 +1489,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsObject_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1514,8 +1514,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsObject_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1538,7 +1538,7 @@ static void _call_cbs_extension_c2119_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVariant &arg1 = args.read (heap); + const QVariant &arg1 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QGraphicsObject_Adaptor *)cls)->cbs_extension_c2119_0 (arg1)); } @@ -1561,7 +1561,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsObject_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1585,7 +1585,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsObject_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -1623,7 +1623,7 @@ static void _call_cbs_hoverEnterEvent_3044_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsObject_Adaptor *)cls)->cbs_hoverEnterEvent_3044_0 (arg1); } @@ -1647,7 +1647,7 @@ static void _call_cbs_hoverLeaveEvent_3044_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsObject_Adaptor *)cls)->cbs_hoverLeaveEvent_3044_0 (arg1); } @@ -1671,7 +1671,7 @@ static void _call_cbs_hoverMoveEvent_3044_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsObject_Adaptor *)cls)->cbs_hoverMoveEvent_3044_0 (arg1); } @@ -1695,7 +1695,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsObject_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -1719,7 +1719,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QGraphicsObject_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -1742,7 +1742,7 @@ static void _call_cbs_isObscuredBy_c2614_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsObject_Adaptor *)cls)->cbs_isObscuredBy_c2614_0 (arg1)); } @@ -1785,8 +1785,8 @@ static void _call_cbs_itemChange_5658_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QVariant &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QGraphicsObject_Adaptor *)cls)->cbs_itemChange_5658_0 (arg1, arg2)); } @@ -1809,7 +1809,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsObject_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -1833,7 +1833,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsObject_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -1857,7 +1857,7 @@ static void _call_cbs_mouseDoubleClickEvent_3049_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsObject_Adaptor *)cls)->cbs_mouseDoubleClickEvent_3049_0 (arg1); } @@ -1881,7 +1881,7 @@ static void _call_cbs_mouseMoveEvent_3049_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsObject_Adaptor *)cls)->cbs_mouseMoveEvent_3049_0 (arg1); } @@ -1905,7 +1905,7 @@ static void _call_cbs_mousePressEvent_3049_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsObject_Adaptor *)cls)->cbs_mousePressEvent_3049_0 (arg1); } @@ -1929,7 +1929,7 @@ static void _call_cbs_mouseReleaseEvent_3049_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsObject_Adaptor *)cls)->cbs_mouseReleaseEvent_3049_0 (arg1); } @@ -2008,9 +2008,9 @@ static void _call_cbs_paint_6301_1 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QStyleOptionGraphicsItem *arg2 = args.read (heap); - QWidget *arg3 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionGraphicsItem *arg2 = gsi::arg_reader() (args, heap); + QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsObject_Adaptor *)cls)->cbs_paint_6301_1 (arg1, arg2, arg3); } @@ -2124,7 +2124,7 @@ static void _call_cbs_sceneEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsObject_Adaptor *)cls)->cbs_sceneEvent_1217_0 (arg1)); } @@ -2149,8 +2149,8 @@ static void _call_cbs_sceneEventFilter_3028_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsItem *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsObject_Adaptor *)cls)->cbs_sceneEventFilter_3028_0 (arg1, arg2)); } @@ -2203,8 +2203,8 @@ static void _call_cbs_setExtension_4817_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsObject_Adaptor *)cls)->cbs_setExtension_4817_0 (arg1, arg2); } @@ -2247,7 +2247,7 @@ static void _call_cbs_supportsExtension_c2806_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsObject_Adaptor *)cls)->cbs_supportsExtension_c2806_0 (arg1)); } @@ -2270,7 +2270,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsObject_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2342,7 +2342,7 @@ static void _call_cbs_wheelEvent_3029_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneWheelEvent *arg1 = args.read (heap); + QGraphicsSceneWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsObject_Adaptor *)cls)->cbs_wheelEvent_3029_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsOpacityEffect.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsOpacityEffect.cc index f33ed5339..b4f6bc9a8 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsOpacityEffect.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsOpacityEffect.cc @@ -483,7 +483,7 @@ static void _call_cbs_boundingRectFor_c1862_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRectF)((QGraphicsOpacityEffect_Adaptor *)cls)->cbs_boundingRectFor_c1862_0 (arg1)); } @@ -506,7 +506,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsOpacityEffect_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -530,7 +530,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsOpacityEffect_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -572,7 +572,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsOpacityEffect_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -596,7 +596,7 @@ static void _call_cbs_draw_1426_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsOpacityEffect_Adaptor *)cls)->cbs_draw_1426_0 (arg1); } @@ -657,7 +657,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsOpacityEffect_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -682,8 +682,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsOpacityEffect_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -842,7 +842,7 @@ static void _call_cbs_sourceChanged_3695_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsOpacityEffect_Adaptor *)cls)->cbs_sourceChanged_3695_0 (arg1); } @@ -904,7 +904,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsOpacityEffect_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsPathItem.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsPathItem.cc index 4ecec6d48..9518decea 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsPathItem.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsPathItem.cc @@ -932,7 +932,7 @@ static void _call_cbs_advance_767_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPathItem_Adaptor *)cls)->cbs_advance_767_0 (arg1); } @@ -977,8 +977,8 @@ static void _call_cbs_collidesWithItem_c4977_1 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape), heap); ret.write ((bool)((QGraphicsPathItem_Adaptor *)cls)->cbs_collidesWithItem_c4977_1 (arg1, arg2)); } @@ -1003,8 +1003,8 @@ static void _call_cbs_collidesWithPath_c4877_1 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape), heap); ret.write ((bool)((QGraphicsPathItem_Adaptor *)cls)->cbs_collidesWithPath_c4877_1 (arg1, arg2)); } @@ -1027,7 +1027,7 @@ static void _call_cbs_contains_c1986_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsPathItem_Adaptor *)cls)->cbs_contains_c1986_0 (arg1)); } @@ -1050,7 +1050,7 @@ static void _call_cbs_contextMenuEvent_3674_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneContextMenuEvent *arg1 = args.read (heap); + QGraphicsSceneContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPathItem_Adaptor *)cls)->cbs_contextMenuEvent_3674_0 (arg1); } @@ -1074,7 +1074,7 @@ static void _call_cbs_dragEnterEvent_3315_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPathItem_Adaptor *)cls)->cbs_dragEnterEvent_3315_0 (arg1); } @@ -1098,7 +1098,7 @@ static void _call_cbs_dragLeaveEvent_3315_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPathItem_Adaptor *)cls)->cbs_dragLeaveEvent_3315_0 (arg1); } @@ -1122,7 +1122,7 @@ static void _call_cbs_dragMoveEvent_3315_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPathItem_Adaptor *)cls)->cbs_dragMoveEvent_3315_0 (arg1); } @@ -1146,7 +1146,7 @@ static void _call_cbs_dropEvent_3315_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPathItem_Adaptor *)cls)->cbs_dropEvent_3315_0 (arg1); } @@ -1170,7 +1170,7 @@ static void _call_cbs_extension_c2119_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVariant &arg1 = args.read (heap); + const QVariant &arg1 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QGraphicsPathItem_Adaptor *)cls)->cbs_extension_c2119_0 (arg1)); } @@ -1193,7 +1193,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPathItem_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1217,7 +1217,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPathItem_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -1241,7 +1241,7 @@ static void _call_cbs_hoverEnterEvent_3044_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPathItem_Adaptor *)cls)->cbs_hoverEnterEvent_3044_0 (arg1); } @@ -1265,7 +1265,7 @@ static void _call_cbs_hoverLeaveEvent_3044_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPathItem_Adaptor *)cls)->cbs_hoverLeaveEvent_3044_0 (arg1); } @@ -1289,7 +1289,7 @@ static void _call_cbs_hoverMoveEvent_3044_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPathItem_Adaptor *)cls)->cbs_hoverMoveEvent_3044_0 (arg1); } @@ -1313,7 +1313,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPathItem_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -1337,7 +1337,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QGraphicsPathItem_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -1360,7 +1360,7 @@ static void _call_cbs_isObscuredBy_c2614_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsPathItem_Adaptor *)cls)->cbs_isObscuredBy_c2614_0 (arg1)); } @@ -1385,8 +1385,8 @@ static void _call_cbs_itemChange_5658_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QVariant &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QGraphicsPathItem_Adaptor *)cls)->cbs_itemChange_5658_0 (arg1, arg2)); } @@ -1409,7 +1409,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPathItem_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -1433,7 +1433,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPathItem_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -1457,7 +1457,7 @@ static void _call_cbs_mouseDoubleClickEvent_3049_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPathItem_Adaptor *)cls)->cbs_mouseDoubleClickEvent_3049_0 (arg1); } @@ -1481,7 +1481,7 @@ static void _call_cbs_mouseMoveEvent_3049_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPathItem_Adaptor *)cls)->cbs_mouseMoveEvent_3049_0 (arg1); } @@ -1505,7 +1505,7 @@ static void _call_cbs_mousePressEvent_3049_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPathItem_Adaptor *)cls)->cbs_mousePressEvent_3049_0 (arg1); } @@ -1529,7 +1529,7 @@ static void _call_cbs_mouseReleaseEvent_3049_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPathItem_Adaptor *)cls)->cbs_mouseReleaseEvent_3049_0 (arg1); } @@ -1576,9 +1576,9 @@ static void _call_cbs_paint_6301_1 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QStyleOptionGraphicsItem *arg2 = args.read (heap); - QWidget *arg3 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionGraphicsItem *arg2 = gsi::arg_reader() (args, heap); + QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPathItem_Adaptor *)cls)->cbs_paint_6301_1 (arg1, arg2, arg3); } @@ -1632,7 +1632,7 @@ static void _call_cbs_sceneEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsPathItem_Adaptor *)cls)->cbs_sceneEvent_1217_0 (arg1)); } @@ -1657,8 +1657,8 @@ static void _call_cbs_sceneEventFilter_3028_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsItem *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsPathItem_Adaptor *)cls)->cbs_sceneEventFilter_3028_0 (arg1, arg2)); } @@ -1683,8 +1683,8 @@ static void _call_cbs_setExtension_4817_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPathItem_Adaptor *)cls)->cbs_setExtension_4817_0 (arg1, arg2); } @@ -1727,7 +1727,7 @@ static void _call_cbs_supportsExtension_c2806_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsPathItem_Adaptor *)cls)->cbs_supportsExtension_c2806_0 (arg1)); } @@ -1784,7 +1784,7 @@ static void _call_cbs_wheelEvent_3029_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneWheelEvent *arg1 = args.read (heap); + QGraphicsSceneWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPathItem_Adaptor *)cls)->cbs_wheelEvent_3029_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsPixmapItem.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsPixmapItem.cc index ffa490503..ded1ad805 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsPixmapItem.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsPixmapItem.cc @@ -1066,7 +1066,7 @@ static void _call_cbs_advance_767_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPixmapItem_Adaptor *)cls)->cbs_advance_767_0 (arg1); } @@ -1111,8 +1111,8 @@ static void _call_cbs_collidesWithItem_c4977_1 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape), heap); ret.write ((bool)((QGraphicsPixmapItem_Adaptor *)cls)->cbs_collidesWithItem_c4977_1 (arg1, arg2)); } @@ -1137,8 +1137,8 @@ static void _call_cbs_collidesWithPath_c4877_1 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape), heap); ret.write ((bool)((QGraphicsPixmapItem_Adaptor *)cls)->cbs_collidesWithPath_c4877_1 (arg1, arg2)); } @@ -1161,7 +1161,7 @@ static void _call_cbs_contains_c1986_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsPixmapItem_Adaptor *)cls)->cbs_contains_c1986_0 (arg1)); } @@ -1184,7 +1184,7 @@ static void _call_cbs_contextMenuEvent_3674_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneContextMenuEvent *arg1 = args.read (heap); + QGraphicsSceneContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPixmapItem_Adaptor *)cls)->cbs_contextMenuEvent_3674_0 (arg1); } @@ -1208,7 +1208,7 @@ static void _call_cbs_dragEnterEvent_3315_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPixmapItem_Adaptor *)cls)->cbs_dragEnterEvent_3315_0 (arg1); } @@ -1232,7 +1232,7 @@ static void _call_cbs_dragLeaveEvent_3315_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPixmapItem_Adaptor *)cls)->cbs_dragLeaveEvent_3315_0 (arg1); } @@ -1256,7 +1256,7 @@ static void _call_cbs_dragMoveEvent_3315_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPixmapItem_Adaptor *)cls)->cbs_dragMoveEvent_3315_0 (arg1); } @@ -1280,7 +1280,7 @@ static void _call_cbs_dropEvent_3315_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPixmapItem_Adaptor *)cls)->cbs_dropEvent_3315_0 (arg1); } @@ -1304,7 +1304,7 @@ static void _call_cbs_extension_c2119_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVariant &arg1 = args.read (heap); + const QVariant &arg1 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QGraphicsPixmapItem_Adaptor *)cls)->cbs_extension_c2119_0 (arg1)); } @@ -1327,7 +1327,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPixmapItem_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1351,7 +1351,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPixmapItem_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -1375,7 +1375,7 @@ static void _call_cbs_hoverEnterEvent_3044_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPixmapItem_Adaptor *)cls)->cbs_hoverEnterEvent_3044_0 (arg1); } @@ -1399,7 +1399,7 @@ static void _call_cbs_hoverLeaveEvent_3044_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPixmapItem_Adaptor *)cls)->cbs_hoverLeaveEvent_3044_0 (arg1); } @@ -1423,7 +1423,7 @@ static void _call_cbs_hoverMoveEvent_3044_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPixmapItem_Adaptor *)cls)->cbs_hoverMoveEvent_3044_0 (arg1); } @@ -1447,7 +1447,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPixmapItem_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -1471,7 +1471,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QGraphicsPixmapItem_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -1494,7 +1494,7 @@ static void _call_cbs_isObscuredBy_c2614_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsPixmapItem_Adaptor *)cls)->cbs_isObscuredBy_c2614_0 (arg1)); } @@ -1519,8 +1519,8 @@ static void _call_cbs_itemChange_5658_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QVariant &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QGraphicsPixmapItem_Adaptor *)cls)->cbs_itemChange_5658_0 (arg1, arg2)); } @@ -1543,7 +1543,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPixmapItem_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -1567,7 +1567,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPixmapItem_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -1591,7 +1591,7 @@ static void _call_cbs_mouseDoubleClickEvent_3049_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPixmapItem_Adaptor *)cls)->cbs_mouseDoubleClickEvent_3049_0 (arg1); } @@ -1615,7 +1615,7 @@ static void _call_cbs_mouseMoveEvent_3049_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPixmapItem_Adaptor *)cls)->cbs_mouseMoveEvent_3049_0 (arg1); } @@ -1639,7 +1639,7 @@ static void _call_cbs_mousePressEvent_3049_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPixmapItem_Adaptor *)cls)->cbs_mousePressEvent_3049_0 (arg1); } @@ -1663,7 +1663,7 @@ static void _call_cbs_mouseReleaseEvent_3049_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPixmapItem_Adaptor *)cls)->cbs_mouseReleaseEvent_3049_0 (arg1); } @@ -1710,9 +1710,9 @@ static void _call_cbs_paint_6301_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QStyleOptionGraphicsItem *arg2 = args.read (heap); - QWidget *arg3 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionGraphicsItem *arg2 = gsi::arg_reader() (args, heap); + QWidget *arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPixmapItem_Adaptor *)cls)->cbs_paint_6301_0 (arg1, arg2, arg3); } @@ -1766,7 +1766,7 @@ static void _call_cbs_sceneEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsPixmapItem_Adaptor *)cls)->cbs_sceneEvent_1217_0 (arg1)); } @@ -1791,8 +1791,8 @@ static void _call_cbs_sceneEventFilter_3028_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsItem *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsPixmapItem_Adaptor *)cls)->cbs_sceneEventFilter_3028_0 (arg1, arg2)); } @@ -1817,8 +1817,8 @@ static void _call_cbs_setExtension_4817_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPixmapItem_Adaptor *)cls)->cbs_setExtension_4817_0 (arg1, arg2); } @@ -1861,7 +1861,7 @@ static void _call_cbs_supportsExtension_c2806_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsPixmapItem_Adaptor *)cls)->cbs_supportsExtension_c2806_0 (arg1)); } @@ -1918,7 +1918,7 @@ static void _call_cbs_wheelEvent_3029_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneWheelEvent *arg1 = args.read (heap); + QGraphicsSceneWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPixmapItem_Adaptor *)cls)->cbs_wheelEvent_3029_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsPolygonItem.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsPolygonItem.cc index 58d1a37db..e657366a4 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsPolygonItem.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsPolygonItem.cc @@ -969,7 +969,7 @@ static void _call_cbs_advance_767_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPolygonItem_Adaptor *)cls)->cbs_advance_767_0 (arg1); } @@ -1014,8 +1014,8 @@ static void _call_cbs_collidesWithItem_c4977_1 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape), heap); ret.write ((bool)((QGraphicsPolygonItem_Adaptor *)cls)->cbs_collidesWithItem_c4977_1 (arg1, arg2)); } @@ -1040,8 +1040,8 @@ static void _call_cbs_collidesWithPath_c4877_1 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape), heap); ret.write ((bool)((QGraphicsPolygonItem_Adaptor *)cls)->cbs_collidesWithPath_c4877_1 (arg1, arg2)); } @@ -1064,7 +1064,7 @@ static void _call_cbs_contains_c1986_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsPolygonItem_Adaptor *)cls)->cbs_contains_c1986_0 (arg1)); } @@ -1087,7 +1087,7 @@ static void _call_cbs_contextMenuEvent_3674_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneContextMenuEvent *arg1 = args.read (heap); + QGraphicsSceneContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPolygonItem_Adaptor *)cls)->cbs_contextMenuEvent_3674_0 (arg1); } @@ -1111,7 +1111,7 @@ static void _call_cbs_dragEnterEvent_3315_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPolygonItem_Adaptor *)cls)->cbs_dragEnterEvent_3315_0 (arg1); } @@ -1135,7 +1135,7 @@ static void _call_cbs_dragLeaveEvent_3315_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPolygonItem_Adaptor *)cls)->cbs_dragLeaveEvent_3315_0 (arg1); } @@ -1159,7 +1159,7 @@ static void _call_cbs_dragMoveEvent_3315_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPolygonItem_Adaptor *)cls)->cbs_dragMoveEvent_3315_0 (arg1); } @@ -1183,7 +1183,7 @@ static void _call_cbs_dropEvent_3315_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPolygonItem_Adaptor *)cls)->cbs_dropEvent_3315_0 (arg1); } @@ -1207,7 +1207,7 @@ static void _call_cbs_extension_c2119_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVariant &arg1 = args.read (heap); + const QVariant &arg1 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QGraphicsPolygonItem_Adaptor *)cls)->cbs_extension_c2119_0 (arg1)); } @@ -1230,7 +1230,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPolygonItem_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1254,7 +1254,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPolygonItem_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -1278,7 +1278,7 @@ static void _call_cbs_hoverEnterEvent_3044_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPolygonItem_Adaptor *)cls)->cbs_hoverEnterEvent_3044_0 (arg1); } @@ -1302,7 +1302,7 @@ static void _call_cbs_hoverLeaveEvent_3044_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPolygonItem_Adaptor *)cls)->cbs_hoverLeaveEvent_3044_0 (arg1); } @@ -1326,7 +1326,7 @@ static void _call_cbs_hoverMoveEvent_3044_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPolygonItem_Adaptor *)cls)->cbs_hoverMoveEvent_3044_0 (arg1); } @@ -1350,7 +1350,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPolygonItem_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -1374,7 +1374,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QGraphicsPolygonItem_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -1397,7 +1397,7 @@ static void _call_cbs_isObscuredBy_c2614_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsPolygonItem_Adaptor *)cls)->cbs_isObscuredBy_c2614_0 (arg1)); } @@ -1422,8 +1422,8 @@ static void _call_cbs_itemChange_5658_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QVariant &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QGraphicsPolygonItem_Adaptor *)cls)->cbs_itemChange_5658_0 (arg1, arg2)); } @@ -1446,7 +1446,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPolygonItem_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -1470,7 +1470,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPolygonItem_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -1494,7 +1494,7 @@ static void _call_cbs_mouseDoubleClickEvent_3049_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPolygonItem_Adaptor *)cls)->cbs_mouseDoubleClickEvent_3049_0 (arg1); } @@ -1518,7 +1518,7 @@ static void _call_cbs_mouseMoveEvent_3049_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPolygonItem_Adaptor *)cls)->cbs_mouseMoveEvent_3049_0 (arg1); } @@ -1542,7 +1542,7 @@ static void _call_cbs_mousePressEvent_3049_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPolygonItem_Adaptor *)cls)->cbs_mousePressEvent_3049_0 (arg1); } @@ -1566,7 +1566,7 @@ static void _call_cbs_mouseReleaseEvent_3049_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPolygonItem_Adaptor *)cls)->cbs_mouseReleaseEvent_3049_0 (arg1); } @@ -1613,9 +1613,9 @@ static void _call_cbs_paint_6301_1 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QStyleOptionGraphicsItem *arg2 = args.read (heap); - QWidget *arg3 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionGraphicsItem *arg2 = gsi::arg_reader() (args, heap); + QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPolygonItem_Adaptor *)cls)->cbs_paint_6301_1 (arg1, arg2, arg3); } @@ -1669,7 +1669,7 @@ static void _call_cbs_sceneEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsPolygonItem_Adaptor *)cls)->cbs_sceneEvent_1217_0 (arg1)); } @@ -1694,8 +1694,8 @@ static void _call_cbs_sceneEventFilter_3028_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsItem *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsPolygonItem_Adaptor *)cls)->cbs_sceneEventFilter_3028_0 (arg1, arg2)); } @@ -1720,8 +1720,8 @@ static void _call_cbs_setExtension_4817_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPolygonItem_Adaptor *)cls)->cbs_setExtension_4817_0 (arg1, arg2); } @@ -1764,7 +1764,7 @@ static void _call_cbs_supportsExtension_c2806_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsPolygonItem_Adaptor *)cls)->cbs_supportsExtension_c2806_0 (arg1)); } @@ -1821,7 +1821,7 @@ static void _call_cbs_wheelEvent_3029_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneWheelEvent *arg1 = args.read (heap); + QGraphicsSceneWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPolygonItem_Adaptor *)cls)->cbs_wheelEvent_3029_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsProxyWidget.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsProxyWidget.cc index 336537624..cb27e6a48 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsProxyWidget.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsProxyWidget.cc @@ -1545,7 +1545,7 @@ static void _call_cbs_advance_767_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsProxyWidget_Adaptor *)cls)->cbs_advance_767_0 (arg1); } @@ -1588,7 +1588,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsProxyWidget_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1612,7 +1612,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsProxyWidget_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1650,7 +1650,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsProxyWidget_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1676,8 +1676,8 @@ static void _call_cbs_collidesWithItem_c4977_1 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape), heap); ret.write ((bool)((QGraphicsProxyWidget_Adaptor *)cls)->cbs_collidesWithItem_c4977_1 (arg1, arg2)); } @@ -1702,8 +1702,8 @@ static void _call_cbs_collidesWithPath_c4877_1 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape), heap); ret.write ((bool)((QGraphicsProxyWidget_Adaptor *)cls)->cbs_collidesWithPath_c4877_1 (arg1, arg2)); } @@ -1726,7 +1726,7 @@ static void _call_cbs_contains_c1986_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsProxyWidget_Adaptor *)cls)->cbs_contains_c1986_0 (arg1)); } @@ -1749,7 +1749,7 @@ static void _call_cbs_contextMenuEvent_3674_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneContextMenuEvent *arg1 = args.read (heap); + QGraphicsSceneContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsProxyWidget_Adaptor *)cls)->cbs_contextMenuEvent_3674_0 (arg1); } @@ -1773,7 +1773,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsProxyWidget_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1815,7 +1815,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsProxyWidget_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1839,7 +1839,7 @@ static void _call_cbs_dragEnterEvent_3315_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsProxyWidget_Adaptor *)cls)->cbs_dragEnterEvent_3315_0 (arg1); } @@ -1863,7 +1863,7 @@ static void _call_cbs_dragLeaveEvent_3315_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsProxyWidget_Adaptor *)cls)->cbs_dragLeaveEvent_3315_0 (arg1); } @@ -1887,7 +1887,7 @@ static void _call_cbs_dragMoveEvent_3315_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsProxyWidget_Adaptor *)cls)->cbs_dragMoveEvent_3315_0 (arg1); } @@ -1911,7 +1911,7 @@ static void _call_cbs_dropEvent_3315_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsProxyWidget_Adaptor *)cls)->cbs_dropEvent_3315_0 (arg1); } @@ -1949,7 +1949,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsProxyWidget_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1974,8 +1974,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsProxyWidget_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1998,7 +1998,7 @@ static void _call_cbs_extension_c2119_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVariant &arg1 = args.read (heap); + const QVariant &arg1 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QGraphicsProxyWidget_Adaptor *)cls)->cbs_extension_c2119_0 (arg1)); } @@ -2021,7 +2021,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsProxyWidget_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -2045,7 +2045,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsProxyWidget_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -2068,7 +2068,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsProxyWidget_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -2112,10 +2112,10 @@ static void _call_cbs_getContentsMargins_c4704_0 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double *arg1 = args.read (heap); - double *arg2 = args.read (heap); - double *arg3 = args.read (heap); - double *arg4 = args.read (heap); + double *arg1 = gsi::arg_reader() (args, heap); + double *arg2 = gsi::arg_reader() (args, heap); + double *arg3 = gsi::arg_reader() (args, heap); + double *arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsProxyWidget_Adaptor *)cls)->cbs_getContentsMargins_c4704_0 (arg1, arg2, arg3, arg4); } @@ -2139,7 +2139,7 @@ static void _call_cbs_grabKeyboardEvent_1217_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsProxyWidget_Adaptor *)cls)->cbs_grabKeyboardEvent_1217_0 (arg1); } @@ -2163,7 +2163,7 @@ static void _call_cbs_grabMouseEvent_1217_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsProxyWidget_Adaptor *)cls)->cbs_grabMouseEvent_1217_0 (arg1); } @@ -2201,7 +2201,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsProxyWidget_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -2225,7 +2225,7 @@ static void _call_cbs_hoverEnterEvent_3044_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsProxyWidget_Adaptor *)cls)->cbs_hoverEnterEvent_3044_0 (arg1); } @@ -2249,7 +2249,7 @@ static void _call_cbs_hoverLeaveEvent_3044_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsProxyWidget_Adaptor *)cls)->cbs_hoverLeaveEvent_3044_0 (arg1); } @@ -2273,7 +2273,7 @@ static void _call_cbs_hoverMoveEvent_3044_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsProxyWidget_Adaptor *)cls)->cbs_hoverMoveEvent_3044_0 (arg1); } @@ -2297,7 +2297,7 @@ static void _call_cbs_initStyleOption_c1865_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOption *arg1 = args.read (heap); + QStyleOption *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsProxyWidget_Adaptor *)cls)->cbs_initStyleOption_c1865_0 (arg1); } @@ -2321,7 +2321,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsProxyWidget_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2345,7 +2345,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QGraphicsProxyWidget_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2368,7 +2368,7 @@ static void _call_cbs_isObscuredBy_c2614_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsProxyWidget_Adaptor *)cls)->cbs_isObscuredBy_c2614_0 (arg1)); } @@ -2411,8 +2411,8 @@ static void _call_cbs_itemChange_5658_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QVariant &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QGraphicsProxyWidget_Adaptor *)cls)->cbs_itemChange_5658_0 (arg1, arg2)); } @@ -2435,7 +2435,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsProxyWidget_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2459,7 +2459,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsProxyWidget_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2497,7 +2497,7 @@ static void _call_cbs_mouseDoubleClickEvent_3049_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsProxyWidget_Adaptor *)cls)->cbs_mouseDoubleClickEvent_3049_0 (arg1); } @@ -2521,7 +2521,7 @@ static void _call_cbs_mouseMoveEvent_3049_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsProxyWidget_Adaptor *)cls)->cbs_mouseMoveEvent_3049_0 (arg1); } @@ -2545,7 +2545,7 @@ static void _call_cbs_mousePressEvent_3049_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsProxyWidget_Adaptor *)cls)->cbs_mousePressEvent_3049_0 (arg1); } @@ -2569,7 +2569,7 @@ static void _call_cbs_mouseReleaseEvent_3049_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsProxyWidget_Adaptor *)cls)->cbs_mouseReleaseEvent_3049_0 (arg1); } @@ -2593,7 +2593,7 @@ static void _call_cbs_moveEvent_2935_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMoveEvent *arg1 = args.read (heap); + QGraphicsSceneMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsProxyWidget_Adaptor *)cls)->cbs_moveEvent_2935_0 (arg1); } @@ -2690,9 +2690,9 @@ static void _call_cbs_paint_6301_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QStyleOptionGraphicsItem *arg2 = args.read (heap); - QWidget *arg3 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionGraphicsItem *arg2 = gsi::arg_reader() (args, heap); + QWidget *arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsProxyWidget_Adaptor *)cls)->cbs_paint_6301_0 (arg1, arg2, arg3); } @@ -2720,9 +2720,9 @@ static void _call_cbs_paintWindowFrame_6301_1 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QStyleOptionGraphicsItem *arg2 = args.read (heap); - QWidget *arg3 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionGraphicsItem *arg2 = gsi::arg_reader() (args, heap); + QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsProxyWidget_Adaptor *)cls)->cbs_paintWindowFrame_6301_1 (arg1, arg2, arg3); } @@ -2797,8 +2797,8 @@ static void _call_cbs_propertyChange_4036_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QGraphicsProxyWidget_Adaptor *)cls)->cbs_propertyChange_4036_0 (arg1, arg2)); } @@ -2854,7 +2854,7 @@ static void _call_cbs_resizeEvent_3154_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneResizeEvent *arg1 = args.read (heap); + QGraphicsSceneResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsProxyWidget_Adaptor *)cls)->cbs_resizeEvent_3154_0 (arg1); } @@ -2906,7 +2906,7 @@ static void _call_cbs_sceneEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsProxyWidget_Adaptor *)cls)->cbs_sceneEvent_1217_0 (arg1)); } @@ -2931,8 +2931,8 @@ static void _call_cbs_sceneEventFilter_3028_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsItem *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsProxyWidget_Adaptor *)cls)->cbs_sceneEventFilter_3028_0 (arg1, arg2)); } @@ -2985,8 +2985,8 @@ static void _call_cbs_setExtension_4817_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsProxyWidget_Adaptor *)cls)->cbs_setExtension_4817_0 (arg1, arg2); } @@ -3010,7 +3010,7 @@ static void _call_cbs_setGeometry_1862_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsProxyWidget_Adaptor *)cls)->cbs_setGeometry_1862_0 (arg1); } @@ -3091,7 +3091,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsProxyWidget_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -3117,8 +3117,8 @@ static void _call_cbs_sizeHint_c3330_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QSizeF &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QSizeF &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QSizeF(), heap); ret.write ((QSizeF)((QGraphicsProxyWidget_Adaptor *)cls)->cbs_sizeHint_c3330_1 (arg1, arg2)); } @@ -3141,7 +3141,7 @@ static void _call_cbs_supportsExtension_c2806_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsProxyWidget_Adaptor *)cls)->cbs_supportsExtension_c2806_0 (arg1)); } @@ -3164,7 +3164,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsProxyWidget_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -3207,7 +3207,7 @@ static void _call_cbs_ungrabKeyboardEvent_1217_0 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsProxyWidget_Adaptor *)cls)->cbs_ungrabKeyboardEvent_1217_0 (arg1); } @@ -3231,7 +3231,7 @@ static void _call_cbs_ungrabMouseEvent_1217_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsProxyWidget_Adaptor *)cls)->cbs_ungrabMouseEvent_1217_0 (arg1); } @@ -3304,7 +3304,7 @@ static void _call_cbs_wheelEvent_3029_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneWheelEvent *arg1 = args.read (heap); + QGraphicsSceneWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsProxyWidget_Adaptor *)cls)->cbs_wheelEvent_3029_0 (arg1); } @@ -3342,7 +3342,7 @@ static void _call_cbs_windowFrameEvent_1217_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsProxyWidget_Adaptor *)cls)->cbs_windowFrameEvent_1217_0 (arg1)); } @@ -3365,7 +3365,7 @@ static void _call_cbs_windowFrameSectionAt_c1986_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); ret.write::target_type > ((qt_gsi::Converter::target_type)((QGraphicsProxyWidget_Adaptor *)cls)->cbs_windowFrameSectionAt_c1986_0 (arg1)); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsRectItem.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsRectItem.cc index 7f642470b..f6b9071f5 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsRectItem.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsRectItem.cc @@ -1004,7 +1004,7 @@ static void _call_cbs_advance_767_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsRectItem_Adaptor *)cls)->cbs_advance_767_0 (arg1); } @@ -1049,8 +1049,8 @@ static void _call_cbs_collidesWithItem_c4977_1 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape), heap); ret.write ((bool)((QGraphicsRectItem_Adaptor *)cls)->cbs_collidesWithItem_c4977_1 (arg1, arg2)); } @@ -1075,8 +1075,8 @@ static void _call_cbs_collidesWithPath_c4877_1 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape), heap); ret.write ((bool)((QGraphicsRectItem_Adaptor *)cls)->cbs_collidesWithPath_c4877_1 (arg1, arg2)); } @@ -1099,7 +1099,7 @@ static void _call_cbs_contains_c1986_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsRectItem_Adaptor *)cls)->cbs_contains_c1986_0 (arg1)); } @@ -1122,7 +1122,7 @@ static void _call_cbs_contextMenuEvent_3674_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneContextMenuEvent *arg1 = args.read (heap); + QGraphicsSceneContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsRectItem_Adaptor *)cls)->cbs_contextMenuEvent_3674_0 (arg1); } @@ -1146,7 +1146,7 @@ static void _call_cbs_dragEnterEvent_3315_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsRectItem_Adaptor *)cls)->cbs_dragEnterEvent_3315_0 (arg1); } @@ -1170,7 +1170,7 @@ static void _call_cbs_dragLeaveEvent_3315_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsRectItem_Adaptor *)cls)->cbs_dragLeaveEvent_3315_0 (arg1); } @@ -1194,7 +1194,7 @@ static void _call_cbs_dragMoveEvent_3315_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsRectItem_Adaptor *)cls)->cbs_dragMoveEvent_3315_0 (arg1); } @@ -1218,7 +1218,7 @@ static void _call_cbs_dropEvent_3315_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsRectItem_Adaptor *)cls)->cbs_dropEvent_3315_0 (arg1); } @@ -1242,7 +1242,7 @@ static void _call_cbs_extension_c2119_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVariant &arg1 = args.read (heap); + const QVariant &arg1 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QGraphicsRectItem_Adaptor *)cls)->cbs_extension_c2119_0 (arg1)); } @@ -1265,7 +1265,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsRectItem_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1289,7 +1289,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsRectItem_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -1313,7 +1313,7 @@ static void _call_cbs_hoverEnterEvent_3044_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsRectItem_Adaptor *)cls)->cbs_hoverEnterEvent_3044_0 (arg1); } @@ -1337,7 +1337,7 @@ static void _call_cbs_hoverLeaveEvent_3044_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsRectItem_Adaptor *)cls)->cbs_hoverLeaveEvent_3044_0 (arg1); } @@ -1361,7 +1361,7 @@ static void _call_cbs_hoverMoveEvent_3044_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsRectItem_Adaptor *)cls)->cbs_hoverMoveEvent_3044_0 (arg1); } @@ -1385,7 +1385,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsRectItem_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -1409,7 +1409,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QGraphicsRectItem_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -1432,7 +1432,7 @@ static void _call_cbs_isObscuredBy_c2614_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsRectItem_Adaptor *)cls)->cbs_isObscuredBy_c2614_0 (arg1)); } @@ -1457,8 +1457,8 @@ static void _call_cbs_itemChange_5658_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QVariant &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QGraphicsRectItem_Adaptor *)cls)->cbs_itemChange_5658_0 (arg1, arg2)); } @@ -1481,7 +1481,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsRectItem_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -1505,7 +1505,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsRectItem_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -1529,7 +1529,7 @@ static void _call_cbs_mouseDoubleClickEvent_3049_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsRectItem_Adaptor *)cls)->cbs_mouseDoubleClickEvent_3049_0 (arg1); } @@ -1553,7 +1553,7 @@ static void _call_cbs_mouseMoveEvent_3049_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsRectItem_Adaptor *)cls)->cbs_mouseMoveEvent_3049_0 (arg1); } @@ -1577,7 +1577,7 @@ static void _call_cbs_mousePressEvent_3049_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsRectItem_Adaptor *)cls)->cbs_mousePressEvent_3049_0 (arg1); } @@ -1601,7 +1601,7 @@ static void _call_cbs_mouseReleaseEvent_3049_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsRectItem_Adaptor *)cls)->cbs_mouseReleaseEvent_3049_0 (arg1); } @@ -1648,9 +1648,9 @@ static void _call_cbs_paint_6301_1 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QStyleOptionGraphicsItem *arg2 = args.read (heap); - QWidget *arg3 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionGraphicsItem *arg2 = gsi::arg_reader() (args, heap); + QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsRectItem_Adaptor *)cls)->cbs_paint_6301_1 (arg1, arg2, arg3); } @@ -1704,7 +1704,7 @@ static void _call_cbs_sceneEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsRectItem_Adaptor *)cls)->cbs_sceneEvent_1217_0 (arg1)); } @@ -1729,8 +1729,8 @@ static void _call_cbs_sceneEventFilter_3028_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsItem *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsRectItem_Adaptor *)cls)->cbs_sceneEventFilter_3028_0 (arg1, arg2)); } @@ -1755,8 +1755,8 @@ static void _call_cbs_setExtension_4817_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsRectItem_Adaptor *)cls)->cbs_setExtension_4817_0 (arg1, arg2); } @@ -1799,7 +1799,7 @@ static void _call_cbs_supportsExtension_c2806_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsRectItem_Adaptor *)cls)->cbs_supportsExtension_c2806_0 (arg1)); } @@ -1856,7 +1856,7 @@ static void _call_cbs_wheelEvent_3029_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneWheelEvent *arg1 = args.read (heap); + QGraphicsSceneWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsRectItem_Adaptor *)cls)->cbs_wheelEvent_3029_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsRotation.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsRotation.cc index 599ab9973..044491804 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsRotation.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsRotation.cc @@ -521,7 +521,7 @@ static void _call_cbs_applyTo_c1556_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMatrix4x4 *arg1 = args.read (heap); + QMatrix4x4 *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsRotation_Adaptor *)cls)->cbs_applyTo_c1556_0 (arg1); } @@ -559,7 +559,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsRotation_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -583,7 +583,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsRotation_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -625,7 +625,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsRotation_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -649,7 +649,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsRotation_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -674,8 +674,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsRotation_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -794,7 +794,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsRotation_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsScale.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsScale.cc index 91f101731..69dde9e82 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsScale.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsScale.cc @@ -537,7 +537,7 @@ static void _call_cbs_applyTo_c1556_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMatrix4x4 *arg1 = args.read (heap); + QMatrix4x4 *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScale_Adaptor *)cls)->cbs_applyTo_c1556_0 (arg1); } @@ -561,7 +561,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScale_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -585,7 +585,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScale_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -627,7 +627,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScale_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -651,7 +651,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsScale_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -676,8 +676,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsScale_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -810,7 +810,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScale_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsScene.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsScene.cc index 7ccc7cbeb..dc1d8f050 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsScene.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsScene.cc @@ -2484,7 +2484,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScene_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -2508,7 +2508,7 @@ static void _call_cbs_contextMenuEvent_3674_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneContextMenuEvent *arg1 = args.read (heap); + QGraphicsSceneContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScene_Adaptor *)cls)->cbs_contextMenuEvent_3674_0 (arg1); } @@ -2532,7 +2532,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScene_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -2574,7 +2574,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScene_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -2598,7 +2598,7 @@ static void _call_cbs_dragEnterEvent_3315_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScene_Adaptor *)cls)->cbs_dragEnterEvent_3315_0 (arg1); } @@ -2622,7 +2622,7 @@ static void _call_cbs_dragLeaveEvent_3315_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScene_Adaptor *)cls)->cbs_dragLeaveEvent_3315_0 (arg1); } @@ -2646,7 +2646,7 @@ static void _call_cbs_dragMoveEvent_3315_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScene_Adaptor *)cls)->cbs_dragMoveEvent_3315_0 (arg1); } @@ -2672,8 +2672,8 @@ static void _call_cbs_drawBackground_3180_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QRectF &arg2 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QRectF &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScene_Adaptor *)cls)->cbs_drawBackground_3180_0 (arg1, arg2); } @@ -2699,8 +2699,8 @@ static void _call_cbs_drawForeground_3180_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QRectF &arg2 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QRectF &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScene_Adaptor *)cls)->cbs_drawForeground_3180_0 (arg1, arg2); } @@ -2724,7 +2724,7 @@ static void _call_cbs_dropEvent_3315_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScene_Adaptor *)cls)->cbs_dropEvent_3315_0 (arg1); } @@ -2748,7 +2748,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsScene_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -2773,8 +2773,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsScene_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -2797,7 +2797,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScene_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -2863,7 +2863,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScene_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -2887,7 +2887,7 @@ static void _call_cbs_helpEvent_2921_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHelpEvent *arg1 = args.read (heap); + QGraphicsSceneHelpEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScene_Adaptor *)cls)->cbs_helpEvent_2921_0 (arg1); } @@ -2911,7 +2911,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScene_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2935,7 +2935,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QGraphicsScene_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2976,7 +2976,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScene_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -3000,7 +3000,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScene_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -3024,7 +3024,7 @@ static void _call_cbs_mouseDoubleClickEvent_3049_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScene_Adaptor *)cls)->cbs_mouseDoubleClickEvent_3049_0 (arg1); } @@ -3048,7 +3048,7 @@ static void _call_cbs_mouseMoveEvent_3049_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScene_Adaptor *)cls)->cbs_mouseMoveEvent_3049_0 (arg1); } @@ -3072,7 +3072,7 @@ static void _call_cbs_mousePressEvent_3049_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScene_Adaptor *)cls)->cbs_mousePressEvent_3049_0 (arg1); } @@ -3096,7 +3096,7 @@ static void _call_cbs_mouseReleaseEvent_3049_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScene_Adaptor *)cls)->cbs_mouseReleaseEvent_3049_0 (arg1); } @@ -3216,7 +3216,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScene_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -3240,7 +3240,7 @@ static void _call_cbs_wheelEvent_3029_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneWheelEvent *arg1 = args.read (heap); + QGraphicsSceneWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScene_Adaptor *)cls)->cbs_wheelEvent_3029_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsSimpleTextItem.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsSimpleTextItem.cc index 4235d0f47..30871b384 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsSimpleTextItem.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsSimpleTextItem.cc @@ -970,7 +970,7 @@ static void _call_cbs_advance_767_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSimpleTextItem_Adaptor *)cls)->cbs_advance_767_0 (arg1); } @@ -1015,8 +1015,8 @@ static void _call_cbs_collidesWithItem_c4977_1 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape), heap); ret.write ((bool)((QGraphicsSimpleTextItem_Adaptor *)cls)->cbs_collidesWithItem_c4977_1 (arg1, arg2)); } @@ -1041,8 +1041,8 @@ static void _call_cbs_collidesWithPath_c4877_1 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape), heap); ret.write ((bool)((QGraphicsSimpleTextItem_Adaptor *)cls)->cbs_collidesWithPath_c4877_1 (arg1, arg2)); } @@ -1065,7 +1065,7 @@ static void _call_cbs_contains_c1986_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsSimpleTextItem_Adaptor *)cls)->cbs_contains_c1986_0 (arg1)); } @@ -1088,7 +1088,7 @@ static void _call_cbs_contextMenuEvent_3674_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneContextMenuEvent *arg1 = args.read (heap); + QGraphicsSceneContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSimpleTextItem_Adaptor *)cls)->cbs_contextMenuEvent_3674_0 (arg1); } @@ -1112,7 +1112,7 @@ static void _call_cbs_dragEnterEvent_3315_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSimpleTextItem_Adaptor *)cls)->cbs_dragEnterEvent_3315_0 (arg1); } @@ -1136,7 +1136,7 @@ static void _call_cbs_dragLeaveEvent_3315_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSimpleTextItem_Adaptor *)cls)->cbs_dragLeaveEvent_3315_0 (arg1); } @@ -1160,7 +1160,7 @@ static void _call_cbs_dragMoveEvent_3315_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSimpleTextItem_Adaptor *)cls)->cbs_dragMoveEvent_3315_0 (arg1); } @@ -1184,7 +1184,7 @@ static void _call_cbs_dropEvent_3315_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSimpleTextItem_Adaptor *)cls)->cbs_dropEvent_3315_0 (arg1); } @@ -1208,7 +1208,7 @@ static void _call_cbs_extension_c2119_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVariant &arg1 = args.read (heap); + const QVariant &arg1 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QGraphicsSimpleTextItem_Adaptor *)cls)->cbs_extension_c2119_0 (arg1)); } @@ -1231,7 +1231,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSimpleTextItem_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1255,7 +1255,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSimpleTextItem_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -1279,7 +1279,7 @@ static void _call_cbs_hoverEnterEvent_3044_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSimpleTextItem_Adaptor *)cls)->cbs_hoverEnterEvent_3044_0 (arg1); } @@ -1303,7 +1303,7 @@ static void _call_cbs_hoverLeaveEvent_3044_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSimpleTextItem_Adaptor *)cls)->cbs_hoverLeaveEvent_3044_0 (arg1); } @@ -1327,7 +1327,7 @@ static void _call_cbs_hoverMoveEvent_3044_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSimpleTextItem_Adaptor *)cls)->cbs_hoverMoveEvent_3044_0 (arg1); } @@ -1351,7 +1351,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSimpleTextItem_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -1375,7 +1375,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QGraphicsSimpleTextItem_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -1398,7 +1398,7 @@ static void _call_cbs_isObscuredBy_c2614_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsSimpleTextItem_Adaptor *)cls)->cbs_isObscuredBy_c2614_0 (arg1)); } @@ -1423,8 +1423,8 @@ static void _call_cbs_itemChange_5658_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QVariant &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QGraphicsSimpleTextItem_Adaptor *)cls)->cbs_itemChange_5658_0 (arg1, arg2)); } @@ -1447,7 +1447,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSimpleTextItem_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -1471,7 +1471,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSimpleTextItem_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -1495,7 +1495,7 @@ static void _call_cbs_mouseDoubleClickEvent_3049_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSimpleTextItem_Adaptor *)cls)->cbs_mouseDoubleClickEvent_3049_0 (arg1); } @@ -1519,7 +1519,7 @@ static void _call_cbs_mouseMoveEvent_3049_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSimpleTextItem_Adaptor *)cls)->cbs_mouseMoveEvent_3049_0 (arg1); } @@ -1543,7 +1543,7 @@ static void _call_cbs_mousePressEvent_3049_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSimpleTextItem_Adaptor *)cls)->cbs_mousePressEvent_3049_0 (arg1); } @@ -1567,7 +1567,7 @@ static void _call_cbs_mouseReleaseEvent_3049_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSimpleTextItem_Adaptor *)cls)->cbs_mouseReleaseEvent_3049_0 (arg1); } @@ -1614,9 +1614,9 @@ static void _call_cbs_paint_6301_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QStyleOptionGraphicsItem *arg2 = args.read (heap); - QWidget *arg3 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionGraphicsItem *arg2 = gsi::arg_reader() (args, heap); + QWidget *arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSimpleTextItem_Adaptor *)cls)->cbs_paint_6301_0 (arg1, arg2, arg3); } @@ -1670,7 +1670,7 @@ static void _call_cbs_sceneEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsSimpleTextItem_Adaptor *)cls)->cbs_sceneEvent_1217_0 (arg1)); } @@ -1695,8 +1695,8 @@ static void _call_cbs_sceneEventFilter_3028_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsItem *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsSimpleTextItem_Adaptor *)cls)->cbs_sceneEventFilter_3028_0 (arg1, arg2)); } @@ -1721,8 +1721,8 @@ static void _call_cbs_setExtension_4817_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSimpleTextItem_Adaptor *)cls)->cbs_setExtension_4817_0 (arg1, arg2); } @@ -1765,7 +1765,7 @@ static void _call_cbs_supportsExtension_c2806_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsSimpleTextItem_Adaptor *)cls)->cbs_supportsExtension_c2806_0 (arg1)); } @@ -1822,7 +1822,7 @@ static void _call_cbs_wheelEvent_3029_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneWheelEvent *arg1 = args.read (heap); + QGraphicsSceneWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSimpleTextItem_Adaptor *)cls)->cbs_wheelEvent_3029_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsTextItem.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsTextItem.cc index 81f31c1f6..855999166 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsTextItem.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsTextItem.cc @@ -1584,7 +1584,7 @@ static void _call_cbs_advance_767_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsTextItem_Adaptor *)cls)->cbs_advance_767_0 (arg1); } @@ -1627,7 +1627,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsTextItem_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1667,8 +1667,8 @@ static void _call_cbs_collidesWithItem_c4977_1 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape), heap); ret.write ((bool)((QGraphicsTextItem_Adaptor *)cls)->cbs_collidesWithItem_c4977_1 (arg1, arg2)); } @@ -1693,8 +1693,8 @@ static void _call_cbs_collidesWithPath_c4877_1 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape), heap); ret.write ((bool)((QGraphicsTextItem_Adaptor *)cls)->cbs_collidesWithPath_c4877_1 (arg1, arg2)); } @@ -1717,7 +1717,7 @@ static void _call_cbs_contains_c1986_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsTextItem_Adaptor *)cls)->cbs_contains_c1986_0 (arg1)); } @@ -1740,7 +1740,7 @@ static void _call_cbs_contextMenuEvent_3674_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneContextMenuEvent *arg1 = args.read (heap); + QGraphicsSceneContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsTextItem_Adaptor *)cls)->cbs_contextMenuEvent_3674_0 (arg1); } @@ -1764,7 +1764,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsTextItem_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1806,7 +1806,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsTextItem_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1830,7 +1830,7 @@ static void _call_cbs_dragEnterEvent_3315_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsTextItem_Adaptor *)cls)->cbs_dragEnterEvent_3315_0 (arg1); } @@ -1854,7 +1854,7 @@ static void _call_cbs_dragLeaveEvent_3315_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsTextItem_Adaptor *)cls)->cbs_dragLeaveEvent_3315_0 (arg1); } @@ -1878,7 +1878,7 @@ static void _call_cbs_dragMoveEvent_3315_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsTextItem_Adaptor *)cls)->cbs_dragMoveEvent_3315_0 (arg1); } @@ -1902,7 +1902,7 @@ static void _call_cbs_dropEvent_3315_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsTextItem_Adaptor *)cls)->cbs_dropEvent_3315_0 (arg1); } @@ -1940,7 +1940,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsTextItem_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1965,8 +1965,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsTextItem_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1989,7 +1989,7 @@ static void _call_cbs_extension_c2119_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVariant &arg1 = args.read (heap); + const QVariant &arg1 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QGraphicsTextItem_Adaptor *)cls)->cbs_extension_c2119_0 (arg1)); } @@ -2012,7 +2012,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsTextItem_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -2036,7 +2036,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsTextItem_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -2074,7 +2074,7 @@ static void _call_cbs_hoverEnterEvent_3044_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsTextItem_Adaptor *)cls)->cbs_hoverEnterEvent_3044_0 (arg1); } @@ -2098,7 +2098,7 @@ static void _call_cbs_hoverLeaveEvent_3044_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsTextItem_Adaptor *)cls)->cbs_hoverLeaveEvent_3044_0 (arg1); } @@ -2122,7 +2122,7 @@ static void _call_cbs_hoverMoveEvent_3044_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsTextItem_Adaptor *)cls)->cbs_hoverMoveEvent_3044_0 (arg1); } @@ -2146,7 +2146,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsTextItem_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2170,7 +2170,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QGraphicsTextItem_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2193,7 +2193,7 @@ static void _call_cbs_isObscuredBy_c2614_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsTextItem_Adaptor *)cls)->cbs_isObscuredBy_c2614_0 (arg1)); } @@ -2236,8 +2236,8 @@ static void _call_cbs_itemChange_5658_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QVariant &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QGraphicsTextItem_Adaptor *)cls)->cbs_itemChange_5658_0 (arg1, arg2)); } @@ -2260,7 +2260,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsTextItem_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2284,7 +2284,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsTextItem_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2344,7 +2344,7 @@ static void _call_cbs_mouseDoubleClickEvent_3049_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsTextItem_Adaptor *)cls)->cbs_mouseDoubleClickEvent_3049_0 (arg1); } @@ -2368,7 +2368,7 @@ static void _call_cbs_mouseMoveEvent_3049_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsTextItem_Adaptor *)cls)->cbs_mouseMoveEvent_3049_0 (arg1); } @@ -2392,7 +2392,7 @@ static void _call_cbs_mousePressEvent_3049_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsTextItem_Adaptor *)cls)->cbs_mousePressEvent_3049_0 (arg1); } @@ -2416,7 +2416,7 @@ static void _call_cbs_mouseReleaseEvent_3049_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsTextItem_Adaptor *)cls)->cbs_mouseReleaseEvent_3049_0 (arg1); } @@ -2495,9 +2495,9 @@ static void _call_cbs_paint_6301_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QStyleOptionGraphicsItem *arg2 = args.read (heap); - QWidget *arg3 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionGraphicsItem *arg2 = gsi::arg_reader() (args, heap); + QWidget *arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsTextItem_Adaptor *)cls)->cbs_paint_6301_0 (arg1, arg2, arg3); } @@ -2611,7 +2611,7 @@ static void _call_cbs_sceneEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsTextItem_Adaptor *)cls)->cbs_sceneEvent_1217_0 (arg1)); } @@ -2636,8 +2636,8 @@ static void _call_cbs_sceneEventFilter_3028_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsItem *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsTextItem_Adaptor *)cls)->cbs_sceneEventFilter_3028_0 (arg1, arg2)); } @@ -2690,8 +2690,8 @@ static void _call_cbs_setExtension_4817_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsTextItem_Adaptor *)cls)->cbs_setExtension_4817_0 (arg1, arg2); } @@ -2734,7 +2734,7 @@ static void _call_cbs_supportsExtension_c2806_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsTextItem_Adaptor *)cls)->cbs_supportsExtension_c2806_0 (arg1)); } @@ -2757,7 +2757,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsTextItem_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2829,7 +2829,7 @@ static void _call_cbs_wheelEvent_3029_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneWheelEvent *arg1 = args.read (heap); + QGraphicsSceneWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsTextItem_Adaptor *)cls)->cbs_wheelEvent_3029_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsTransform.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsTransform.cc index 224170af4..2561ebf2b 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsTransform.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsTransform.cc @@ -354,7 +354,7 @@ static void _call_cbs_applyTo_c1556_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMatrix4x4 *arg1 = args.read (heap); + QMatrix4x4 *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsTransform_Adaptor *)cls)->cbs_applyTo_c1556_0 (arg1); } @@ -378,7 +378,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsTransform_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -402,7 +402,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsTransform_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -444,7 +444,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsTransform_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -468,7 +468,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsTransform_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -493,8 +493,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsTransform_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -599,7 +599,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsTransform_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsView.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsView.cc index eae944d57..45100e2ae 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsView.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsView.cc @@ -2909,7 +2909,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -2933,7 +2933,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -2957,7 +2957,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -2981,7 +2981,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -3005,7 +3005,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -3072,7 +3072,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -3136,7 +3136,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -3160,7 +3160,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -3184,7 +3184,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -3208,7 +3208,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -3234,8 +3234,8 @@ static void _call_cbs_drawBackground_3180_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QRectF &arg2 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QRectF &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView_Adaptor *)cls)->cbs_drawBackground_3180_0 (arg1, arg2); } @@ -3261,8 +3261,8 @@ static void _call_cbs_drawForeground_3180_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QRectF &arg2 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QRectF &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView_Adaptor *)cls)->cbs_drawForeground_3180_0 (arg1, arg2); } @@ -3305,7 +3305,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -3329,7 +3329,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -3353,7 +3353,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsView_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -3378,8 +3378,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsView_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -3402,7 +3402,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -3440,7 +3440,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsView_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -3463,7 +3463,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -3520,7 +3520,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QGraphicsView_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -3543,7 +3543,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -3567,7 +3567,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -3610,7 +3610,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -3634,7 +3634,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QGraphicsView_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -3675,7 +3675,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -3699,7 +3699,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -3723,7 +3723,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -3747,7 +3747,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QGraphicsView_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -3789,7 +3789,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -3813,7 +3813,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -3837,7 +3837,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -3861,7 +3861,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -3885,7 +3885,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -3913,9 +3913,9 @@ static void _call_cbs_nativeEvent_4678_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - long int *arg3 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + long int *arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsView_Adaptor *)cls)->cbs_nativeEvent_4678_0 (arg1, arg2, arg3)); } @@ -3975,7 +3975,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -4017,7 +4017,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QGraphicsView_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -4040,7 +4040,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -4090,8 +4090,8 @@ static void _call_cbs_scrollContentsBy_1426_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView_Adaptor *)cls)->cbs_scrollContentsBy_1426_0 (arg1, arg2); } @@ -4190,7 +4190,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -4214,7 +4214,7 @@ static void _call_cbs_setupViewport_1315_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView_Adaptor *)cls)->cbs_setupViewport_1315_0 (arg1); } @@ -4257,7 +4257,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -4300,7 +4300,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -4324,7 +4324,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -4363,7 +4363,7 @@ static void _call_cbs_viewportEvent_1217_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsView_Adaptor *)cls)->cbs_viewportEvent_1217_0 (arg1)); } @@ -4419,7 +4419,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsWidget.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsWidget.cc index 27f6cfba3..732ac1500 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsWidget.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsWidget.cc @@ -2586,7 +2586,7 @@ static void _call_cbs_advance_767_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget_Adaptor *)cls)->cbs_advance_767_0 (arg1); } @@ -2629,7 +2629,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -2653,7 +2653,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -2691,7 +2691,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -2717,8 +2717,8 @@ static void _call_cbs_collidesWithItem_c4977_1 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape), heap); ret.write ((bool)((QGraphicsWidget_Adaptor *)cls)->cbs_collidesWithItem_c4977_1 (arg1, arg2)); } @@ -2743,8 +2743,8 @@ static void _call_cbs_collidesWithPath_c4877_1 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape), heap); ret.write ((bool)((QGraphicsWidget_Adaptor *)cls)->cbs_collidesWithPath_c4877_1 (arg1, arg2)); } @@ -2767,7 +2767,7 @@ static void _call_cbs_contains_c1986_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsWidget_Adaptor *)cls)->cbs_contains_c1986_0 (arg1)); } @@ -2790,7 +2790,7 @@ static void _call_cbs_contextMenuEvent_3674_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneContextMenuEvent *arg1 = args.read (heap); + QGraphicsSceneContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget_Adaptor *)cls)->cbs_contextMenuEvent_3674_0 (arg1); } @@ -2814,7 +2814,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -2856,7 +2856,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -2880,7 +2880,7 @@ static void _call_cbs_dragEnterEvent_3315_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget_Adaptor *)cls)->cbs_dragEnterEvent_3315_0 (arg1); } @@ -2904,7 +2904,7 @@ static void _call_cbs_dragLeaveEvent_3315_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget_Adaptor *)cls)->cbs_dragLeaveEvent_3315_0 (arg1); } @@ -2928,7 +2928,7 @@ static void _call_cbs_dragMoveEvent_3315_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget_Adaptor *)cls)->cbs_dragMoveEvent_3315_0 (arg1); } @@ -2952,7 +2952,7 @@ static void _call_cbs_dropEvent_3315_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget_Adaptor *)cls)->cbs_dropEvent_3315_0 (arg1); } @@ -2990,7 +2990,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsWidget_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -3015,8 +3015,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsWidget_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -3039,7 +3039,7 @@ static void _call_cbs_extension_c2119_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVariant &arg1 = args.read (heap); + const QVariant &arg1 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QGraphicsWidget_Adaptor *)cls)->cbs_extension_c2119_0 (arg1)); } @@ -3062,7 +3062,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -3086,7 +3086,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsWidget_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -3109,7 +3109,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -3153,10 +3153,10 @@ static void _call_cbs_getContentsMargins_c4704_0 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double *arg1 = args.read (heap); - double *arg2 = args.read (heap); - double *arg3 = args.read (heap); - double *arg4 = args.read (heap); + double *arg1 = gsi::arg_reader() (args, heap); + double *arg2 = gsi::arg_reader() (args, heap); + double *arg3 = gsi::arg_reader() (args, heap); + double *arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget_Adaptor *)cls)->cbs_getContentsMargins_c4704_0 (arg1, arg2, arg3, arg4); } @@ -3180,7 +3180,7 @@ static void _call_cbs_grabKeyboardEvent_1217_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget_Adaptor *)cls)->cbs_grabKeyboardEvent_1217_0 (arg1); } @@ -3204,7 +3204,7 @@ static void _call_cbs_grabMouseEvent_1217_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget_Adaptor *)cls)->cbs_grabMouseEvent_1217_0 (arg1); } @@ -3242,7 +3242,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -3266,7 +3266,7 @@ static void _call_cbs_hoverEnterEvent_3044_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget_Adaptor *)cls)->cbs_hoverEnterEvent_3044_0 (arg1); } @@ -3290,7 +3290,7 @@ static void _call_cbs_hoverLeaveEvent_3044_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget_Adaptor *)cls)->cbs_hoverLeaveEvent_3044_0 (arg1); } @@ -3314,7 +3314,7 @@ static void _call_cbs_hoverMoveEvent_3044_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget_Adaptor *)cls)->cbs_hoverMoveEvent_3044_0 (arg1); } @@ -3338,7 +3338,7 @@ static void _call_cbs_initStyleOption_c1865_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOption *arg1 = args.read (heap); + QStyleOption *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget_Adaptor *)cls)->cbs_initStyleOption_c1865_0 (arg1); } @@ -3362,7 +3362,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -3386,7 +3386,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QGraphicsWidget_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -3409,7 +3409,7 @@ static void _call_cbs_isObscuredBy_c2614_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsWidget_Adaptor *)cls)->cbs_isObscuredBy_c2614_0 (arg1)); } @@ -3452,8 +3452,8 @@ static void _call_cbs_itemChange_5658_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QVariant &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QGraphicsWidget_Adaptor *)cls)->cbs_itemChange_5658_0 (arg1, arg2)); } @@ -3476,7 +3476,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -3500,7 +3500,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -3538,7 +3538,7 @@ static void _call_cbs_mouseDoubleClickEvent_3049_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget_Adaptor *)cls)->cbs_mouseDoubleClickEvent_3049_0 (arg1); } @@ -3562,7 +3562,7 @@ static void _call_cbs_mouseMoveEvent_3049_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget_Adaptor *)cls)->cbs_mouseMoveEvent_3049_0 (arg1); } @@ -3586,7 +3586,7 @@ static void _call_cbs_mousePressEvent_3049_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget_Adaptor *)cls)->cbs_mousePressEvent_3049_0 (arg1); } @@ -3610,7 +3610,7 @@ static void _call_cbs_mouseReleaseEvent_3049_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget_Adaptor *)cls)->cbs_mouseReleaseEvent_3049_0 (arg1); } @@ -3634,7 +3634,7 @@ static void _call_cbs_moveEvent_2935_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMoveEvent *arg1 = args.read (heap); + QGraphicsSceneMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget_Adaptor *)cls)->cbs_moveEvent_2935_0 (arg1); } @@ -3713,9 +3713,9 @@ static void _call_cbs_paint_6301_1 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QStyleOptionGraphicsItem *arg2 = args.read (heap); - QWidget *arg3 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionGraphicsItem *arg2 = gsi::arg_reader() (args, heap); + QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget_Adaptor *)cls)->cbs_paint_6301_1 (arg1, arg2, arg3); } @@ -3743,9 +3743,9 @@ static void _call_cbs_paintWindowFrame_6301_1 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QStyleOptionGraphicsItem *arg2 = args.read (heap); - QWidget *arg3 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionGraphicsItem *arg2 = gsi::arg_reader() (args, heap); + QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget_Adaptor *)cls)->cbs_paintWindowFrame_6301_1 (arg1, arg2, arg3); } @@ -3820,8 +3820,8 @@ static void _call_cbs_propertyChange_4036_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QGraphicsWidget_Adaptor *)cls)->cbs_propertyChange_4036_0 (arg1, arg2)); } @@ -3877,7 +3877,7 @@ static void _call_cbs_resizeEvent_3154_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneResizeEvent *arg1 = args.read (heap); + QGraphicsSceneResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget_Adaptor *)cls)->cbs_resizeEvent_3154_0 (arg1); } @@ -3929,7 +3929,7 @@ static void _call_cbs_sceneEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsWidget_Adaptor *)cls)->cbs_sceneEvent_1217_0 (arg1)); } @@ -3954,8 +3954,8 @@ static void _call_cbs_sceneEventFilter_3028_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsItem *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsWidget_Adaptor *)cls)->cbs_sceneEventFilter_3028_0 (arg1, arg2)); } @@ -4008,8 +4008,8 @@ static void _call_cbs_setExtension_4817_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget_Adaptor *)cls)->cbs_setExtension_4817_0 (arg1, arg2); } @@ -4033,7 +4033,7 @@ static void _call_cbs_setGeometry_1862_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget_Adaptor *)cls)->cbs_setGeometry_1862_0 (arg1); } @@ -4114,7 +4114,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -4140,8 +4140,8 @@ static void _call_cbs_sizeHint_c3330_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QSizeF &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QSizeF &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QSizeF(), heap); ret.write ((QSizeF)((QGraphicsWidget_Adaptor *)cls)->cbs_sizeHint_c3330_1 (arg1, arg2)); } @@ -4164,7 +4164,7 @@ static void _call_cbs_supportsExtension_c2806_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsWidget_Adaptor *)cls)->cbs_supportsExtension_c2806_0 (arg1)); } @@ -4187,7 +4187,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -4230,7 +4230,7 @@ static void _call_cbs_ungrabKeyboardEvent_1217_0 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget_Adaptor *)cls)->cbs_ungrabKeyboardEvent_1217_0 (arg1); } @@ -4254,7 +4254,7 @@ static void _call_cbs_ungrabMouseEvent_1217_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget_Adaptor *)cls)->cbs_ungrabMouseEvent_1217_0 (arg1); } @@ -4327,7 +4327,7 @@ static void _call_cbs_wheelEvent_3029_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneWheelEvent *arg1 = args.read (heap); + QGraphicsSceneWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget_Adaptor *)cls)->cbs_wheelEvent_3029_0 (arg1); } @@ -4365,7 +4365,7 @@ static void _call_cbs_windowFrameEvent_1217_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsWidget_Adaptor *)cls)->cbs_windowFrameEvent_1217_0 (arg1)); } @@ -4388,7 +4388,7 @@ static void _call_cbs_windowFrameSectionAt_c1986_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); ret.write::target_type > ((qt_gsi::Converter::target_type)((QGraphicsWidget_Adaptor *)cls)->cbs_windowFrameSectionAt_c1986_0 (arg1)); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGridLayout.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGridLayout.cc index 204dc9afe..b423f69ac 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGridLayout.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGridLayout.cc @@ -1583,7 +1583,8 @@ static void _call_cbs_addItem_1740_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QLayoutItem *arg1 = args.read (heap); + QLayoutItem *arg1 = gsi::arg_reader() (args, heap); + qt_gsi::qt_keep (arg1); __SUPPRESS_UNUSED_WARNING(ret); ((QGridLayout_Adaptor *)cls)->cbs_addItem_1740_0 (arg1); } @@ -1643,7 +1644,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGridLayout_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1705,7 +1706,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGridLayout_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1747,7 +1748,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGridLayout_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1771,7 +1772,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGridLayout_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1796,8 +1797,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGridLayout_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1877,7 +1878,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QGridLayout_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -1900,7 +1901,7 @@ static void _call_cbs_indexOf_c1315_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QGridLayout_Adaptor *)cls)->cbs_indexOf_c1315_0 (arg1)); } @@ -1980,7 +1981,7 @@ static void _call_cbs_itemAt_c767_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QLayoutItem *)((QGridLayout_Adaptor *)cls)->cbs_itemAt_c767_0 (arg1)); } @@ -2041,7 +2042,7 @@ static void _call_cbs_minimumHeightForWidth_c767_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QGridLayout_Adaptor *)cls)->cbs_minimumHeightForWidth_c767_0 (arg1)); } @@ -2147,7 +2148,7 @@ static void _call_cbs_setGeometry_1792_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGridLayout_Adaptor *)cls)->cbs_setGeometry_1792_0 (arg1); } @@ -2209,7 +2210,7 @@ static void _call_cbs_takeAt_767_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QLayoutItem *)((QGridLayout_Adaptor *)cls)->cbs_takeAt_767_0 (arg1)); } @@ -2232,7 +2233,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGridLayout_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGroupBox.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGroupBox.cc index b5e839189..01a550619 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGroupBox.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGroupBox.cc @@ -1286,7 +1286,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGroupBox_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1310,7 +1310,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGroupBox_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1334,7 +1334,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGroupBox_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1376,7 +1376,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGroupBox_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1400,7 +1400,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGroupBox_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1467,7 +1467,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGroupBox_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1531,7 +1531,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGroupBox_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1555,7 +1555,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGroupBox_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1579,7 +1579,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGroupBox_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1603,7 +1603,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGroupBox_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1627,7 +1627,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGroupBox_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1651,7 +1651,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGroupBox_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -1675,7 +1675,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGroupBox_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1700,8 +1700,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGroupBox_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1724,7 +1724,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGroupBox_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1762,7 +1762,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGroupBox_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -1785,7 +1785,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGroupBox_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -1842,7 +1842,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QGroupBox_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -1865,7 +1865,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGroupBox_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -1889,7 +1889,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGroupBox_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -1932,7 +1932,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGroupBox_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -1956,7 +1956,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QGroupBox_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -1997,7 +1997,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGroupBox_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2021,7 +2021,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGroupBox_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2045,7 +2045,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGroupBox_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2069,7 +2069,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QGroupBox_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2111,7 +2111,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGroupBox_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2135,7 +2135,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGroupBox_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2159,7 +2159,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGroupBox_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2183,7 +2183,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGroupBox_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2207,7 +2207,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGroupBox_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2235,9 +2235,9 @@ static void _call_cbs_nativeEvent_4678_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - long int *arg3 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + long int *arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGroupBox_Adaptor *)cls)->cbs_nativeEvent_4678_0 (arg1, arg2, arg3)); } @@ -2297,7 +2297,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGroupBox_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2339,7 +2339,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QGroupBox_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -2362,7 +2362,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGroupBox_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2414,7 +2414,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGroupBox_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2457,7 +2457,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGroupBox_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2500,7 +2500,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGroupBox_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2524,7 +2524,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGroupBox_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2581,7 +2581,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGroupBox_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQHBoxLayout.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQHBoxLayout.cc index dd404a12c..19e0b39f4 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQHBoxLayout.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQHBoxLayout.cc @@ -715,7 +715,8 @@ static void _call_cbs_addItem_1740_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QLayoutItem *arg1 = args.read (heap); + QLayoutItem *arg1 = gsi::arg_reader() (args, heap); + qt_gsi::qt_keep (arg1); __SUPPRESS_UNUSED_WARNING(ret); ((QHBoxLayout_Adaptor *)cls)->cbs_addItem_1740_0 (arg1); } @@ -775,7 +776,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHBoxLayout_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -837,7 +838,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHBoxLayout_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -879,7 +880,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHBoxLayout_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -903,7 +904,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QHBoxLayout_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -928,8 +929,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QHBoxLayout_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1009,7 +1010,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QHBoxLayout_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -1032,7 +1033,7 @@ static void _call_cbs_indexOf_c1315_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QHBoxLayout_Adaptor *)cls)->cbs_indexOf_c1315_0 (arg1)); } @@ -1112,7 +1113,7 @@ static void _call_cbs_itemAt_c767_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QLayoutItem *)((QHBoxLayout_Adaptor *)cls)->cbs_itemAt_c767_0 (arg1)); } @@ -1173,7 +1174,7 @@ static void _call_cbs_minimumHeightForWidth_c767_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QHBoxLayout_Adaptor *)cls)->cbs_minimumHeightForWidth_c767_0 (arg1)); } @@ -1279,7 +1280,7 @@ static void _call_cbs_setGeometry_1792_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHBoxLayout_Adaptor *)cls)->cbs_setGeometry_1792_0 (arg1); } @@ -1341,7 +1342,7 @@ static void _call_cbs_takeAt_767_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QLayoutItem *)((QHBoxLayout_Adaptor *)cls)->cbs_takeAt_767_0 (arg1)); } @@ -1364,7 +1365,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHBoxLayout_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQHeaderView.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQHeaderView.cc index 0ebbd216a..a08ce61f2 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQHeaderView.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQHeaderView.cc @@ -3307,7 +3307,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -3349,7 +3349,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -3373,7 +3373,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -3417,8 +3417,8 @@ static void _call_cbs_closeEditor_4926_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_closeEditor_4926_0 (arg1, arg2); } @@ -3442,7 +3442,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -3466,7 +3466,7 @@ static void _call_cbs_commitData_1315_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_commitData_1315_0 (arg1); } @@ -3490,7 +3490,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -3541,8 +3541,8 @@ static void _call_cbs_currentChanged_4682_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_currentChanged_4682_0 (arg1, arg2); } @@ -3584,7 +3584,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -3612,9 +3612,9 @@ static void _call_cbs_dataChanged_7048_1 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); - const QVector &arg3 = args.read & > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); + const QVector &arg3 = args ? gsi::arg_reader & >() (args, heap) : gsi::arg_maker & >() (QVector(), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_dataChanged_7048_1 (arg1, arg2, arg3); } @@ -3692,7 +3692,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -3769,7 +3769,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -3793,7 +3793,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -3817,7 +3817,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -3860,7 +3860,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -3902,9 +3902,9 @@ static void _call_cbs_edit_6773_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - QEvent *arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + QEvent *arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QHeaderView_Adaptor *)cls)->cbs_edit_6773_0 (arg1, arg2, arg3)); } @@ -3927,7 +3927,7 @@ static void _call_cbs_editorDestroyed_1302_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_editorDestroyed_1302_0 (arg1); } @@ -3951,7 +3951,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -3993,7 +3993,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QHeaderView_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -4018,8 +4018,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QHeaderView_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -4057,7 +4057,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -4095,7 +4095,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QHeaderView_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -4118,7 +4118,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -4189,7 +4189,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QHeaderView_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -4212,7 +4212,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -4255,7 +4255,7 @@ static void _call_cbs_horizontalScrollbarAction_767_0 (const qt_gsi::GenericMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_horizontalScrollbarAction_767_0 (arg1); } @@ -4279,7 +4279,7 @@ static void _call_cbs_horizontalScrollbarValueChanged_767_0 (const qt_gsi::Gener { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_horizontalScrollbarValueChanged_767_0 (arg1); } @@ -4335,7 +4335,7 @@ static void _call_cbs_indexAt_c1916_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QHeaderView_Adaptor *)cls)->cbs_indexAt_c1916_0 (arg1)); } @@ -4358,7 +4358,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -4453,7 +4453,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -4477,7 +4477,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QHeaderView_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -4500,7 +4500,7 @@ static void _call_cbs_isIndexHidden_c2395_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QHeaderView_Adaptor *)cls)->cbs_isIndexHidden_c2395_0 (arg1)); } @@ -4541,7 +4541,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -4565,7 +4565,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -4589,7 +4589,7 @@ static void _call_cbs_keyboardSearch_2025_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_keyboardSearch_2025_0 (arg1); } @@ -4613,7 +4613,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -4637,7 +4637,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QHeaderView_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -4679,7 +4679,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -4703,7 +4703,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -4727,7 +4727,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -4751,7 +4751,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -4777,8 +4777,8 @@ static void _call_cbs_moveCursor_6476_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); - QFlags arg2 = args.read > (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); ret.write ((QModelIndex)((QHeaderView_Adaptor *)cls)->cbs_moveCursor_6476_0 (arg1, arg2)); } @@ -4801,7 +4801,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -4829,9 +4829,9 @@ static void _call_cbs_nativeEvent_4678_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - long int *arg3 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + long int *arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QHeaderView_Adaptor *)cls)->cbs_nativeEvent_4678_0 (arg1, arg2, arg3)); } @@ -4891,7 +4891,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -4919,9 +4919,9 @@ static void _call_cbs_paintSection_c3769_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QRect &arg2 = args.read (heap); - int arg3 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QRect &arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_paintSection_c3769_0 (arg1, arg2, arg3); } @@ -4981,7 +4981,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QHeaderView_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -5024,7 +5024,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -5067,9 +5067,9 @@ static void _call_cbs_rowsAboutToBeRemoved_3713_0 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_rowsAboutToBeRemoved_3713_0 (arg1, arg2, arg3); } @@ -5097,9 +5097,9 @@ static void _call_cbs_rowsInserted_3713_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_rowsInserted_3713_0 (arg1, arg2, arg3); } @@ -5140,8 +5140,8 @@ static void _call_cbs_scrollContentsBy_1426_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_scrollContentsBy_1426_0 (arg1, arg2); } @@ -5189,8 +5189,8 @@ static void _call_cbs_scrollTo_5576_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_scrollTo_5576_0 (arg1, arg2); } @@ -5373,7 +5373,7 @@ static void _call_cbs_sectionSizeFromContents_c767_0 (const qt_gsi::GenericMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QSize)((QHeaderView_Adaptor *)cls)->cbs_sectionSizeFromContents_c767_0 (arg1)); } @@ -5487,8 +5487,8 @@ static void _call_cbs_selectionChanged_5346_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QItemSelection &arg1 = args.read (heap); - const QItemSelection &arg2 = args.read (heap); + const QItemSelection &arg1 = gsi::arg_reader() (args, heap); + const QItemSelection &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_selectionChanged_5346_0 (arg1, arg2); } @@ -5514,8 +5514,8 @@ static void _call_cbs_selectionCommand_c4199_1 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QEvent *arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QEvent *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); ret.write > ((QFlags)((QHeaderView_Adaptor *)cls)->cbs_selectionCommand_c4199_1 (arg1, arg2)); } @@ -5604,7 +5604,7 @@ static void _call_cbs_setModel_2419_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractItemModel *arg1 = args.read (heap); + QAbstractItemModel *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_setModel_2419_0 (arg1); } @@ -5628,7 +5628,7 @@ static void _call_cbs_setRootIndex_2395_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_setRootIndex_2395_0 (arg1); } @@ -5654,8 +5654,8 @@ static void _call_cbs_setSelection_6155_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); - QFlags arg2 = args.read > (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_setSelection_6155_0 (arg1, arg2); } @@ -5679,7 +5679,7 @@ static void _call_cbs_setSelectionModel_2533_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QItemSelectionModel *arg1 = args.read (heap); + QItemSelectionModel *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_setSelectionModel_2533_0 (arg1); } @@ -5788,7 +5788,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -5812,7 +5812,7 @@ static void _call_cbs_setupViewport_1315_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_setupViewport_1315_0 (arg1); } @@ -5855,7 +5855,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -5898,7 +5898,7 @@ static void _call_cbs_sizeHintForColumn_c767_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QHeaderView_Adaptor *)cls)->cbs_sizeHintForColumn_c767_0 (arg1)); } @@ -5921,7 +5921,7 @@ static void _call_cbs_sizeHintForRow_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QHeaderView_Adaptor *)cls)->cbs_sizeHintForRow_c767_0 (arg1)); } @@ -5980,7 +5980,7 @@ static void _call_cbs_startDrag_2456_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_startDrag_2456_0 (arg1); } @@ -6033,7 +6033,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -6057,7 +6057,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -6194,7 +6194,7 @@ static void _call_cbs_verticalScrollbarAction_767_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_verticalScrollbarAction_767_0 (arg1); } @@ -6218,7 +6218,7 @@ static void _call_cbs_verticalScrollbarValueChanged_767_0 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_verticalScrollbarValueChanged_767_0 (arg1); } @@ -6289,7 +6289,7 @@ static void _call_cbs_viewportEvent_1217_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QHeaderView_Adaptor *)cls)->cbs_viewportEvent_1217_0 (arg1)); } @@ -6345,7 +6345,7 @@ static void _call_cbs_visualRect_c2395_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QHeaderView_Adaptor *)cls)->cbs_visualRect_c2395_0 (arg1)); } @@ -6368,7 +6368,7 @@ static void _call_cbs_visualRegionForSelection_c2727_0 (const qt_gsi::GenericMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QItemSelection &arg1 = args.read (heap); + const QItemSelection &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRegion)((QHeaderView_Adaptor *)cls)->cbs_visualRegionForSelection_c2727_0 (arg1)); } @@ -6391,7 +6391,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQInputDialog.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQInputDialog.cc index 0d7e68b93..e44d92c5d 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQInputDialog.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQInputDialog.cc @@ -2354,7 +2354,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -2397,7 +2397,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -2421,7 +2421,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -2445,7 +2445,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -2469,7 +2469,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -2536,7 +2536,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -2600,7 +2600,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -2624,7 +2624,7 @@ static void _call_cbs_done_767_0 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog_Adaptor *)cls)->cbs_done_767_0 (arg1); } @@ -2684,7 +2684,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -2708,7 +2708,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -2732,7 +2732,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -2756,7 +2756,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -2780,7 +2780,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -2804,7 +2804,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QInputDialog_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -2829,8 +2829,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QInputDialog_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -2890,7 +2890,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -2928,7 +2928,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QInputDialog_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -2951,7 +2951,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -3008,7 +3008,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QInputDialog_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -3031,7 +3031,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -3055,7 +3055,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -3079,7 +3079,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -3103,7 +3103,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QInputDialog_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -3180,7 +3180,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -3204,7 +3204,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -3228,7 +3228,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -3252,7 +3252,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QInputDialog_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -3294,7 +3294,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -3318,7 +3318,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -3342,7 +3342,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -3366,7 +3366,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -3390,7 +3390,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -3418,9 +3418,9 @@ static void _call_cbs_nativeEvent_4678_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - long int *arg3 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + long int *arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QInputDialog_Adaptor *)cls)->cbs_nativeEvent_4678_0 (arg1, arg2, arg3)); } @@ -3500,7 +3500,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -3542,7 +3542,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QInputDialog_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -3599,7 +3599,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -3651,7 +3651,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -3694,7 +3694,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -3737,7 +3737,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -3797,7 +3797,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -3836,7 +3836,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQItemDelegate.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQItemDelegate.cc index 87b107969..4de4c1a1c 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQItemDelegate.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQItemDelegate.cc @@ -837,7 +837,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QItemDelegate_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -904,9 +904,9 @@ static void _call_cbs_createEditor_c6860_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - const QStyleOptionViewItem &arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionViewItem &arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); ret.write ((QWidget *)((QItemDelegate_Adaptor *)cls)->cbs_createEditor_c6860_0 (arg1, arg2, arg3)); } @@ -929,7 +929,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QItemDelegate_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -976,8 +976,8 @@ static void _call_cbs_destroyEditor_c3602_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QItemDelegate_Adaptor *)cls)->cbs_destroyEditor_c3602_0 (arg1, arg2); } @@ -1019,7 +1019,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QItemDelegate_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1129,10 +1129,10 @@ static void _call_cbs_drawCheck_c8000_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QStyleOptionViewItem &arg2 = args.read (heap); - const QRect &arg3 = args.read (heap); - const qt_gsi::Converter::target_type & arg4 = args.read::target_type & > (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionViewItem &arg2 = gsi::arg_reader() (args, heap); + const QRect &arg3 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg4 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QItemDelegate_Adaptor *)cls)->cbs_drawCheck_c8000_0 (arg1, arg2, arg3, arg4); } @@ -1162,10 +1162,10 @@ static void _call_cbs_drawDecoration_c8277_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QStyleOptionViewItem &arg2 = args.read (heap); - const QRect &arg3 = args.read (heap); - const QPixmap &arg4 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionViewItem &arg2 = gsi::arg_reader() (args, heap); + const QRect &arg3 = gsi::arg_reader() (args, heap); + const QPixmap &arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QItemDelegate_Adaptor *)cls)->cbs_drawDecoration_c8277_0 (arg1, arg2, arg3, arg4); } @@ -1195,10 +1195,10 @@ static void _call_cbs_drawDisplay_c8285_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QStyleOptionViewItem &arg2 = args.read (heap); - const QRect &arg3 = args.read (heap); - const QString &arg4 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionViewItem &arg2 = gsi::arg_reader() (args, heap); + const QRect &arg3 = gsi::arg_reader() (args, heap); + const QString &arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QItemDelegate_Adaptor *)cls)->cbs_drawDisplay_c8285_0 (arg1, arg2, arg3, arg4); } @@ -1226,9 +1226,9 @@ static void _call_cbs_drawFocus_c6368_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QStyleOptionViewItem &arg2 = args.read (heap); - const QRect &arg3 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionViewItem &arg2 = gsi::arg_reader() (args, heap); + const QRect &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QItemDelegate_Adaptor *)cls)->cbs_drawFocus_c6368_0 (arg1, arg2, arg3); } @@ -1258,10 +1258,10 @@ static void _call_cbs_editorEvent_9073_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); - QAbstractItemModel *arg2 = args.read (heap); - const QStyleOptionViewItem &arg3 = args.read (heap); - const QModelIndex &arg4 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); + QAbstractItemModel *arg2 = gsi::arg_reader() (args, heap); + const QStyleOptionViewItem &arg3 = gsi::arg_reader() (args, heap); + const QModelIndex &arg4 = gsi::arg_reader() (args, heap); ret.write ((bool)((QItemDelegate_Adaptor *)cls)->cbs_editorEvent_9073_0 (arg1, arg2, arg3, arg4)); } @@ -1284,7 +1284,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QItemDelegate_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1309,8 +1309,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QItemDelegate_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1339,10 +1339,10 @@ static void _call_cbs_helpEvent_9380_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHelpEvent *arg1 = args.read (heap); - QAbstractItemView *arg2 = args.read (heap); - const QStyleOptionViewItem &arg3 = args.read (heap); - const QModelIndex &arg4 = args.read (heap); + QHelpEvent *arg1 = gsi::arg_reader() (args, heap); + QAbstractItemView *arg2 = gsi::arg_reader() (args, heap); + const QStyleOptionViewItem &arg3 = gsi::arg_reader() (args, heap); + const QModelIndex &arg4 = gsi::arg_reader() (args, heap); ret.write ((bool)((QItemDelegate_Adaptor *)cls)->cbs_helpEvent_9380_0 (arg1, arg2, arg3, arg4)); } @@ -1405,9 +1405,9 @@ static void _call_cbs_paint_c6971_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QStyleOptionViewItem &arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionViewItem &arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QItemDelegate_Adaptor *)cls)->cbs_paint_c6971_0 (arg1, arg2, arg3); } @@ -1546,8 +1546,8 @@ static void _call_cbs_setEditorData_c3602_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QItemDelegate_Adaptor *)cls)->cbs_setEditorData_c3602_0 (arg1, arg2); } @@ -1575,9 +1575,9 @@ static void _call_cbs_setModelData_c5913_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - QAbstractItemModel *arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + QAbstractItemModel *arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QItemDelegate_Adaptor *)cls)->cbs_setModelData_c5913_0 (arg1, arg2, arg3); } @@ -1624,8 +1624,8 @@ static void _call_cbs_sizeHint_c5653_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStyleOptionViewItem &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + const QStyleOptionViewItem &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); ret.write ((QSize)((QItemDelegate_Adaptor *)cls)->cbs_sizeHint_c5653_0 (arg1, arg2)); } @@ -1693,7 +1693,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QItemDelegate_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -1721,9 +1721,9 @@ static void _call_cbs_updateEditorGeometry_c6860_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - const QStyleOptionViewItem &arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionViewItem &arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QItemDelegate_Adaptor *)cls)->cbs_updateEditorGeometry_c6860_0 (arg1, arg2, arg3); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQItemEditorCreatorBase.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQItemEditorCreatorBase.cc index 034cd6269..2c6276670 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQItemEditorCreatorBase.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQItemEditorCreatorBase.cc @@ -165,7 +165,7 @@ static void _call_cbs_createWidget_c1315_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); ret.write ((QWidget *)((QItemEditorCreatorBase_Adaptor *)cls)->cbs_createWidget_c1315_0 (arg1)); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQItemEditorFactory.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQItemEditorFactory.cc index 01d8da3b0..15f07621c 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQItemEditorFactory.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQItemEditorFactory.cc @@ -235,8 +235,8 @@ static void _call_cbs_createEditor_c1974_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - QWidget *arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = gsi::arg_reader() (args, heap); ret.write ((QWidget *)((QItemEditorFactory_Adaptor *)cls)->cbs_createEditor_c1974_0 (arg1, arg2)); } @@ -259,7 +259,7 @@ static void _call_cbs_valuePropertyName_c767_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QByteArray)((QItemEditorFactory_Adaptor *)cls)->cbs_valuePropertyName_c767_0 (arg1)); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQKeySequenceEdit.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQKeySequenceEdit.cc index 20541dd3c..3422e2e52 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQKeySequenceEdit.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQKeySequenceEdit.cc @@ -1133,7 +1133,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QKeySequenceEdit_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1157,7 +1157,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QKeySequenceEdit_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1181,7 +1181,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QKeySequenceEdit_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1205,7 +1205,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QKeySequenceEdit_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1229,7 +1229,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QKeySequenceEdit_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1296,7 +1296,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QKeySequenceEdit_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1360,7 +1360,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QKeySequenceEdit_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1384,7 +1384,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QKeySequenceEdit_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1408,7 +1408,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QKeySequenceEdit_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1432,7 +1432,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QKeySequenceEdit_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1456,7 +1456,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QKeySequenceEdit_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1494,7 +1494,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QKeySequenceEdit_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -1518,7 +1518,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QKeySequenceEdit_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1543,8 +1543,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QKeySequenceEdit_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1567,7 +1567,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QKeySequenceEdit_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1605,7 +1605,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QKeySequenceEdit_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -1628,7 +1628,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QKeySequenceEdit_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -1685,7 +1685,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QKeySequenceEdit_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -1708,7 +1708,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QKeySequenceEdit_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -1732,7 +1732,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QKeySequenceEdit_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -1756,7 +1756,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QKeySequenceEdit_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -1780,7 +1780,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QKeySequenceEdit_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -1821,7 +1821,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QKeySequenceEdit_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -1845,7 +1845,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QKeySequenceEdit_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -1887,7 +1887,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QKeySequenceEdit_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -1911,7 +1911,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QKeySequenceEdit_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -1953,7 +1953,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QKeySequenceEdit_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -1977,7 +1977,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QKeySequenceEdit_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2001,7 +2001,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QKeySequenceEdit_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2025,7 +2025,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QKeySequenceEdit_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2049,7 +2049,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QKeySequenceEdit_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2077,9 +2077,9 @@ static void _call_cbs_nativeEvent_4678_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - long int *arg3 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + long int *arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QKeySequenceEdit_Adaptor *)cls)->cbs_nativeEvent_4678_0 (arg1, arg2, arg3)); } @@ -2139,7 +2139,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QKeySequenceEdit_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2181,7 +2181,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QKeySequenceEdit_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -2204,7 +2204,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QKeySequenceEdit_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2256,7 +2256,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QKeySequenceEdit_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2299,7 +2299,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QKeySequenceEdit_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2342,7 +2342,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QKeySequenceEdit_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2366,7 +2366,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QKeySequenceEdit_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2405,7 +2405,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QKeySequenceEdit_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQLCDNumber.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQLCDNumber.cc index 853ef0869..f93231be4 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQLCDNumber.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQLCDNumber.cc @@ -1450,7 +1450,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLCDNumber_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1474,7 +1474,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLCDNumber_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1498,7 +1498,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLCDNumber_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1522,7 +1522,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLCDNumber_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1546,7 +1546,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLCDNumber_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1613,7 +1613,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLCDNumber_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1677,7 +1677,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLCDNumber_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1701,7 +1701,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLCDNumber_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1725,7 +1725,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLCDNumber_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1749,7 +1749,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLCDNumber_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1792,7 +1792,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLCDNumber_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1816,7 +1816,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLCDNumber_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -1840,7 +1840,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QLCDNumber_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1865,8 +1865,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QLCDNumber_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1889,7 +1889,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLCDNumber_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1927,7 +1927,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QLCDNumber_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -1950,7 +1950,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLCDNumber_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -2007,7 +2007,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QLCDNumber_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -2030,7 +2030,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLCDNumber_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -2054,7 +2054,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLCDNumber_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -2097,7 +2097,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLCDNumber_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2121,7 +2121,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QLCDNumber_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2162,7 +2162,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLCDNumber_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2186,7 +2186,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLCDNumber_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2210,7 +2210,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLCDNumber_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2234,7 +2234,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QLCDNumber_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2276,7 +2276,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLCDNumber_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2300,7 +2300,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLCDNumber_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2324,7 +2324,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLCDNumber_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2348,7 +2348,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLCDNumber_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2372,7 +2372,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLCDNumber_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2400,9 +2400,9 @@ static void _call_cbs_nativeEvent_4678_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - long int *arg3 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + long int *arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QLCDNumber_Adaptor *)cls)->cbs_nativeEvent_4678_0 (arg1, arg2, arg3)); } @@ -2476,7 +2476,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLCDNumber_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2518,7 +2518,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QLCDNumber_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -2541,7 +2541,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLCDNumber_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2593,7 +2593,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLCDNumber_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2636,7 +2636,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLCDNumber_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2679,7 +2679,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLCDNumber_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2703,7 +2703,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLCDNumber_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2742,7 +2742,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLCDNumber_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQLabel.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQLabel.cc index ae9e55ef5..4fddb6ecf 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQLabel.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQLabel.cc @@ -1774,7 +1774,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1798,7 +1798,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1822,7 +1822,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1846,7 +1846,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1870,7 +1870,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1937,7 +1937,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -2001,7 +2001,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -2025,7 +2025,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -2049,7 +2049,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -2073,7 +2073,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -2116,7 +2116,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -2140,7 +2140,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -2164,7 +2164,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QLabel_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -2189,8 +2189,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QLabel_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -2213,7 +2213,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -2251,7 +2251,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QLabel_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -2274,7 +2274,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -2331,7 +2331,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QLabel_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -2354,7 +2354,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -2378,7 +2378,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -2421,7 +2421,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2445,7 +2445,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QLabel_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2486,7 +2486,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2510,7 +2510,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2534,7 +2534,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2594,7 +2594,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QLabel_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2636,7 +2636,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2660,7 +2660,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2684,7 +2684,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2708,7 +2708,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2732,7 +2732,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2760,9 +2760,9 @@ static void _call_cbs_nativeEvent_4678_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - long int *arg3 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + long int *arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QLabel_Adaptor *)cls)->cbs_nativeEvent_4678_0 (arg1, arg2, arg3)); } @@ -2822,7 +2822,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2864,7 +2864,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QLabel_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -2887,7 +2887,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2939,7 +2939,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2982,7 +2982,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -3025,7 +3025,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -3049,7 +3049,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -3088,7 +3088,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQLayout.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQLayout.cc index f3e70ca21..dab7ba3b0 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQLayout.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQLayout.cc @@ -1635,7 +1635,8 @@ static void _call_cbs_addItem_1740_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QLayoutItem *arg1 = args.read (heap); + QLayoutItem *arg1 = gsi::arg_reader() (args, heap); + qt_gsi::qt_keep (arg1); __SUPPRESS_UNUSED_WARNING(ret); ((QLayout_Adaptor *)cls)->cbs_addItem_1740_0 (arg1); } @@ -1695,7 +1696,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLayout_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1757,7 +1758,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLayout_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1799,7 +1800,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLayout_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1823,7 +1824,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QLayout_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1848,8 +1849,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QLayout_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1929,7 +1930,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QLayout_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -1952,7 +1953,7 @@ static void _call_cbs_indexOf_c1315_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QLayout_Adaptor *)cls)->cbs_indexOf_c1315_0 (arg1)); } @@ -2032,7 +2033,7 @@ static void _call_cbs_itemAt_c767_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QLayoutItem *)((QLayout_Adaptor *)cls)->cbs_itemAt_c767_0 (arg1)); } @@ -2093,7 +2094,7 @@ static void _call_cbs_minimumHeightForWidth_c767_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QLayout_Adaptor *)cls)->cbs_minimumHeightForWidth_c767_0 (arg1)); } @@ -2199,7 +2200,7 @@ static void _call_cbs_setGeometry_1792_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLayout_Adaptor *)cls)->cbs_setGeometry_1792_0 (arg1); } @@ -2261,7 +2262,7 @@ static void _call_cbs_takeAt_767_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QLayoutItem *)((QLayout_Adaptor *)cls)->cbs_takeAt_767_0 (arg1)); } @@ -2284,7 +2285,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLayout_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQLayoutItem.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQLayoutItem.cc index ce29d56a3..437b2e2ee 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQLayoutItem.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQLayoutItem.cc @@ -718,7 +718,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QLayoutItem_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -818,7 +818,7 @@ static void _call_cbs_minimumHeightForWidth_c767_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QLayoutItem_Adaptor *)cls)->cbs_minimumHeightForWidth_c767_0 (arg1)); } @@ -860,7 +860,7 @@ static void _call_cbs_setGeometry_1792_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLayoutItem_Adaptor *)cls)->cbs_setGeometry_1792_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQLineEdit.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQLineEdit.cc index 9794ce939..b845d78ce 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQLineEdit.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQLineEdit.cc @@ -2470,7 +2470,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -2494,7 +2494,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -2518,7 +2518,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -2542,7 +2542,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -2566,7 +2566,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -2668,7 +2668,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -2732,7 +2732,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -2756,7 +2756,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -2780,7 +2780,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -2804,7 +2804,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -2828,7 +2828,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -2866,7 +2866,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -2890,7 +2890,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QLineEdit_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -2915,8 +2915,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QLineEdit_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -2939,7 +2939,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -2977,7 +2977,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QLineEdit_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -3000,7 +3000,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -3057,7 +3057,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QLineEdit_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -3080,7 +3080,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -3104,7 +3104,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -3147,7 +3147,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -3171,7 +3171,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QLineEdit_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -3226,7 +3226,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -3250,7 +3250,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -3274,7 +3274,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -3298,7 +3298,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QLineEdit_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -3340,7 +3340,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -3364,7 +3364,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -3388,7 +3388,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -3412,7 +3412,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -3436,7 +3436,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -3464,9 +3464,9 @@ static void _call_cbs_nativeEvent_4678_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - long int *arg3 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + long int *arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QLineEdit_Adaptor *)cls)->cbs_nativeEvent_4678_0 (arg1, arg2, arg3)); } @@ -3526,7 +3526,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -3568,7 +3568,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QLineEdit_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -3591,7 +3591,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -3671,7 +3671,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -3714,7 +3714,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -3757,7 +3757,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -3817,7 +3817,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -3856,7 +3856,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQListView.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQListView.cc index 2598123c9..c40db3ef2 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQListView.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQListView.cc @@ -2586,7 +2586,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -2628,7 +2628,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -2652,7 +2652,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -2696,8 +2696,8 @@ static void _call_cbs_closeEditor_4926_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_closeEditor_4926_0 (arg1, arg2); } @@ -2721,7 +2721,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -2745,7 +2745,7 @@ static void _call_cbs_commitData_1315_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_commitData_1315_0 (arg1); } @@ -2783,7 +2783,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -2834,8 +2834,8 @@ static void _call_cbs_currentChanged_4682_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_currentChanged_4682_0 (arg1, arg2); } @@ -2877,7 +2877,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -2905,9 +2905,9 @@ static void _call_cbs_dataChanged_7048_1 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); - const QVector &arg3 = args.read & > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); + const QVector &arg3 = args ? gsi::arg_reader & >() (args, heap) : gsi::arg_maker & >() (QVector(), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_dataChanged_7048_1 (arg1, arg2, arg3); } @@ -2985,7 +2985,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -3062,7 +3062,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -3086,7 +3086,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -3110,7 +3110,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -3153,7 +3153,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -3195,9 +3195,9 @@ static void _call_cbs_edit_6773_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - QEvent *arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + QEvent *arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QListView_Adaptor *)cls)->cbs_edit_6773_0 (arg1, arg2, arg3)); } @@ -3220,7 +3220,7 @@ static void _call_cbs_editorDestroyed_1302_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_editorDestroyed_1302_0 (arg1); } @@ -3244,7 +3244,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -3286,7 +3286,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QListView_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -3311,8 +3311,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QListView_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -3350,7 +3350,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -3388,7 +3388,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QListView_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -3411,7 +3411,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -3468,7 +3468,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QListView_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -3491,7 +3491,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -3534,7 +3534,7 @@ static void _call_cbs_horizontalScrollbarAction_767_0 (const qt_gsi::GenericMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_horizontalScrollbarAction_767_0 (arg1); } @@ -3558,7 +3558,7 @@ static void _call_cbs_horizontalScrollbarValueChanged_767_0 (const qt_gsi::Gener { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_horizontalScrollbarValueChanged_767_0 (arg1); } @@ -3614,7 +3614,7 @@ static void _call_cbs_indexAt_c1916_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QListView_Adaptor *)cls)->cbs_indexAt_c1916_0 (arg1)); } @@ -3655,7 +3655,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -3698,7 +3698,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -3722,7 +3722,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QListView_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -3745,7 +3745,7 @@ static void _call_cbs_isIndexHidden_c2395_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QListView_Adaptor *)cls)->cbs_isIndexHidden_c2395_0 (arg1)); } @@ -3786,7 +3786,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -3810,7 +3810,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -3834,7 +3834,7 @@ static void _call_cbs_keyboardSearch_2025_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_keyboardSearch_2025_0 (arg1); } @@ -3858,7 +3858,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -3882,7 +3882,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QListView_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -3924,7 +3924,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -3948,7 +3948,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -3972,7 +3972,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -3996,7 +3996,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -4022,8 +4022,8 @@ static void _call_cbs_moveCursor_6476_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); - QFlags arg2 = args.read > (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); ret.write ((QModelIndex)((QListView_Adaptor *)cls)->cbs_moveCursor_6476_0 (arg1, arg2)); } @@ -4046,7 +4046,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -4074,9 +4074,9 @@ static void _call_cbs_nativeEvent_4678_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - long int *arg3 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + long int *arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QListView_Adaptor *)cls)->cbs_nativeEvent_4678_0 (arg1, arg2, arg3)); } @@ -4136,7 +4136,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -4214,7 +4214,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QListView_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -4279,7 +4279,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -4307,9 +4307,9 @@ static void _call_cbs_rowsAboutToBeRemoved_3713_0 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_rowsAboutToBeRemoved_3713_0 (arg1, arg2, arg3); } @@ -4337,9 +4337,9 @@ static void _call_cbs_rowsInserted_3713_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_rowsInserted_3713_0 (arg1, arg2, arg3); } @@ -4380,8 +4380,8 @@ static void _call_cbs_scrollContentsBy_1426_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_scrollContentsBy_1426_0 (arg1, arg2); } @@ -4429,8 +4429,8 @@ static void _call_cbs_scrollTo_5576_1 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QAbstractItemView::EnsureVisible), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_scrollTo_5576_1 (arg1, arg2); } @@ -4495,8 +4495,8 @@ static void _call_cbs_selectionChanged_5346_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QItemSelection &arg1 = args.read (heap); - const QItemSelection &arg2 = args.read (heap); + const QItemSelection &arg1 = gsi::arg_reader() (args, heap); + const QItemSelection &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_selectionChanged_5346_0 (arg1, arg2); } @@ -4522,8 +4522,8 @@ static void _call_cbs_selectionCommand_c4199_1 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QEvent *arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QEvent *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); ret.write > ((QFlags)((QListView_Adaptor *)cls)->cbs_selectionCommand_c4199_1 (arg1, arg2)); } @@ -4612,7 +4612,7 @@ static void _call_cbs_setModel_2419_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractItemModel *arg1 = args.read (heap); + QAbstractItemModel *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_setModel_2419_0 (arg1); } @@ -4658,7 +4658,7 @@ static void _call_cbs_setRootIndex_2395_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_setRootIndex_2395_0 (arg1); } @@ -4684,8 +4684,8 @@ static void _call_cbs_setSelection_6155_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); - QFlags arg2 = args.read > (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_setSelection_6155_0 (arg1, arg2); } @@ -4709,7 +4709,7 @@ static void _call_cbs_setSelectionModel_2533_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QItemSelectionModel *arg1 = args.read (heap); + QItemSelectionModel *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_setSelectionModel_2533_0 (arg1); } @@ -4818,7 +4818,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -4842,7 +4842,7 @@ static void _call_cbs_setupViewport_1315_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_setupViewport_1315_0 (arg1); } @@ -4885,7 +4885,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -4928,7 +4928,7 @@ static void _call_cbs_sizeHintForColumn_c767_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QListView_Adaptor *)cls)->cbs_sizeHintForColumn_c767_0 (arg1)); } @@ -4951,7 +4951,7 @@ static void _call_cbs_sizeHintForRow_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QListView_Adaptor *)cls)->cbs_sizeHintForRow_c767_0 (arg1)); } @@ -4989,7 +4989,7 @@ static void _call_cbs_startDrag_2456_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_startDrag_2456_0 (arg1); } @@ -5042,7 +5042,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -5066,7 +5066,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -5184,7 +5184,7 @@ static void _call_cbs_verticalScrollbarAction_767_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_verticalScrollbarAction_767_0 (arg1); } @@ -5208,7 +5208,7 @@ static void _call_cbs_verticalScrollbarValueChanged_767_0 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_verticalScrollbarValueChanged_767_0 (arg1); } @@ -5279,7 +5279,7 @@ static void _call_cbs_viewportEvent_1217_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QListView_Adaptor *)cls)->cbs_viewportEvent_1217_0 (arg1)); } @@ -5335,7 +5335,7 @@ static void _call_cbs_visualRect_c2395_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QListView_Adaptor *)cls)->cbs_visualRect_c2395_0 (arg1)); } @@ -5358,7 +5358,7 @@ static void _call_cbs_visualRegionForSelection_c2727_0 (const qt_gsi::GenericMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QItemSelection &arg1 = args.read (heap); + const QItemSelection &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRegion)((QListView_Adaptor *)cls)->cbs_visualRegionForSelection_c2727_0 (arg1)); } @@ -5381,7 +5381,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQListWidget.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQListWidget.cc index 009a9f731..8b5d99c07 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQListWidget.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQListWidget.cc @@ -2862,7 +2862,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -2904,7 +2904,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -2928,7 +2928,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -2972,8 +2972,8 @@ static void _call_cbs_closeEditor_4926_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_closeEditor_4926_0 (arg1, arg2); } @@ -2997,7 +2997,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -3021,7 +3021,7 @@ static void _call_cbs_commitData_1315_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_commitData_1315_0 (arg1); } @@ -3059,7 +3059,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -3110,8 +3110,8 @@ static void _call_cbs_currentChanged_4682_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_currentChanged_4682_0 (arg1, arg2); } @@ -3210,7 +3210,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -3238,9 +3238,9 @@ static void _call_cbs_dataChanged_7048_1 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); - const QVector &arg3 = args.read & > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); + const QVector &arg3 = args ? gsi::arg_reader & >() (args, heap) : gsi::arg_maker & >() (QVector(), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_dataChanged_7048_1 (arg1, arg2, arg3); } @@ -3318,7 +3318,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -3395,7 +3395,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -3419,7 +3419,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -3443,7 +3443,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -3486,7 +3486,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -3528,9 +3528,9 @@ static void _call_cbs_dropMimeData_4479_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QMimeData *arg2 = args.read (heap); - const qt_gsi::Converter::target_type & arg3 = args.read::target_type & > (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QMimeData *arg2 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg3 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((bool)((QListWidget_Adaptor *)cls)->cbs_dropMimeData_4479_0 (arg1, arg2, arg3)); } @@ -3557,9 +3557,9 @@ static void _call_cbs_edit_6773_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - QEvent *arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + QEvent *arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QListWidget_Adaptor *)cls)->cbs_edit_6773_0 (arg1, arg2, arg3)); } @@ -3582,7 +3582,7 @@ static void _call_cbs_editorDestroyed_1302_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_editorDestroyed_1302_0 (arg1); } @@ -3606,7 +3606,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -3648,7 +3648,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QListWidget_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -3673,8 +3673,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QListWidget_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -3712,7 +3712,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -3750,7 +3750,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QListWidget_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -3773,7 +3773,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -3830,7 +3830,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QListWidget_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -3853,7 +3853,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -3896,7 +3896,7 @@ static void _call_cbs_horizontalScrollbarAction_767_0 (const qt_gsi::GenericMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_horizontalScrollbarAction_767_0 (arg1); } @@ -3920,7 +3920,7 @@ static void _call_cbs_horizontalScrollbarValueChanged_767_0 (const qt_gsi::Gener { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_horizontalScrollbarValueChanged_767_0 (arg1); } @@ -3976,7 +3976,7 @@ static void _call_cbs_indexAt_c1916_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QListWidget_Adaptor *)cls)->cbs_indexAt_c1916_0 (arg1)); } @@ -4053,7 +4053,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -4096,7 +4096,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -4120,7 +4120,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QListWidget_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -4143,7 +4143,7 @@ static void _call_cbs_isIndexHidden_c2395_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QListWidget_Adaptor *)cls)->cbs_isIndexHidden_c2395_0 (arg1)); } @@ -4342,7 +4342,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -4366,7 +4366,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -4390,7 +4390,7 @@ static void _call_cbs_keyboardSearch_2025_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_keyboardSearch_2025_0 (arg1); } @@ -4414,7 +4414,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -4438,7 +4438,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QListWidget_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -4461,7 +4461,7 @@ static void _call_cbs_mimeData_c3292_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList arg1 = args.read > (heap); + const QList arg1 = gsi::arg_reader >() (args, heap); ret.write ((QMimeData *)((QListWidget_Adaptor *)cls)->cbs_mimeData_c3292_0 (arg1)); } @@ -4522,7 +4522,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -4546,7 +4546,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -4570,7 +4570,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -4594,7 +4594,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -4620,8 +4620,8 @@ static void _call_cbs_moveCursor_6476_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); - QFlags arg2 = args.read > (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); ret.write ((QModelIndex)((QListWidget_Adaptor *)cls)->cbs_moveCursor_6476_0 (arg1, arg2)); } @@ -4644,7 +4644,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -4672,9 +4672,9 @@ static void _call_cbs_nativeEvent_4678_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - long int *arg3 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + long int *arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QListWidget_Adaptor *)cls)->cbs_nativeEvent_4678_0 (arg1, arg2, arg3)); } @@ -4734,7 +4734,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -4812,7 +4812,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QListWidget_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -4877,7 +4877,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -4905,9 +4905,9 @@ static void _call_cbs_rowsAboutToBeRemoved_3713_0 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_rowsAboutToBeRemoved_3713_0 (arg1, arg2, arg3); } @@ -4935,9 +4935,9 @@ static void _call_cbs_rowsInserted_3713_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_rowsInserted_3713_0 (arg1, arg2, arg3); } @@ -4978,8 +4978,8 @@ static void _call_cbs_scrollContentsBy_1426_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_scrollContentsBy_1426_0 (arg1, arg2); } @@ -5027,8 +5027,8 @@ static void _call_cbs_scrollTo_5576_1 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QAbstractItemView::EnsureVisible), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_scrollTo_5576_1 (arg1, arg2); } @@ -5093,8 +5093,8 @@ static void _call_cbs_selectionChanged_5346_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QItemSelection &arg1 = args.read (heap); - const QItemSelection &arg2 = args.read (heap); + const QItemSelection &arg1 = gsi::arg_reader() (args, heap); + const QItemSelection &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_selectionChanged_5346_0 (arg1, arg2); } @@ -5120,8 +5120,8 @@ static void _call_cbs_selectionCommand_c4199_1 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QEvent *arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QEvent *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); ret.write > ((QFlags)((QListWidget_Adaptor *)cls)->cbs_selectionCommand_c4199_1 (arg1, arg2)); } @@ -5232,7 +5232,7 @@ static void _call_cbs_setRootIndex_2395_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_setRootIndex_2395_0 (arg1); } @@ -5258,8 +5258,8 @@ static void _call_cbs_setSelection_6155_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); - QFlags arg2 = args.read > (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_setSelection_6155_0 (arg1, arg2); } @@ -5283,7 +5283,7 @@ static void _call_cbs_setSelectionModel_2533_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QItemSelectionModel *arg1 = args.read (heap); + QItemSelectionModel *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_setSelectionModel_2533_0 (arg1); } @@ -5392,7 +5392,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -5416,7 +5416,7 @@ static void _call_cbs_setupViewport_1315_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_setupViewport_1315_0 (arg1); } @@ -5459,7 +5459,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -5502,7 +5502,7 @@ static void _call_cbs_sizeHintForColumn_c767_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QListWidget_Adaptor *)cls)->cbs_sizeHintForColumn_c767_0 (arg1)); } @@ -5525,7 +5525,7 @@ static void _call_cbs_sizeHintForRow_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QListWidget_Adaptor *)cls)->cbs_sizeHintForRow_c767_0 (arg1)); } @@ -5563,7 +5563,7 @@ static void _call_cbs_startDrag_2456_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_startDrag_2456_0 (arg1); } @@ -5635,7 +5635,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -5659,7 +5659,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -5777,7 +5777,7 @@ static void _call_cbs_verticalScrollbarAction_767_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_verticalScrollbarAction_767_0 (arg1); } @@ -5801,7 +5801,7 @@ static void _call_cbs_verticalScrollbarValueChanged_767_0 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_verticalScrollbarValueChanged_767_0 (arg1); } @@ -5872,7 +5872,7 @@ static void _call_cbs_viewportEvent_1217_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QListWidget_Adaptor *)cls)->cbs_viewportEvent_1217_0 (arg1)); } @@ -5928,7 +5928,7 @@ static void _call_cbs_visualRect_c2395_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QListWidget_Adaptor *)cls)->cbs_visualRect_c2395_0 (arg1)); } @@ -5951,7 +5951,7 @@ static void _call_cbs_visualRegionForSelection_c2727_0 (const qt_gsi::GenericMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QItemSelection &arg1 = args.read (heap); + const QItemSelection &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRegion)((QListWidget_Adaptor *)cls)->cbs_visualRegionForSelection_c2727_0 (arg1)); } @@ -5974,7 +5974,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQListWidgetItem.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQListWidgetItem.cc index de624afe9..cbf03348f 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQListWidgetItem.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQListWidgetItem.cc @@ -1135,7 +1135,7 @@ static void _call_cbs_data_c767_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QListWidgetItem_Adaptor *)cls)->cbs_data_c767_0 (arg1)); } @@ -1158,7 +1158,7 @@ static void _call_cbs_operator_lt__c2817_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QListWidgetItem &arg1 = args.read (heap); + const QListWidgetItem &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QListWidgetItem_Adaptor *)cls)->cbs_operator_lt__c2817_0 (arg1)); } @@ -1181,7 +1181,7 @@ static void _call_cbs_read_1697_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDataStream &arg1 = args.read (heap); + QDataStream &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidgetItem_Adaptor *)cls)->cbs_read_1697_0 (arg1); } @@ -1205,7 +1205,7 @@ static void _call_cbs_setBackgroundColor_1905_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QColor &arg1 = args.read (heap); + const QColor &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidgetItem_Adaptor *)cls)->cbs_setBackgroundColor_1905_0 (arg1); } @@ -1231,8 +1231,8 @@ static void _call_cbs_setData_2778_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidgetItem_Adaptor *)cls)->cbs_setData_2778_0 (arg1, arg2); } @@ -1256,7 +1256,7 @@ static void _call_cbs_write_c1697_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDataStream &arg1 = args.read (heap); + QDataStream &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidgetItem_Adaptor *)cls)->cbs_write_c1697_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQMainWindow.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQMainWindow.cc index fe2e16f76..5c18fb6a5 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQMainWindow.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQMainWindow.cc @@ -2133,7 +2133,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -2157,7 +2157,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -2181,7 +2181,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -2205,7 +2205,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -2229,7 +2229,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -2315,7 +2315,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -2379,7 +2379,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -2403,7 +2403,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -2427,7 +2427,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -2451,7 +2451,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -2475,7 +2475,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -2499,7 +2499,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -2523,7 +2523,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMainWindow_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -2548,8 +2548,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMainWindow_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -2572,7 +2572,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -2610,7 +2610,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMainWindow_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -2633,7 +2633,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -2690,7 +2690,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QMainWindow_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -2713,7 +2713,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -2755,7 +2755,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -2779,7 +2779,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2803,7 +2803,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QMainWindow_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2844,7 +2844,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2868,7 +2868,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2892,7 +2892,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2916,7 +2916,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QMainWindow_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2958,7 +2958,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2982,7 +2982,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -3006,7 +3006,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -3030,7 +3030,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -3054,7 +3054,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -3082,9 +3082,9 @@ static void _call_cbs_nativeEvent_4678_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - long int *arg3 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + long int *arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMainWindow_Adaptor *)cls)->cbs_nativeEvent_4678_0 (arg1, arg2, arg3)); } @@ -3144,7 +3144,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -3186,7 +3186,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QMainWindow_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -3209,7 +3209,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -3261,7 +3261,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -3304,7 +3304,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -3365,7 +3365,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -3389,7 +3389,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -3446,7 +3446,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQMdiArea.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQMdiArea.cc index d532efd93..8655576c0 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQMdiArea.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQMdiArea.cc @@ -1723,7 +1723,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1747,7 +1747,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1771,7 +1771,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1795,7 +1795,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1819,7 +1819,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1886,7 +1886,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1950,7 +1950,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1974,7 +1974,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1998,7 +1998,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -2022,7 +2022,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -2065,7 +2065,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -2089,7 +2089,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -2113,7 +2113,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMdiArea_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -2138,8 +2138,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMdiArea_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -2162,7 +2162,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -2200,7 +2200,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMdiArea_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -2223,7 +2223,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -2280,7 +2280,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QMdiArea_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -2303,7 +2303,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -2327,7 +2327,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -2370,7 +2370,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2394,7 +2394,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QMdiArea_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2435,7 +2435,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2459,7 +2459,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2483,7 +2483,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2507,7 +2507,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QMdiArea_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2549,7 +2549,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2573,7 +2573,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2597,7 +2597,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2621,7 +2621,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2645,7 +2645,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2673,9 +2673,9 @@ static void _call_cbs_nativeEvent_4678_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - long int *arg3 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + long int *arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMdiArea_Adaptor *)cls)->cbs_nativeEvent_4678_0 (arg1, arg2, arg3)); } @@ -2735,7 +2735,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2777,7 +2777,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QMdiArea_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -2800,7 +2800,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2826,8 +2826,8 @@ static void _call_cbs_scrollContentsBy_1426_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea_Adaptor *)cls)->cbs_scrollContentsBy_1426_0 (arg1, arg2); } @@ -2926,7 +2926,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2950,7 +2950,7 @@ static void _call_cbs_setupViewport_1315_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea_Adaptor *)cls)->cbs_setupViewport_1315_0 (arg1); } @@ -2993,7 +2993,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -3054,7 +3054,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -3078,7 +3078,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -3117,7 +3117,7 @@ static void _call_cbs_viewportEvent_1217_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMdiArea_Adaptor *)cls)->cbs_viewportEvent_1217_0 (arg1)); } @@ -3173,7 +3173,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQMdiSubWindow.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQMdiSubWindow.cc index 3cb968918..8f4833a20 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQMdiSubWindow.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQMdiSubWindow.cc @@ -1393,7 +1393,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiSubWindow_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1417,7 +1417,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiSubWindow_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1441,7 +1441,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiSubWindow_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1465,7 +1465,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiSubWindow_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1489,7 +1489,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiSubWindow_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1556,7 +1556,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiSubWindow_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1620,7 +1620,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiSubWindow_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1644,7 +1644,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiSubWindow_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1668,7 +1668,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiSubWindow_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1692,7 +1692,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiSubWindow_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1716,7 +1716,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiSubWindow_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1740,7 +1740,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiSubWindow_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -1764,7 +1764,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMdiSubWindow_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1789,8 +1789,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMdiSubWindow_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1813,7 +1813,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiSubWindow_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1851,7 +1851,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMdiSubWindow_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -1874,7 +1874,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiSubWindow_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -1931,7 +1931,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QMdiSubWindow_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -1954,7 +1954,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiSubWindow_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -1978,7 +1978,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiSubWindow_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -2002,7 +2002,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiSubWindow_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2026,7 +2026,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QMdiSubWindow_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2067,7 +2067,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiSubWindow_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2091,7 +2091,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiSubWindow_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2115,7 +2115,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiSubWindow_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2139,7 +2139,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QMdiSubWindow_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2181,7 +2181,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiSubWindow_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2205,7 +2205,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiSubWindow_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2229,7 +2229,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiSubWindow_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2253,7 +2253,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiSubWindow_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2277,7 +2277,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiSubWindow_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2305,9 +2305,9 @@ static void _call_cbs_nativeEvent_4678_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - long int *arg3 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + long int *arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMdiSubWindow_Adaptor *)cls)->cbs_nativeEvent_4678_0 (arg1, arg2, arg3)); } @@ -2367,7 +2367,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiSubWindow_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2409,7 +2409,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QMdiSubWindow_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -2432,7 +2432,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiSubWindow_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2484,7 +2484,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiSubWindow_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2527,7 +2527,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiSubWindow_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2570,7 +2570,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiSubWindow_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2594,7 +2594,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiSubWindow_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2633,7 +2633,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiSubWindow_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQMenu.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQMenu.cc index e07c84f53..5519a7f9c 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQMenu.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQMenu.cc @@ -2019,7 +2019,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenu_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -2043,7 +2043,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenu_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -2067,7 +2067,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenu_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -2091,7 +2091,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenu_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -2129,7 +2129,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenu_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -2196,7 +2196,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenu_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -2260,7 +2260,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenu_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -2284,7 +2284,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenu_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -2308,7 +2308,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenu_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -2332,7 +2332,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenu_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -2356,7 +2356,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenu_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -2380,7 +2380,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenu_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -2404,7 +2404,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMenu_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -2429,8 +2429,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMenu_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -2453,7 +2453,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenu_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -2491,7 +2491,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMenu_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -2514,7 +2514,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenu_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -2571,7 +2571,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QMenu_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -2594,7 +2594,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenu_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -2636,7 +2636,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenu_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -2682,7 +2682,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenu_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2706,7 +2706,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QMenu_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2747,7 +2747,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenu_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2771,7 +2771,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenu_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2795,7 +2795,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenu_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2819,7 +2819,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QMenu_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2861,7 +2861,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenu_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2885,7 +2885,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenu_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2909,7 +2909,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenu_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2933,7 +2933,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenu_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2957,7 +2957,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenu_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2985,9 +2985,9 @@ static void _call_cbs_nativeEvent_4678_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - long int *arg3 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + long int *arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMenu_Adaptor *)cls)->cbs_nativeEvent_4678_0 (arg1, arg2, arg3)); } @@ -3047,7 +3047,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenu_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -3089,7 +3089,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QMenu_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -3112,7 +3112,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenu_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -3164,7 +3164,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenu_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -3207,7 +3207,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenu_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -3250,7 +3250,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenu_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -3274,7 +3274,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenu_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -3331,7 +3331,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenu_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQMenuBar.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQMenuBar.cc index cdf5c8a63..23e35a913 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQMenuBar.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQMenuBar.cc @@ -1527,7 +1527,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenuBar_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1551,7 +1551,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenuBar_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1575,7 +1575,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenuBar_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1599,7 +1599,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenuBar_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1623,7 +1623,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenuBar_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1690,7 +1690,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenuBar_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1754,7 +1754,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenuBar_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1778,7 +1778,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenuBar_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1802,7 +1802,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenuBar_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1826,7 +1826,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenuBar_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1850,7 +1850,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenuBar_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1874,7 +1874,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenuBar_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -1898,7 +1898,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMenuBar_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1923,8 +1923,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMenuBar_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1947,7 +1947,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenuBar_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1985,7 +1985,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMenuBar_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -2008,7 +2008,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenuBar_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -2065,7 +2065,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QMenuBar_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -2088,7 +2088,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenuBar_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -2130,7 +2130,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenuBar_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -2176,7 +2176,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenuBar_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2200,7 +2200,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QMenuBar_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2241,7 +2241,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenuBar_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2265,7 +2265,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenuBar_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2289,7 +2289,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenuBar_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2313,7 +2313,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QMenuBar_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2355,7 +2355,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenuBar_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2379,7 +2379,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenuBar_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2403,7 +2403,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenuBar_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2427,7 +2427,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenuBar_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2451,7 +2451,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenuBar_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2479,9 +2479,9 @@ static void _call_cbs_nativeEvent_4678_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - long int *arg3 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + long int *arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMenuBar_Adaptor *)cls)->cbs_nativeEvent_4678_0 (arg1, arg2, arg3)); } @@ -2541,7 +2541,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenuBar_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2583,7 +2583,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QMenuBar_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -2606,7 +2606,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenuBar_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2658,7 +2658,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenuBar_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2701,7 +2701,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenuBar_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2744,7 +2744,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenuBar_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2768,7 +2768,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenuBar_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2825,7 +2825,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenuBar_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQMessageBox.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQMessageBox.cc index 70eaf99cf..f7f06476f 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQMessageBox.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQMessageBox.cc @@ -2231,7 +2231,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -2292,7 +2292,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -2316,7 +2316,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -2340,7 +2340,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -2364,7 +2364,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -2431,7 +2431,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -2495,7 +2495,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -2519,7 +2519,7 @@ static void _call_cbs_done_767_0 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox_Adaptor *)cls)->cbs_done_767_0 (arg1); } @@ -2543,7 +2543,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -2567,7 +2567,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -2591,7 +2591,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -2615,7 +2615,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -2639,7 +2639,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -2663,7 +2663,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMessageBox_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -2688,8 +2688,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMessageBox_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -2749,7 +2749,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -2787,7 +2787,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMessageBox_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -2810,7 +2810,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -2867,7 +2867,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QMessageBox_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -2890,7 +2890,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -2914,7 +2914,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -2938,7 +2938,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2962,7 +2962,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QMessageBox_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -3003,7 +3003,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -3027,7 +3027,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -3051,7 +3051,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -3075,7 +3075,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QMessageBox_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -3117,7 +3117,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -3141,7 +3141,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -3165,7 +3165,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -3189,7 +3189,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -3213,7 +3213,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -3241,9 +3241,9 @@ static void _call_cbs_nativeEvent_4678_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - long int *arg3 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + long int *arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMessageBox_Adaptor *)cls)->cbs_nativeEvent_4678_0 (arg1, arg2, arg3)); } @@ -3323,7 +3323,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -3365,7 +3365,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QMessageBox_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -3422,7 +3422,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -3474,7 +3474,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -3517,7 +3517,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -3560,7 +3560,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -3584,7 +3584,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -3623,7 +3623,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQPanGesture.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQPanGesture.cc index 3108f78f9..d5350b461 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQPanGesture.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQPanGesture.cc @@ -438,7 +438,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPanGesture_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -462,7 +462,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPanGesture_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -504,7 +504,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPanGesture_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -528,7 +528,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPanGesture_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -553,8 +553,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPanGesture_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -659,7 +659,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPanGesture_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQPinchGesture.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQPinchGesture.cc index aae815f5b..114eee5c8 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQPinchGesture.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQPinchGesture.cc @@ -718,7 +718,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPinchGesture_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -742,7 +742,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPinchGesture_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -784,7 +784,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPinchGesture_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -808,7 +808,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPinchGesture_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -833,8 +833,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPinchGesture_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -939,7 +939,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPinchGesture_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQPlainTextDocumentLayout.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQPlainTextDocumentLayout.cc index b5abc2011..74c59eb04 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQPlainTextDocumentLayout.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQPlainTextDocumentLayout.cc @@ -708,7 +708,7 @@ static void _call_cbs_blockBoundingRect_c2306_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextBlock &arg1 = args.read (heap); + const QTextBlock &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRectF)((QPlainTextDocumentLayout_Adaptor *)cls)->cbs_blockBoundingRect_c2306_0 (arg1)); } @@ -731,7 +731,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextDocumentLayout_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -755,7 +755,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextDocumentLayout_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -797,7 +797,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextDocumentLayout_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -825,9 +825,9 @@ static void _call_cbs_documentChanged_2085_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextDocumentLayout_Adaptor *)cls)->cbs_documentChanged_2085_0 (arg1, arg2, arg3); } @@ -890,8 +890,8 @@ static void _call_cbs_draw_6787_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QAbstractTextDocumentLayout::PaintContext &arg2 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QAbstractTextDocumentLayout::PaintContext &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextDocumentLayout_Adaptor *)cls)->cbs_draw_6787_0 (arg1, arg2); } @@ -923,11 +923,11 @@ static void _call_cbs_drawInlineObject_8199_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QRectF &arg2 = args.read (heap); - QTextInlineObject arg3 = args.read (heap); - int arg4 = args.read (heap); - const QTextFormat &arg5 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QRectF &arg2 = gsi::arg_reader() (args, heap); + QTextInlineObject arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + const QTextFormat &arg5 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextDocumentLayout_Adaptor *)cls)->cbs_drawInlineObject_8199_0 (arg1, arg2, arg3, arg4, arg5); } @@ -951,7 +951,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPlainTextDocumentLayout_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -976,8 +976,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPlainTextDocumentLayout_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1036,7 +1036,7 @@ static void _call_cbs_frameBoundingRect_c1615_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTextFrame *arg1 = args.read (heap); + QTextFrame *arg1 = gsi::arg_reader() (args, heap); ret.write ((QRectF)((QPlainTextDocumentLayout_Adaptor *)cls)->cbs_frameBoundingRect_c1615_0 (arg1)); } @@ -1061,8 +1061,8 @@ static void _call_cbs_hitTest_c4147_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QPlainTextDocumentLayout_Adaptor *)cls)->cbs_hitTest_c4147_0 (arg1, arg2)); } @@ -1162,9 +1162,9 @@ static void _call_cbs_positionInlineObject_5127_0 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTextInlineObject arg1 = args.read (heap); - int arg2 = args.read (heap); - const QTextFormat &arg3 = args.read (heap); + QTextInlineObject arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QTextFormat &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextDocumentLayout_Adaptor *)cls)->cbs_positionInlineObject_5127_0 (arg1, arg2, arg3); } @@ -1210,9 +1210,9 @@ static void _call_cbs_resizeInlineObject_5127_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTextInlineObject arg1 = args.read (heap); - int arg2 = args.read (heap); - const QTextFormat &arg3 = args.read (heap); + QTextInlineObject arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QTextFormat &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextDocumentLayout_Adaptor *)cls)->cbs_resizeInlineObject_5127_0 (arg1, arg2, arg3); } @@ -1264,7 +1264,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextDocumentLayout_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQPlainTextEdit.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQPlainTextEdit.cc index 7ba8edd1d..c0b82239a 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQPlainTextEdit.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQPlainTextEdit.cc @@ -2660,7 +2660,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -2738,7 +2738,7 @@ static void _call_cbs_canInsertFromMimeData_c2168_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMimeData *arg1 = args.read (heap); + const QMimeData *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPlainTextEdit_Adaptor *)cls)->cbs_canInsertFromMimeData_c2168_0 (arg1)); } @@ -2761,7 +2761,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -2785,7 +2785,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -2809,7 +2809,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -2847,7 +2847,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -2965,7 +2965,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -3029,7 +3029,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -3053,7 +3053,7 @@ static void _call_cbs_doSetTextCursor_2453_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextCursor &arg1 = args.read (heap); + const QTextCursor &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit_Adaptor *)cls)->cbs_doSetTextCursor_2453_0 (arg1); } @@ -3077,7 +3077,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -3101,7 +3101,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -3125,7 +3125,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -3168,7 +3168,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -3192,7 +3192,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -3216,7 +3216,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPlainTextEdit_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -3241,8 +3241,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPlainTextEdit_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -3279,7 +3279,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -3317,7 +3317,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPlainTextEdit_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -3340,7 +3340,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -3411,7 +3411,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QPlainTextEdit_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -3434,7 +3434,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -3458,7 +3458,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -3501,7 +3501,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -3525,7 +3525,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QPlainTextEdit_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -3548,7 +3548,7 @@ static void _call_cbs_insertFromMimeData_2168_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMimeData *arg1 = args.read (heap); + const QMimeData *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit_Adaptor *)cls)->cbs_insertFromMimeData_2168_0 (arg1); } @@ -3590,7 +3590,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -3614,7 +3614,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -3638,7 +3638,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -3664,8 +3664,8 @@ static void _call_cbs_loadResource_2360_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QUrl &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QUrl &arg2 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QPlainTextEdit_Adaptor *)cls)->cbs_loadResource_2360_0 (arg1, arg2)); } @@ -3688,7 +3688,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QPlainTextEdit_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -3748,7 +3748,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -3772,7 +3772,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -3796,7 +3796,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -3820,7 +3820,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -3844,7 +3844,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -3872,9 +3872,9 @@ static void _call_cbs_nativeEvent_4678_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - long int *arg3 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + long int *arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPlainTextEdit_Adaptor *)cls)->cbs_nativeEvent_4678_0 (arg1, arg2, arg3)); } @@ -3934,7 +3934,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -3976,7 +3976,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QPlainTextEdit_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -4017,7 +4017,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -4043,8 +4043,8 @@ static void _call_cbs_scrollContentsBy_1426_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit_Adaptor *)cls)->cbs_scrollContentsBy_1426_0 (arg1, arg2); } @@ -4157,7 +4157,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -4181,7 +4181,7 @@ static void _call_cbs_setupViewport_1315_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit_Adaptor *)cls)->cbs_setupViewport_1315_0 (arg1); } @@ -4224,7 +4224,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -4267,7 +4267,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -4305,7 +4305,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -4383,7 +4383,7 @@ static void _call_cbs_viewportEvent_1217_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPlainTextEdit_Adaptor *)cls)->cbs_viewportEvent_1217_0 (arg1)); } @@ -4439,7 +4439,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQProgressBar.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQProgressBar.cc index 5798c93da..80a64ca4a 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQProgressBar.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQProgressBar.cc @@ -1500,7 +1500,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressBar_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1524,7 +1524,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressBar_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1548,7 +1548,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressBar_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1572,7 +1572,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressBar_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1596,7 +1596,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressBar_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1663,7 +1663,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressBar_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1727,7 +1727,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressBar_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1751,7 +1751,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressBar_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1775,7 +1775,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressBar_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1799,7 +1799,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressBar_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1823,7 +1823,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressBar_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1847,7 +1847,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressBar_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -1871,7 +1871,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QProgressBar_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1896,8 +1896,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QProgressBar_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1920,7 +1920,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressBar_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1958,7 +1958,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QProgressBar_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -1981,7 +1981,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressBar_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -2038,7 +2038,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QProgressBar_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -2061,7 +2061,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressBar_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -2085,7 +2085,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressBar_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -2128,7 +2128,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressBar_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2152,7 +2152,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QProgressBar_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2193,7 +2193,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressBar_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2217,7 +2217,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressBar_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2241,7 +2241,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressBar_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2265,7 +2265,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QProgressBar_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2307,7 +2307,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressBar_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2331,7 +2331,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressBar_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2355,7 +2355,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressBar_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2379,7 +2379,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressBar_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2403,7 +2403,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressBar_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2431,9 +2431,9 @@ static void _call_cbs_nativeEvent_4678_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - long int *arg3 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + long int *arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QProgressBar_Adaptor *)cls)->cbs_nativeEvent_4678_0 (arg1, arg2, arg3)); } @@ -2493,7 +2493,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressBar_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2535,7 +2535,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QProgressBar_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -2558,7 +2558,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressBar_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2610,7 +2610,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressBar_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2653,7 +2653,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressBar_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2696,7 +2696,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressBar_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2739,7 +2739,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressBar_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2796,7 +2796,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressBar_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQProgressDialog.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQProgressDialog.cc index 10a19e723..b0256828a 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQProgressDialog.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQProgressDialog.cc @@ -1721,7 +1721,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1778,7 +1778,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1802,7 +1802,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1826,7 +1826,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1850,7 +1850,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1917,7 +1917,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1981,7 +1981,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -2005,7 +2005,7 @@ static void _call_cbs_done_767_0 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog_Adaptor *)cls)->cbs_done_767_0 (arg1); } @@ -2029,7 +2029,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -2053,7 +2053,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -2077,7 +2077,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -2101,7 +2101,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -2125,7 +2125,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -2149,7 +2149,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QProgressDialog_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -2174,8 +2174,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QProgressDialog_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -2235,7 +2235,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -2273,7 +2273,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QProgressDialog_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -2296,7 +2296,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -2368,7 +2368,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QProgressDialog_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -2391,7 +2391,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -2415,7 +2415,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -2439,7 +2439,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2463,7 +2463,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QProgressDialog_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2504,7 +2504,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2528,7 +2528,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2552,7 +2552,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2576,7 +2576,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QProgressDialog_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2618,7 +2618,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2642,7 +2642,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2666,7 +2666,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2690,7 +2690,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2714,7 +2714,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2742,9 +2742,9 @@ static void _call_cbs_nativeEvent_4678_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - long int *arg3 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + long int *arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QProgressDialog_Adaptor *)cls)->cbs_nativeEvent_4678_0 (arg1, arg2, arg3)); } @@ -2824,7 +2824,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2866,7 +2866,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QProgressDialog_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -2923,7 +2923,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2975,7 +2975,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -3018,7 +3018,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -3061,7 +3061,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -3085,7 +3085,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -3124,7 +3124,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQPushButton.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQPushButton.cc index 24de11ee2..1ee572e5b 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQPushButton.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQPushButton.cc @@ -1382,7 +1382,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPushButton_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1406,7 +1406,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPushButton_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1450,7 +1450,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPushButton_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1492,7 +1492,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPushButton_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1516,7 +1516,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPushButton_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1583,7 +1583,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPushButton_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1647,7 +1647,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPushButton_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1671,7 +1671,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPushButton_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1695,7 +1695,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPushButton_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1719,7 +1719,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPushButton_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1743,7 +1743,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPushButton_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1767,7 +1767,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPushButton_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -1791,7 +1791,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPushButton_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1816,8 +1816,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPushButton_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1840,7 +1840,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPushButton_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1878,7 +1878,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPushButton_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -1901,7 +1901,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPushButton_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -1958,7 +1958,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QPushButton_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -1981,7 +1981,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPushButton_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -2005,7 +2005,7 @@ static void _call_cbs_hitButton_c1916_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPushButton_Adaptor *)cls)->cbs_hitButton_c1916_0 (arg1)); } @@ -2028,7 +2028,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPushButton_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -2071,7 +2071,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPushButton_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2095,7 +2095,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QPushButton_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2136,7 +2136,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPushButton_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2160,7 +2160,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPushButton_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2184,7 +2184,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPushButton_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2208,7 +2208,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QPushButton_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2250,7 +2250,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPushButton_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2274,7 +2274,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPushButton_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2298,7 +2298,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPushButton_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2322,7 +2322,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPushButton_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2346,7 +2346,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPushButton_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2374,9 +2374,9 @@ static void _call_cbs_nativeEvent_4678_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - long int *arg3 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + long int *arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPushButton_Adaptor *)cls)->cbs_nativeEvent_4678_0 (arg1, arg2, arg3)); } @@ -2456,7 +2456,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPushButton_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2512,7 +2512,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QPushButton_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -2549,7 +2549,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPushButton_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2601,7 +2601,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPushButton_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2644,7 +2644,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPushButton_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2687,7 +2687,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPushButton_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2711,7 +2711,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPushButton_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2768,7 +2768,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPushButton_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQRadioButton.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQRadioButton.cc index 6c38e9220..12f1d6c9b 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQRadioButton.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQRadioButton.cc @@ -1180,7 +1180,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioButton_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1204,7 +1204,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioButton_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1248,7 +1248,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioButton_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1290,7 +1290,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioButton_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1314,7 +1314,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioButton_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1381,7 +1381,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioButton_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1445,7 +1445,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioButton_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1469,7 +1469,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioButton_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1493,7 +1493,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioButton_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1517,7 +1517,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioButton_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1541,7 +1541,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioButton_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1565,7 +1565,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioButton_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -1589,7 +1589,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QRadioButton_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1614,8 +1614,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QRadioButton_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1638,7 +1638,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioButton_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1676,7 +1676,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QRadioButton_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -1699,7 +1699,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioButton_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -1756,7 +1756,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QRadioButton_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -1779,7 +1779,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioButton_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -1803,7 +1803,7 @@ static void _call_cbs_hitButton_c1916_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QRadioButton_Adaptor *)cls)->cbs_hitButton_c1916_0 (arg1)); } @@ -1826,7 +1826,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioButton_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -1869,7 +1869,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioButton_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -1893,7 +1893,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QRadioButton_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -1934,7 +1934,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioButton_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -1958,7 +1958,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioButton_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -1982,7 +1982,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioButton_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2006,7 +2006,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QRadioButton_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2048,7 +2048,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioButton_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2072,7 +2072,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioButton_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2096,7 +2096,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioButton_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2120,7 +2120,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioButton_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2144,7 +2144,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioButton_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2172,9 +2172,9 @@ static void _call_cbs_nativeEvent_4678_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - long int *arg3 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + long int *arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QRadioButton_Adaptor *)cls)->cbs_nativeEvent_4678_0 (arg1, arg2, arg3)); } @@ -2254,7 +2254,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioButton_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2310,7 +2310,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QRadioButton_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -2347,7 +2347,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioButton_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2399,7 +2399,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioButton_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2442,7 +2442,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioButton_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2485,7 +2485,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioButton_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2509,7 +2509,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioButton_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2566,7 +2566,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioButton_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQRubberBand.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQRubberBand.cc index 8d13907c1..d6707f1b8 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQRubberBand.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQRubberBand.cc @@ -1198,7 +1198,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRubberBand_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1222,7 +1222,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRubberBand_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1246,7 +1246,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRubberBand_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1270,7 +1270,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRubberBand_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1294,7 +1294,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRubberBand_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1361,7 +1361,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRubberBand_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1425,7 +1425,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRubberBand_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1449,7 +1449,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRubberBand_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1473,7 +1473,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRubberBand_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1497,7 +1497,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRubberBand_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1521,7 +1521,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRubberBand_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1545,7 +1545,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRubberBand_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -1569,7 +1569,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QRubberBand_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1594,8 +1594,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QRubberBand_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1618,7 +1618,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRubberBand_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1656,7 +1656,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QRubberBand_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -1679,7 +1679,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRubberBand_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -1736,7 +1736,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QRubberBand_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -1759,7 +1759,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRubberBand_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -1783,7 +1783,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRubberBand_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -1826,7 +1826,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRubberBand_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -1850,7 +1850,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QRubberBand_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -1891,7 +1891,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRubberBand_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -1915,7 +1915,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRubberBand_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -1939,7 +1939,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRubberBand_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -1963,7 +1963,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QRubberBand_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2005,7 +2005,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRubberBand_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2029,7 +2029,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRubberBand_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2053,7 +2053,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRubberBand_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2077,7 +2077,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRubberBand_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2101,7 +2101,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRubberBand_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2129,9 +2129,9 @@ static void _call_cbs_nativeEvent_4678_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - long int *arg3 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + long int *arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QRubberBand_Adaptor *)cls)->cbs_nativeEvent_4678_0 (arg1, arg2, arg3)); } @@ -2191,7 +2191,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRubberBand_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2233,7 +2233,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QRubberBand_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -2256,7 +2256,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRubberBand_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2308,7 +2308,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRubberBand_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2351,7 +2351,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRubberBand_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2394,7 +2394,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRubberBand_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2418,7 +2418,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRubberBand_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2457,7 +2457,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRubberBand_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQScrollArea.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQScrollArea.cc index 148f716db..b991cb948 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQScrollArea.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQScrollArea.cc @@ -1343,7 +1343,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollArea_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1367,7 +1367,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollArea_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1391,7 +1391,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollArea_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1415,7 +1415,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollArea_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1439,7 +1439,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollArea_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1506,7 +1506,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollArea_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1570,7 +1570,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollArea_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1594,7 +1594,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollArea_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1618,7 +1618,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollArea_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1642,7 +1642,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollArea_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1685,7 +1685,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollArea_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1709,7 +1709,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollArea_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -1733,7 +1733,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QScrollArea_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1758,8 +1758,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QScrollArea_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1782,7 +1782,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollArea_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1820,7 +1820,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QScrollArea_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -1843,7 +1843,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollArea_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -1900,7 +1900,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QScrollArea_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -1923,7 +1923,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollArea_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -1947,7 +1947,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollArea_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -1990,7 +1990,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollArea_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2014,7 +2014,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QScrollArea_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2055,7 +2055,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollArea_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2079,7 +2079,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollArea_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2103,7 +2103,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollArea_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2127,7 +2127,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QScrollArea_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2169,7 +2169,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollArea_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2193,7 +2193,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollArea_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2217,7 +2217,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollArea_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2241,7 +2241,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollArea_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2265,7 +2265,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollArea_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2293,9 +2293,9 @@ static void _call_cbs_nativeEvent_4678_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - long int *arg3 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + long int *arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QScrollArea_Adaptor *)cls)->cbs_nativeEvent_4678_0 (arg1, arg2, arg3)); } @@ -2355,7 +2355,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollArea_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2397,7 +2397,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QScrollArea_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -2420,7 +2420,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollArea_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2446,8 +2446,8 @@ static void _call_cbs_scrollContentsBy_1426_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollArea_Adaptor *)cls)->cbs_scrollContentsBy_1426_0 (arg1, arg2); } @@ -2546,7 +2546,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollArea_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2570,7 +2570,7 @@ static void _call_cbs_setupViewport_1315_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollArea_Adaptor *)cls)->cbs_setupViewport_1315_0 (arg1); } @@ -2613,7 +2613,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollArea_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2656,7 +2656,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollArea_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2680,7 +2680,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollArea_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2719,7 +2719,7 @@ static void _call_cbs_viewportEvent_1217_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QScrollArea_Adaptor *)cls)->cbs_viewportEvent_1217_0 (arg1)); } @@ -2775,7 +2775,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollArea_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQScrollBar.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQScrollBar.cc index df4726511..e76cd5036 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQScrollBar.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQScrollBar.cc @@ -1175,7 +1175,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollBar_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1217,7 +1217,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollBar_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1241,7 +1241,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollBar_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1265,7 +1265,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollBar_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1289,7 +1289,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollBar_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1356,7 +1356,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollBar_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1420,7 +1420,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollBar_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1444,7 +1444,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollBar_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1468,7 +1468,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollBar_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1492,7 +1492,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollBar_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1516,7 +1516,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollBar_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1540,7 +1540,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollBar_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -1564,7 +1564,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QScrollBar_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1589,8 +1589,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QScrollBar_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1613,7 +1613,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollBar_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1651,7 +1651,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QScrollBar_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -1674,7 +1674,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollBar_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -1731,7 +1731,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QScrollBar_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -1754,7 +1754,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollBar_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -1778,7 +1778,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollBar_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -1821,7 +1821,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollBar_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -1845,7 +1845,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QScrollBar_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -1886,7 +1886,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollBar_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -1910,7 +1910,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollBar_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -1934,7 +1934,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollBar_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -1958,7 +1958,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QScrollBar_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2000,7 +2000,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollBar_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2024,7 +2024,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollBar_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2048,7 +2048,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollBar_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2072,7 +2072,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollBar_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2096,7 +2096,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollBar_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2124,9 +2124,9 @@ static void _call_cbs_nativeEvent_4678_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - long int *arg3 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + long int *arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QScrollBar_Adaptor *)cls)->cbs_nativeEvent_4678_0 (arg1, arg2, arg3)); } @@ -2186,7 +2186,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollBar_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2249,7 +2249,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QScrollBar_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -2286,7 +2286,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollBar_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2363,7 +2363,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollBar_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2406,7 +2406,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollBar_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2449,7 +2449,7 @@ static void _call_cbs_sliderChange_3257_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollBar_Adaptor *)cls)->cbs_sliderChange_3257_0 (arg1); } @@ -2519,7 +2519,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollBar_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2543,7 +2543,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollBar_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2600,7 +2600,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollBar_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQShortcut.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQShortcut.cc index 465d1c61c..5c5372db0 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQShortcut.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQShortcut.cc @@ -619,7 +619,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QShortcut_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -643,7 +643,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QShortcut_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -685,7 +685,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QShortcut_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -709,7 +709,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QShortcut_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -734,8 +734,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QShortcut_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -840,7 +840,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QShortcut_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQSizeGrip.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQSizeGrip.cc index 31985e76c..d7cffa27d 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQSizeGrip.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQSizeGrip.cc @@ -1063,7 +1063,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSizeGrip_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1087,7 +1087,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSizeGrip_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1111,7 +1111,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSizeGrip_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1135,7 +1135,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSizeGrip_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1159,7 +1159,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSizeGrip_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1226,7 +1226,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSizeGrip_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1290,7 +1290,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSizeGrip_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1314,7 +1314,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSizeGrip_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1338,7 +1338,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSizeGrip_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1362,7 +1362,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSizeGrip_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1386,7 +1386,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSizeGrip_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1410,7 +1410,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSizeGrip_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -1434,7 +1434,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSizeGrip_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1459,8 +1459,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSizeGrip_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1483,7 +1483,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSizeGrip_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1521,7 +1521,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSizeGrip_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -1544,7 +1544,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSizeGrip_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -1601,7 +1601,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QSizeGrip_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -1624,7 +1624,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSizeGrip_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -1648,7 +1648,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSizeGrip_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -1672,7 +1672,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSizeGrip_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -1696,7 +1696,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QSizeGrip_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -1737,7 +1737,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSizeGrip_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -1761,7 +1761,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSizeGrip_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -1785,7 +1785,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSizeGrip_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -1809,7 +1809,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QSizeGrip_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -1851,7 +1851,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSizeGrip_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -1875,7 +1875,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSizeGrip_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -1899,7 +1899,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSizeGrip_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -1923,7 +1923,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSizeGrip_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -1947,7 +1947,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSizeGrip_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -1975,9 +1975,9 @@ static void _call_cbs_nativeEvent_4678_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - long int *arg3 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + long int *arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSizeGrip_Adaptor *)cls)->cbs_nativeEvent_4678_0 (arg1, arg2, arg3)); } @@ -2037,7 +2037,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSizeGrip_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2079,7 +2079,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QSizeGrip_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -2102,7 +2102,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSizeGrip_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2154,7 +2154,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSizeGrip_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2197,7 +2197,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSizeGrip_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2240,7 +2240,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSizeGrip_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2264,7 +2264,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSizeGrip_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2303,7 +2303,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSizeGrip_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQSlider.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQSlider.cc index 660537329..ac9803d77 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQSlider.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQSlider.cc @@ -1265,7 +1265,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSlider_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1307,7 +1307,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSlider_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1331,7 +1331,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSlider_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1355,7 +1355,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSlider_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1379,7 +1379,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSlider_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1446,7 +1446,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSlider_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1510,7 +1510,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSlider_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1534,7 +1534,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSlider_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1558,7 +1558,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSlider_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1582,7 +1582,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSlider_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1606,7 +1606,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSlider_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1630,7 +1630,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSlider_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -1654,7 +1654,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSlider_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1679,8 +1679,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSlider_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1703,7 +1703,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSlider_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1741,7 +1741,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSlider_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -1764,7 +1764,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSlider_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -1821,7 +1821,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QSlider_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -1844,7 +1844,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSlider_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -1868,7 +1868,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSlider_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -1911,7 +1911,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSlider_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -1935,7 +1935,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QSlider_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -1976,7 +1976,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSlider_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2000,7 +2000,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSlider_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2024,7 +2024,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSlider_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2048,7 +2048,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QSlider_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2090,7 +2090,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSlider_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2114,7 +2114,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSlider_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2138,7 +2138,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSlider_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2162,7 +2162,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSlider_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2186,7 +2186,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSlider_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2214,9 +2214,9 @@ static void _call_cbs_nativeEvent_4678_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - long int *arg3 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + long int *arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSlider_Adaptor *)cls)->cbs_nativeEvent_4678_0 (arg1, arg2, arg3)); } @@ -2276,7 +2276,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSlider_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2339,7 +2339,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QSlider_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -2376,7 +2376,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSlider_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2453,7 +2453,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSlider_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2496,7 +2496,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSlider_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2539,7 +2539,7 @@ static void _call_cbs_sliderChange_3257_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSlider_Adaptor *)cls)->cbs_sliderChange_3257_0 (arg1); } @@ -2609,7 +2609,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSlider_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2633,7 +2633,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSlider_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2690,7 +2690,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSlider_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQSpacerItem.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQSpacerItem.cc index b115f2249..368619707 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQSpacerItem.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQSpacerItem.cc @@ -622,7 +622,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QSpacerItem_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -722,7 +722,7 @@ static void _call_cbs_minimumHeightForWidth_c767_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QSpacerItem_Adaptor *)cls)->cbs_minimumHeightForWidth_c767_0 (arg1)); } @@ -764,7 +764,7 @@ static void _call_cbs_setGeometry_1792_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpacerItem_Adaptor *)cls)->cbs_setGeometry_1792_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQSpinBox.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQSpinBox.cc index adad8219a..5fadb188a 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQSpinBox.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQSpinBox.cc @@ -1518,7 +1518,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpinBox_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1542,7 +1542,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpinBox_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1566,7 +1566,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpinBox_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1610,7 +1610,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpinBox_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1634,7 +1634,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpinBox_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1701,7 +1701,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpinBox_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1765,7 +1765,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpinBox_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1789,7 +1789,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpinBox_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1813,7 +1813,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpinBox_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1837,7 +1837,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpinBox_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1861,7 +1861,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpinBox_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1899,7 +1899,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpinBox_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -1923,7 +1923,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSpinBox_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1948,8 +1948,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSpinBox_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1972,7 +1972,7 @@ static void _call_cbs_fixup_c1330_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QString &arg1 = args.read (heap); + QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpinBox_Adaptor *)cls)->cbs_fixup_c1330_0 (arg1); } @@ -1996,7 +1996,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpinBox_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -2034,7 +2034,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSpinBox_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -2057,7 +2057,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpinBox_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -2114,7 +2114,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QSpinBox_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -2137,7 +2137,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpinBox_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -2161,7 +2161,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpinBox_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -2204,7 +2204,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpinBox_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2228,7 +2228,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QSpinBox_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2269,7 +2269,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpinBox_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2293,7 +2293,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpinBox_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2317,7 +2317,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpinBox_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2355,7 +2355,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QSpinBox_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2397,7 +2397,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpinBox_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2421,7 +2421,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpinBox_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2445,7 +2445,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpinBox_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2469,7 +2469,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpinBox_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2493,7 +2493,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpinBox_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2521,9 +2521,9 @@ static void _call_cbs_nativeEvent_4678_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - long int *arg3 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + long int *arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSpinBox_Adaptor *)cls)->cbs_nativeEvent_4678_0 (arg1, arg2, arg3)); } @@ -2583,7 +2583,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpinBox_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2625,7 +2625,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QSpinBox_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -2648,7 +2648,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpinBox_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2719,7 +2719,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpinBox_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2762,7 +2762,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpinBox_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2805,7 +2805,7 @@ static void _call_cbs_stepBy_767_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpinBox_Adaptor *)cls)->cbs_stepBy_767_0 (arg1); } @@ -2848,7 +2848,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpinBox_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2872,7 +2872,7 @@ static void _call_cbs_textFromValue_c767_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QSpinBox_Adaptor *)cls)->cbs_textFromValue_c767_0 (arg1)); } @@ -2895,7 +2895,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpinBox_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2936,8 +2936,8 @@ static void _call_cbs_validate_c2171_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QString &arg1 = args.read (heap); - int &arg2 = args.read (heap); + QString &arg1 = gsi::arg_reader() (args, heap); + int &arg2 = gsi::arg_reader() (args, heap); ret.write::target_type > ((qt_gsi::Converter::target_type)((QSpinBox_Adaptor *)cls)->cbs_validate_c2171_0 (arg1, arg2)); } @@ -2996,7 +2996,7 @@ static void _call_cbs_valueFromText_c2025_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QSpinBox_Adaptor *)cls)->cbs_valueFromText_c2025_0 (arg1)); } @@ -3019,7 +3019,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpinBox_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQSplashScreen.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQSplashScreen.cc index d7ec8f3ba..f5738a3bf 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQSplashScreen.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQSplashScreen.cc @@ -1242,7 +1242,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplashScreen_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1266,7 +1266,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplashScreen_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1290,7 +1290,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplashScreen_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1314,7 +1314,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplashScreen_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1338,7 +1338,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplashScreen_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1405,7 +1405,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplashScreen_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1469,7 +1469,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplashScreen_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1493,7 +1493,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplashScreen_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1517,7 +1517,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplashScreen_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1541,7 +1541,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplashScreen_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1565,7 +1565,7 @@ static void _call_cbs_drawContents_1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplashScreen_Adaptor *)cls)->cbs_drawContents_1426_0 (arg1); } @@ -1589,7 +1589,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplashScreen_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1613,7 +1613,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplashScreen_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -1637,7 +1637,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSplashScreen_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1662,8 +1662,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSplashScreen_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1686,7 +1686,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplashScreen_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1724,7 +1724,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSplashScreen_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -1747,7 +1747,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplashScreen_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -1804,7 +1804,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QSplashScreen_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -1827,7 +1827,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplashScreen_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -1851,7 +1851,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplashScreen_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -1875,7 +1875,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplashScreen_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -1899,7 +1899,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QSplashScreen_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -1940,7 +1940,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplashScreen_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -1964,7 +1964,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplashScreen_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -1988,7 +1988,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplashScreen_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2030,7 +2030,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QSplashScreen_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2072,7 +2072,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplashScreen_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2096,7 +2096,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplashScreen_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2120,7 +2120,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplashScreen_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2144,7 +2144,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplashScreen_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2168,7 +2168,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplashScreen_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2196,9 +2196,9 @@ static void _call_cbs_nativeEvent_4678_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - long int *arg3 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + long int *arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSplashScreen_Adaptor *)cls)->cbs_nativeEvent_4678_0 (arg1, arg2, arg3)); } @@ -2258,7 +2258,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplashScreen_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2300,7 +2300,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QSplashScreen_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -2323,7 +2323,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplashScreen_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2375,7 +2375,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplashScreen_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2418,7 +2418,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplashScreen_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2461,7 +2461,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplashScreen_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2485,7 +2485,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplashScreen_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2524,7 +2524,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplashScreen_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQSplitter.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQSplitter.cc index c9b6eaca6..fceb44ae0 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQSplitter.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQSplitter.cc @@ -1624,7 +1624,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1648,7 +1648,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1672,7 +1672,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1696,7 +1696,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1741,7 +1741,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1827,7 +1827,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1891,7 +1891,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1915,7 +1915,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1939,7 +1939,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1963,7 +1963,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -2006,7 +2006,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -2030,7 +2030,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -2054,7 +2054,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSplitter_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -2079,8 +2079,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSplitter_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -2103,7 +2103,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -2141,7 +2141,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSplitter_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -2164,7 +2164,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -2221,7 +2221,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QSplitter_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -2244,7 +2244,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -2268,7 +2268,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -2311,7 +2311,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2335,7 +2335,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QSplitter_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2376,7 +2376,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2400,7 +2400,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2424,7 +2424,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2448,7 +2448,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QSplitter_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2490,7 +2490,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2514,7 +2514,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2538,7 +2538,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2562,7 +2562,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2586,7 +2586,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2636,9 +2636,9 @@ static void _call_cbs_nativeEvent_4678_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - long int *arg3 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + long int *arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSplitter_Adaptor *)cls)->cbs_nativeEvent_4678_0 (arg1, arg2, arg3)); } @@ -2698,7 +2698,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2740,7 +2740,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QSplitter_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -2763,7 +2763,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2834,7 +2834,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2877,7 +2877,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2941,7 +2941,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2965,7 +2965,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -3004,7 +3004,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQSplitterHandle.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQSplitterHandle.cc index 4b89f52e9..c1feb0c51 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQSplitterHandle.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQSplitterHandle.cc @@ -1125,7 +1125,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitterHandle_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1149,7 +1149,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitterHandle_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1173,7 +1173,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitterHandle_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1197,7 +1197,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitterHandle_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1239,7 +1239,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitterHandle_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1306,7 +1306,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitterHandle_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1370,7 +1370,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitterHandle_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1394,7 +1394,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitterHandle_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1418,7 +1418,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitterHandle_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1442,7 +1442,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitterHandle_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1466,7 +1466,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitterHandle_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1490,7 +1490,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitterHandle_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -1514,7 +1514,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSplitterHandle_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1539,8 +1539,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSplitterHandle_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1563,7 +1563,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitterHandle_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1601,7 +1601,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSplitterHandle_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -1624,7 +1624,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitterHandle_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -1681,7 +1681,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QSplitterHandle_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -1704,7 +1704,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitterHandle_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -1728,7 +1728,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitterHandle_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -1752,7 +1752,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitterHandle_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -1776,7 +1776,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QSplitterHandle_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -1817,7 +1817,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitterHandle_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -1841,7 +1841,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitterHandle_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -1865,7 +1865,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitterHandle_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -1889,7 +1889,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QSplitterHandle_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -1931,7 +1931,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitterHandle_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -1955,7 +1955,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitterHandle_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -1979,7 +1979,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitterHandle_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2003,7 +2003,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitterHandle_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2027,7 +2027,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitterHandle_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2074,9 +2074,9 @@ static void _call_cbs_nativeEvent_4678_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - long int *arg3 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + long int *arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSplitterHandle_Adaptor *)cls)->cbs_nativeEvent_4678_0 (arg1, arg2, arg3)); } @@ -2136,7 +2136,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitterHandle_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2178,7 +2178,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QSplitterHandle_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -2201,7 +2201,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitterHandle_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2253,7 +2253,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitterHandle_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2296,7 +2296,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitterHandle_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2339,7 +2339,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitterHandle_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2363,7 +2363,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitterHandle_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2402,7 +2402,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitterHandle_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQStackedLayout.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQStackedLayout.cc index bd196f5de..e8d7bfe33 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQStackedLayout.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQStackedLayout.cc @@ -1112,7 +1112,8 @@ static void _call_cbs_addItem_1740_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QLayoutItem *arg1 = args.read (heap); + QLayoutItem *arg1 = gsi::arg_reader() (args, heap); + qt_gsi::qt_keep (arg1); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedLayout_Adaptor *)cls)->cbs_addItem_1740_0 (arg1); } @@ -1172,7 +1173,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedLayout_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1252,7 +1253,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedLayout_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1294,7 +1295,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedLayout_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1318,7 +1319,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QStackedLayout_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1343,8 +1344,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QStackedLayout_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1424,7 +1425,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QStackedLayout_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -1447,7 +1448,7 @@ static void _call_cbs_indexOf_c1315_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QStackedLayout_Adaptor *)cls)->cbs_indexOf_c1315_0 (arg1)); } @@ -1527,7 +1528,7 @@ static void _call_cbs_itemAt_c767_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QLayoutItem *)((QStackedLayout_Adaptor *)cls)->cbs_itemAt_c767_0 (arg1)); } @@ -1588,7 +1589,7 @@ static void _call_cbs_minimumHeightForWidth_c767_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QStackedLayout_Adaptor *)cls)->cbs_minimumHeightForWidth_c767_0 (arg1)); } @@ -1694,7 +1695,7 @@ static void _call_cbs_setGeometry_1792_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedLayout_Adaptor *)cls)->cbs_setGeometry_1792_0 (arg1); } @@ -1756,7 +1757,7 @@ static void _call_cbs_takeAt_767_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QLayoutItem *)((QStackedLayout_Adaptor *)cls)->cbs_takeAt_767_0 (arg1)); } @@ -1779,7 +1780,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedLayout_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQStackedWidget.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQStackedWidget.cc index c6b5d05f3..10c34cf38 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQStackedWidget.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQStackedWidget.cc @@ -1251,7 +1251,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedWidget_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1275,7 +1275,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedWidget_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1299,7 +1299,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedWidget_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1323,7 +1323,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedWidget_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1347,7 +1347,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedWidget_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1432,7 +1432,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedWidget_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1496,7 +1496,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedWidget_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1520,7 +1520,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedWidget_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1544,7 +1544,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedWidget_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1568,7 +1568,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedWidget_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1611,7 +1611,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedWidget_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1635,7 +1635,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedWidget_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -1659,7 +1659,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QStackedWidget_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1684,8 +1684,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QStackedWidget_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1708,7 +1708,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedWidget_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1746,7 +1746,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QStackedWidget_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -1769,7 +1769,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedWidget_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -1826,7 +1826,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QStackedWidget_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -1849,7 +1849,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedWidget_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -1873,7 +1873,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedWidget_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -1916,7 +1916,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedWidget_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -1940,7 +1940,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QStackedWidget_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -1981,7 +1981,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedWidget_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2005,7 +2005,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedWidget_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2029,7 +2029,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedWidget_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2053,7 +2053,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QStackedWidget_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2095,7 +2095,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedWidget_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2119,7 +2119,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedWidget_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2143,7 +2143,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedWidget_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2167,7 +2167,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedWidget_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2191,7 +2191,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedWidget_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2219,9 +2219,9 @@ static void _call_cbs_nativeEvent_4678_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - long int *arg3 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + long int *arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QStackedWidget_Adaptor *)cls)->cbs_nativeEvent_4678_0 (arg1, arg2, arg3)); } @@ -2281,7 +2281,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedWidget_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2323,7 +2323,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QStackedWidget_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -2346,7 +2346,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedWidget_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2398,7 +2398,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedWidget_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2441,7 +2441,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedWidget_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2484,7 +2484,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedWidget_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2508,7 +2508,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedWidget_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2547,7 +2547,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedWidget_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQStatusBar.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQStatusBar.cc index cb28b7284..e4586508d 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQStatusBar.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQStatusBar.cc @@ -1264,7 +1264,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStatusBar_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1288,7 +1288,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStatusBar_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1312,7 +1312,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStatusBar_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1336,7 +1336,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStatusBar_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1360,7 +1360,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStatusBar_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1427,7 +1427,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStatusBar_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1491,7 +1491,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStatusBar_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1515,7 +1515,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStatusBar_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1539,7 +1539,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStatusBar_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1563,7 +1563,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStatusBar_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1587,7 +1587,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStatusBar_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1611,7 +1611,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStatusBar_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -1635,7 +1635,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QStatusBar_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1660,8 +1660,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QStatusBar_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1684,7 +1684,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStatusBar_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1722,7 +1722,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QStatusBar_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -1745,7 +1745,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStatusBar_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -1802,7 +1802,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QStatusBar_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -1825,7 +1825,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStatusBar_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -1864,7 +1864,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStatusBar_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -1888,7 +1888,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStatusBar_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -1912,7 +1912,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QStatusBar_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -1953,7 +1953,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStatusBar_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -1977,7 +1977,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStatusBar_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2001,7 +2001,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStatusBar_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2043,7 +2043,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QStatusBar_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2085,7 +2085,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStatusBar_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2109,7 +2109,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStatusBar_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2133,7 +2133,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStatusBar_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2157,7 +2157,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStatusBar_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2181,7 +2181,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStatusBar_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2209,9 +2209,9 @@ static void _call_cbs_nativeEvent_4678_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - long int *arg3 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + long int *arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QStatusBar_Adaptor *)cls)->cbs_nativeEvent_4678_0 (arg1, arg2, arg3)); } @@ -2271,7 +2271,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStatusBar_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2313,7 +2313,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QStatusBar_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -2351,7 +2351,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStatusBar_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2403,7 +2403,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStatusBar_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2446,7 +2446,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStatusBar_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2489,7 +2489,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStatusBar_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2513,7 +2513,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStatusBar_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2552,7 +2552,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStatusBar_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQStyle.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQStyle.cc index dd452c7f7..33fd79bd3 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQStyle.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQStyle.cc @@ -1561,7 +1561,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStyle_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1585,7 +1585,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStyle_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1627,7 +1627,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStyle_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1657,10 +1657,10 @@ static void _call_cbs_drawComplexControl_c9027_1 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOptionComplex *arg2 = args.read (heap); - QPainter *arg3 = args.read (heap); - const QWidget *arg4 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOptionComplex *arg2 = gsi::arg_reader() (args, heap); + QPainter *arg3 = gsi::arg_reader() (args, heap); + const QWidget *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStyle_Adaptor *)cls)->cbs_drawComplexControl_c9027_1 (arg1, arg2, arg3, arg4); } @@ -1690,10 +1690,10 @@ static void _call_cbs_drawControl_c8285_1 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args.read (heap); - QPainter *arg3 = args.read (heap); - const QWidget *arg4 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = gsi::arg_reader() (args, heap); + QPainter *arg3 = gsi::arg_reader() (args, heap); + const QWidget *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStyle_Adaptor *)cls)->cbs_drawControl_c8285_1 (arg1, arg2, arg3, arg4); } @@ -1723,10 +1723,10 @@ static void _call_cbs_drawItemPixmap_c5678_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QRect &arg2 = args.read (heap); - int arg3 = args.read (heap); - const QPixmap &arg4 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QRect &arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QPixmap &arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStyle_Adaptor *)cls)->cbs_drawItemPixmap_c5678_0 (arg1, arg2, arg3, arg4); } @@ -1762,13 +1762,13 @@ static void _call_cbs_drawItemText_c10604_1 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QRect &arg2 = args.read (heap); - int arg3 = args.read (heap); - const QPalette &arg4 = args.read (heap); - bool arg5 = args.read (heap); - const QString &arg6 = args.read (heap); - const qt_gsi::Converter::target_type & arg7 = args.read::target_type & > (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QRect &arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QPalette &arg4 = gsi::arg_reader() (args, heap); + bool arg5 = gsi::arg_reader() (args, heap); + const QString &arg6 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg7 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QPalette::NoRole), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStyle_Adaptor *)cls)->cbs_drawItemText_c10604_1 (arg1, arg2, arg3, arg4, arg5, arg6, arg7); } @@ -1798,10 +1798,10 @@ static void _call_cbs_drawPrimitive_c8501_1 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args.read (heap); - QPainter *arg3 = args.read (heap); - const QWidget *arg4 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = gsi::arg_reader() (args, heap); + QPainter *arg3 = gsi::arg_reader() (args, heap); + const QWidget *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStyle_Adaptor *)cls)->cbs_drawPrimitive_c8501_1 (arg1, arg2, arg3, arg4); } @@ -1825,7 +1825,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QStyle_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1850,8 +1850,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QStyle_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1878,9 +1878,9 @@ static void _call_cbs_generatedIconPixmap_c5776_0 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QPixmap &arg2 = args.read (heap); - const QStyleOption *arg3 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QPixmap &arg2 = gsi::arg_reader() (args, heap); + const QStyleOption *arg3 = gsi::arg_reader() (args, heap); ret.write ((QPixmap)((QStyle_Adaptor *)cls)->cbs_generatedIconPixmap_c5776_0 (arg1, arg2, arg3)); } @@ -1909,10 +1909,10 @@ static void _call_cbs_hitTestComplexControl_c9517_1 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOptionComplex *arg2 = args.read (heap); - const QPoint &arg3 = args.read (heap); - const QWidget *arg4 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOptionComplex *arg2 = gsi::arg_reader() (args, heap); + const QPoint &arg3 = gsi::arg_reader() (args, heap); + const QWidget *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); ret.write::target_type > ((qt_gsi::Converter::target_type)((QStyle_Adaptor *)cls)->cbs_hitTestComplexControl_c9517_1 (arg1, arg2, arg3, arg4)); } @@ -1957,9 +1957,9 @@ static void _call_cbs_itemPixmapRect_c4360_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); - int arg2 = args.read (heap); - const QPixmap &arg3 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QPixmap &arg3 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QStyle_Adaptor *)cls)->cbs_itemPixmapRect_c4360_0 (arg1, arg2, arg3)); } @@ -1990,11 +1990,11 @@ static void _call_cbs_itemTextRect_c7544_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFontMetrics &arg1 = args.read (heap); - const QRect &arg2 = args.read (heap); - int arg3 = args.read (heap); - bool arg4 = args.read (heap); - const QString &arg5 = args.read (heap); + const QFontMetrics &arg1 = gsi::arg_reader() (args, heap); + const QRect &arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + bool arg4 = gsi::arg_reader() (args, heap); + const QString &arg5 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QStyle_Adaptor *)cls)->cbs_itemTextRect_c7544_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -2025,11 +2025,11 @@ static void _call_cbs_layoutSpacing_c11697_2 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg3 = args.read::target_type & > (heap); - const QStyleOption *arg4 = args.read (heap); - const QWidget *arg5 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg3 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); + const QWidget *arg5 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); ret.write ((int)((QStyle_Adaptor *)cls)->cbs_layoutSpacing_c11697_2 (arg1, arg2, arg3, arg4, arg5)); } @@ -2074,9 +2074,9 @@ static void _call_cbs_pixelMetric_c6642_2 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args.read (heap); - const QWidget *arg3 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); + const QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); ret.write ((int)((QStyle_Adaptor *)cls)->cbs_pixelMetric_c6642_2 (arg1, arg2, arg3)); } @@ -2099,7 +2099,7 @@ static void _call_cbs_polish_1315_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStyle_Adaptor *)cls)->cbs_polish_1315_0 (arg1); } @@ -2123,7 +2123,7 @@ static void _call_cbs_polish_1843_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QApplication *arg1 = args.read (heap); + QApplication *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStyle_Adaptor *)cls)->cbs_polish_1843_0 (arg1); } @@ -2147,7 +2147,7 @@ static void _call_cbs_polish_1418_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPalette &arg1 = args.read (heap); + QPalette &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStyle_Adaptor *)cls)->cbs_polish_1418_0 (arg1); } @@ -2223,10 +2223,10 @@ static void _call_cbs_sizeFromContents_c8477_1 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args.read (heap); - const QSize &arg3 = args.read (heap); - const QWidget *arg4 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = gsi::arg_reader() (args, heap); + const QSize &arg3 = gsi::arg_reader() (args, heap); + const QWidget *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); ret.write ((QSize)((QStyle_Adaptor *)cls)->cbs_sizeFromContents_c8477_1 (arg1, arg2, arg3, arg4)); } @@ -2253,9 +2253,9 @@ static void _call_cbs_standardIcon_c6956_2 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args.read (heap); - const QWidget *arg3 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); + const QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); ret.write ((QIcon)((QStyle_Adaptor *)cls)->cbs_standardIcon_c6956_2 (arg1, arg2, arg3)); } @@ -2301,9 +2301,9 @@ static void _call_cbs_standardPixmap_c6956_2 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args.read (heap); - const QWidget *arg3 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); + const QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); ret.write ((QPixmap)((QStyle_Adaptor *)cls)->cbs_standardPixmap_c6956_2 (arg1, arg2, arg3)); } @@ -2332,10 +2332,10 @@ static void _call_cbs_styleHint_c8615_3 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args.read (heap); - const QWidget *arg3 = args.read (heap); - QStyleHintReturn *arg4 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); + const QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); + QStyleHintReturn *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); ret.write ((int)((QStyle_Adaptor *)cls)->cbs_styleHint_c8615_3 (arg1, arg2, arg3, arg4)); } @@ -2364,10 +2364,10 @@ static void _call_cbs_subControlRect_c9798_1 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOptionComplex *arg2 = args.read (heap); - const qt_gsi::Converter::target_type & arg3 = args.read::target_type & > (heap); - const QWidget *arg4 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOptionComplex *arg2 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg3 = gsi::arg_reader::target_type & >() (args, heap); + const QWidget *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); ret.write ((QRect)((QStyle_Adaptor *)cls)->cbs_subControlRect_c9798_1 (arg1, arg2, arg3, arg4)); } @@ -2394,9 +2394,9 @@ static void _call_cbs_subElementRect_c6528_1 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args.read (heap); - const QWidget *arg3 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = gsi::arg_reader() (args, heap); + const QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); ret.write ((QRect)((QStyle_Adaptor *)cls)->cbs_subElementRect_c6528_1 (arg1, arg2, arg3)); } @@ -2419,7 +2419,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStyle_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2443,7 +2443,7 @@ static void _call_cbs_unpolish_1315_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStyle_Adaptor *)cls)->cbs_unpolish_1315_0 (arg1); } @@ -2467,7 +2467,7 @@ static void _call_cbs_unpolish_1843_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QApplication *arg1 = args.read (heap); + QApplication *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStyle_Adaptor *)cls)->cbs_unpolish_1843_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQStylePlugin.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQStylePlugin.cc index 3d75e131b..012155dcd 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQStylePlugin.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQStylePlugin.cc @@ -348,7 +348,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStylePlugin_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -372,7 +372,7 @@ static void _call_cbs_create_2025_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QStyle *)((QStylePlugin_Adaptor *)cls)->cbs_create_2025_0 (arg1)); } @@ -395,7 +395,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStylePlugin_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -437,7 +437,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStylePlugin_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -461,7 +461,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QStylePlugin_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -486,8 +486,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QStylePlugin_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -592,7 +592,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStylePlugin_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQStyledItemDelegate.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQStyledItemDelegate.cc index 2f643906a..2bfc60f46 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQStyledItemDelegate.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQStyledItemDelegate.cc @@ -748,7 +748,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStyledItemDelegate_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -815,9 +815,9 @@ static void _call_cbs_createEditor_c6860_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - const QStyleOptionViewItem &arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionViewItem &arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); ret.write ((QWidget *)((QStyledItemDelegate_Adaptor *)cls)->cbs_createEditor_c6860_0 (arg1, arg2, arg3)); } @@ -840,7 +840,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStyledItemDelegate_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -866,8 +866,8 @@ static void _call_cbs_destroyEditor_c3602_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStyledItemDelegate_Adaptor *)cls)->cbs_destroyEditor_c3602_0 (arg1, arg2); } @@ -909,7 +909,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStyledItemDelegate_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -935,8 +935,8 @@ static void _call_cbs_displayText_c3997_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVariant &arg1 = args.read (heap); - const QLocale &arg2 = args.read (heap); + const QVariant &arg1 = gsi::arg_reader() (args, heap); + const QLocale &arg2 = gsi::arg_reader() (args, heap); ret.write ((QString)((QStyledItemDelegate_Adaptor *)cls)->cbs_displayText_c3997_0 (arg1, arg2)); } @@ -965,10 +965,10 @@ static void _call_cbs_editorEvent_9073_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); - QAbstractItemModel *arg2 = args.read (heap); - const QStyleOptionViewItem &arg3 = args.read (heap); - const QModelIndex &arg4 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); + QAbstractItemModel *arg2 = gsi::arg_reader() (args, heap); + const QStyleOptionViewItem &arg3 = gsi::arg_reader() (args, heap); + const QModelIndex &arg4 = gsi::arg_reader() (args, heap); ret.write ((bool)((QStyledItemDelegate_Adaptor *)cls)->cbs_editorEvent_9073_0 (arg1, arg2, arg3, arg4)); } @@ -991,7 +991,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QStyledItemDelegate_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1016,8 +1016,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QStyledItemDelegate_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1046,10 +1046,10 @@ static void _call_cbs_helpEvent_9380_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHelpEvent *arg1 = args.read (heap); - QAbstractItemView *arg2 = args.read (heap); - const QStyleOptionViewItem &arg3 = args.read (heap); - const QModelIndex &arg4 = args.read (heap); + QHelpEvent *arg1 = gsi::arg_reader() (args, heap); + QAbstractItemView *arg2 = gsi::arg_reader() (args, heap); + const QStyleOptionViewItem &arg3 = gsi::arg_reader() (args, heap); + const QModelIndex &arg4 = gsi::arg_reader() (args, heap); ret.write ((bool)((QStyledItemDelegate_Adaptor *)cls)->cbs_helpEvent_9380_0 (arg1, arg2, arg3, arg4)); } @@ -1074,8 +1074,8 @@ static void _call_cbs_initStyleOption_c4962_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionViewItem *arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + QStyleOptionViewItem *arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStyledItemDelegate_Adaptor *)cls)->cbs_initStyleOption_c4962_0 (arg1, arg2); } @@ -1139,9 +1139,9 @@ static void _call_cbs_paint_c6971_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QStyleOptionViewItem &arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionViewItem &arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStyledItemDelegate_Adaptor *)cls)->cbs_paint_c6971_0 (arg1, arg2, arg3); } @@ -1232,8 +1232,8 @@ static void _call_cbs_setEditorData_c3602_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStyledItemDelegate_Adaptor *)cls)->cbs_setEditorData_c3602_0 (arg1, arg2); } @@ -1261,9 +1261,9 @@ static void _call_cbs_setModelData_c5913_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - QAbstractItemModel *arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + QAbstractItemModel *arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStyledItemDelegate_Adaptor *)cls)->cbs_setModelData_c5913_0 (arg1, arg2, arg3); } @@ -1289,8 +1289,8 @@ static void _call_cbs_sizeHint_c5653_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStyleOptionViewItem &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + const QStyleOptionViewItem &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); ret.write ((QSize)((QStyledItemDelegate_Adaptor *)cls)->cbs_sizeHint_c5653_0 (arg1, arg2)); } @@ -1331,7 +1331,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStyledItemDelegate_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -1359,9 +1359,9 @@ static void _call_cbs_updateEditorGeometry_c6860_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - const QStyleOptionViewItem &arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionViewItem &arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStyledItemDelegate_Adaptor *)cls)->cbs_updateEditorGeometry_c6860_0 (arg1, arg2, arg3); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQSwipeGesture.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQSwipeGesture.cc index 55ad719dd..1f731ee9f 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQSwipeGesture.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQSwipeGesture.cc @@ -380,7 +380,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSwipeGesture_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -404,7 +404,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSwipeGesture_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -446,7 +446,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSwipeGesture_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -470,7 +470,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSwipeGesture_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -495,8 +495,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSwipeGesture_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -601,7 +601,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSwipeGesture_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQSystemTrayIcon.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQSystemTrayIcon.cc index f9b0b462d..0fbd9104c 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQSystemTrayIcon.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQSystemTrayIcon.cc @@ -668,7 +668,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSystemTrayIcon_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -692,7 +692,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSystemTrayIcon_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -734,7 +734,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSystemTrayIcon_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -758,7 +758,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSystemTrayIcon_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -783,8 +783,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSystemTrayIcon_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -903,7 +903,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSystemTrayIcon_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQTabBar.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQTabBar.cc index 29d1e3825..37be25cf8 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQTabBar.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQTabBar.cc @@ -2262,7 +2262,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -2286,7 +2286,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -2310,7 +2310,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -2334,7 +2334,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -2358,7 +2358,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -2443,7 +2443,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -2507,7 +2507,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -2531,7 +2531,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -2555,7 +2555,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -2579,7 +2579,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -2603,7 +2603,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -2627,7 +2627,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -2651,7 +2651,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTabBar_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -2676,8 +2676,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTabBar_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -2700,7 +2700,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -2738,7 +2738,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTabBar_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -2761,7 +2761,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -2818,7 +2818,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTabBar_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -2841,7 +2841,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -2865,7 +2865,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -2911,7 +2911,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2935,7 +2935,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QTabBar_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2976,7 +2976,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -3000,7 +3000,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -3024,7 +3024,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -3048,7 +3048,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QTabBar_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -3090,7 +3090,7 @@ static void _call_cbs_minimumTabSizeHint_c767_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QSize)((QTabBar_Adaptor *)cls)->cbs_minimumTabSizeHint_c767_0 (arg1)); } @@ -3113,7 +3113,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -3137,7 +3137,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -3161,7 +3161,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -3185,7 +3185,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -3209,7 +3209,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -3237,9 +3237,9 @@ static void _call_cbs_nativeEvent_4678_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - long int *arg3 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + long int *arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTabBar_Adaptor *)cls)->cbs_nativeEvent_4678_0 (arg1, arg2, arg3)); } @@ -3299,7 +3299,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -3341,7 +3341,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QTabBar_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -3364,7 +3364,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -3416,7 +3416,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -3459,7 +3459,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -3556,7 +3556,7 @@ static void _call_cbs_tabInserted_767_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar_Adaptor *)cls)->cbs_tabInserted_767_0 (arg1); } @@ -3621,7 +3621,7 @@ static void _call_cbs_tabRemoved_767_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar_Adaptor *)cls)->cbs_tabRemoved_767_0 (arg1); } @@ -3645,7 +3645,7 @@ static void _call_cbs_tabSizeHint_c767_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QSize)((QTabBar_Adaptor *)cls)->cbs_tabSizeHint_c767_0 (arg1)); } @@ -3668,7 +3668,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -3692,7 +3692,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -3731,7 +3731,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQTabWidget.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQTabWidget.cc index f8271e8ec..ebd206908 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQTabWidget.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQTabWidget.cc @@ -2057,7 +2057,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -2081,7 +2081,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -2105,7 +2105,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -2129,7 +2129,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -2153,7 +2153,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -2238,7 +2238,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -2302,7 +2302,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -2326,7 +2326,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -2350,7 +2350,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -2374,7 +2374,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -2398,7 +2398,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -2422,7 +2422,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -2446,7 +2446,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTabWidget_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -2471,8 +2471,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTabWidget_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -2495,7 +2495,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -2533,7 +2533,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTabWidget_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -2556,7 +2556,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -2613,7 +2613,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTabWidget_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -2636,7 +2636,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -2660,7 +2660,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -2703,7 +2703,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2727,7 +2727,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QTabWidget_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2768,7 +2768,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2792,7 +2792,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2816,7 +2816,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2840,7 +2840,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QTabWidget_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2882,7 +2882,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2906,7 +2906,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2930,7 +2930,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2954,7 +2954,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2978,7 +2978,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -3006,9 +3006,9 @@ static void _call_cbs_nativeEvent_4678_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - long int *arg3 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + long int *arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTabWidget_Adaptor *)cls)->cbs_nativeEvent_4678_0 (arg1, arg2, arg3)); } @@ -3068,7 +3068,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -3110,7 +3110,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QTabWidget_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -3133,7 +3133,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -3204,7 +3204,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -3247,7 +3247,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -3344,7 +3344,7 @@ static void _call_cbs_tabInserted_767_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget_Adaptor *)cls)->cbs_tabInserted_767_0 (arg1); } @@ -3368,7 +3368,7 @@ static void _call_cbs_tabRemoved_767_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget_Adaptor *)cls)->cbs_tabRemoved_767_0 (arg1); } @@ -3392,7 +3392,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -3416,7 +3416,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -3455,7 +3455,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQTableView.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQTableView.cc index bd943b8cf..2046c3456 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQTableView.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQTableView.cc @@ -2891,7 +2891,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -2933,7 +2933,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -2957,7 +2957,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -3001,8 +3001,8 @@ static void _call_cbs_closeEditor_4926_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_closeEditor_4926_0 (arg1, arg2); } @@ -3026,7 +3026,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -3122,7 +3122,7 @@ static void _call_cbs_commitData_1315_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_commitData_1315_0 (arg1); } @@ -3146,7 +3146,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -3197,8 +3197,8 @@ static void _call_cbs_currentChanged_4682_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_currentChanged_4682_0 (arg1, arg2); } @@ -3240,7 +3240,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -3268,9 +3268,9 @@ static void _call_cbs_dataChanged_7048_1 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); - const QVector &arg3 = args.read & > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); + const QVector &arg3 = args ? gsi::arg_reader & >() (args, heap) : gsi::arg_maker & >() (QVector(), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_dataChanged_7048_1 (arg1, arg2, arg3); } @@ -3348,7 +3348,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -3425,7 +3425,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -3449,7 +3449,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -3473,7 +3473,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -3516,7 +3516,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -3558,9 +3558,9 @@ static void _call_cbs_edit_6773_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - QEvent *arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + QEvent *arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTableView_Adaptor *)cls)->cbs_edit_6773_0 (arg1, arg2, arg3)); } @@ -3583,7 +3583,7 @@ static void _call_cbs_editorDestroyed_1302_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_editorDestroyed_1302_0 (arg1); } @@ -3607,7 +3607,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -3649,7 +3649,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTableView_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -3674,8 +3674,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTableView_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -3713,7 +3713,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -3751,7 +3751,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTableView_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -3774,7 +3774,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -3831,7 +3831,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTableView_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -3854,7 +3854,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -3897,7 +3897,7 @@ static void _call_cbs_horizontalScrollbarAction_767_0 (const qt_gsi::GenericMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_horizontalScrollbarAction_767_0 (arg1); } @@ -3921,7 +3921,7 @@ static void _call_cbs_horizontalScrollbarValueChanged_767_0 (const qt_gsi::Gener { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_horizontalScrollbarValueChanged_767_0 (arg1); } @@ -3977,7 +3977,7 @@ static void _call_cbs_indexAt_c1916_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QTableView_Adaptor *)cls)->cbs_indexAt_c1916_0 (arg1)); } @@ -4000,7 +4000,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -4043,7 +4043,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -4067,7 +4067,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QTableView_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -4090,7 +4090,7 @@ static void _call_cbs_isIndexHidden_c2395_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTableView_Adaptor *)cls)->cbs_isIndexHidden_c2395_0 (arg1)); } @@ -4131,7 +4131,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -4155,7 +4155,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -4179,7 +4179,7 @@ static void _call_cbs_keyboardSearch_2025_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_keyboardSearch_2025_0 (arg1); } @@ -4203,7 +4203,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -4227,7 +4227,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QTableView_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -4269,7 +4269,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -4293,7 +4293,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -4317,7 +4317,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -4341,7 +4341,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -4367,8 +4367,8 @@ static void _call_cbs_moveCursor_6476_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); - QFlags arg2 = args.read > (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); ret.write ((QModelIndex)((QTableView_Adaptor *)cls)->cbs_moveCursor_6476_0 (arg1, arg2)); } @@ -4391,7 +4391,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -4419,9 +4419,9 @@ static void _call_cbs_nativeEvent_4678_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - long int *arg3 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + long int *arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTableView_Adaptor *)cls)->cbs_nativeEvent_4678_0 (arg1, arg2, arg3)); } @@ -4481,7 +4481,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -4541,7 +4541,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QTableView_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -4584,7 +4584,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -4684,9 +4684,9 @@ static void _call_cbs_rowsAboutToBeRemoved_3713_0 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_rowsAboutToBeRemoved_3713_0 (arg1, arg2, arg3); } @@ -4714,9 +4714,9 @@ static void _call_cbs_rowsInserted_3713_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_rowsInserted_3713_0 (arg1, arg2, arg3); } @@ -4757,8 +4757,8 @@ static void _call_cbs_scrollContentsBy_1426_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_scrollContentsBy_1426_0 (arg1, arg2); } @@ -4806,8 +4806,8 @@ static void _call_cbs_scrollTo_5576_1 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QAbstractItemView::EnsureVisible), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_scrollTo_5576_1 (arg1, arg2); } @@ -4872,8 +4872,8 @@ static void _call_cbs_selectionChanged_5346_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QItemSelection &arg1 = args.read (heap); - const QItemSelection &arg2 = args.read (heap); + const QItemSelection &arg1 = gsi::arg_reader() (args, heap); + const QItemSelection &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_selectionChanged_5346_0 (arg1, arg2); } @@ -4899,8 +4899,8 @@ static void _call_cbs_selectionCommand_c4199_1 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QEvent *arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QEvent *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); ret.write > ((QFlags)((QTableView_Adaptor *)cls)->cbs_selectionCommand_c4199_1 (arg1, arg2)); } @@ -4989,7 +4989,7 @@ static void _call_cbs_setModel_2419_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractItemModel *arg1 = args.read (heap); + QAbstractItemModel *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_setModel_2419_0 (arg1); } @@ -5013,7 +5013,7 @@ static void _call_cbs_setRootIndex_2395_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_setRootIndex_2395_0 (arg1); } @@ -5039,8 +5039,8 @@ static void _call_cbs_setSelection_6155_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); - QFlags arg2 = args.read > (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_setSelection_6155_0 (arg1, arg2); } @@ -5064,7 +5064,7 @@ static void _call_cbs_setSelectionModel_2533_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QItemSelectionModel *arg1 = args.read (heap); + QItemSelectionModel *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_setSelectionModel_2533_0 (arg1); } @@ -5173,7 +5173,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -5197,7 +5197,7 @@ static void _call_cbs_setupViewport_1315_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_setupViewport_1315_0 (arg1); } @@ -5240,7 +5240,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -5283,7 +5283,7 @@ static void _call_cbs_sizeHintForColumn_c767_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTableView_Adaptor *)cls)->cbs_sizeHintForColumn_c767_0 (arg1)); } @@ -5306,7 +5306,7 @@ static void _call_cbs_sizeHintForRow_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTableView_Adaptor *)cls)->cbs_sizeHintForRow_c767_0 (arg1)); } @@ -5344,7 +5344,7 @@ static void _call_cbs_startDrag_2456_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_startDrag_2456_0 (arg1); } @@ -5397,7 +5397,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -5421,7 +5421,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -5539,7 +5539,7 @@ static void _call_cbs_verticalScrollbarAction_767_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_verticalScrollbarAction_767_0 (arg1); } @@ -5563,7 +5563,7 @@ static void _call_cbs_verticalScrollbarValueChanged_767_0 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_verticalScrollbarValueChanged_767_0 (arg1); } @@ -5634,7 +5634,7 @@ static void _call_cbs_viewportEvent_1217_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTableView_Adaptor *)cls)->cbs_viewportEvent_1217_0 (arg1)); } @@ -5690,7 +5690,7 @@ static void _call_cbs_visualRect_c2395_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QTableView_Adaptor *)cls)->cbs_visualRect_c2395_0 (arg1)); } @@ -5713,7 +5713,7 @@ static void _call_cbs_visualRegionForSelection_c2727_0 (const qt_gsi::GenericMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QItemSelection &arg1 = args.read (heap); + const QItemSelection &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRegion)((QTableView_Adaptor *)cls)->cbs_visualRegionForSelection_c2727_0 (arg1)); } @@ -5736,7 +5736,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQTableWidget.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQTableWidget.cc index d8c3b9fd7..ede36ff59 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQTableWidget.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQTableWidget.cc @@ -3249,7 +3249,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -3417,7 +3417,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -3441,7 +3441,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -3485,8 +3485,8 @@ static void _call_cbs_closeEditor_4926_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_closeEditor_4926_0 (arg1, arg2); } @@ -3510,7 +3510,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -3606,7 +3606,7 @@ static void _call_cbs_commitData_1315_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_commitData_1315_0 (arg1); } @@ -3630,7 +3630,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -3708,8 +3708,8 @@ static void _call_cbs_currentChanged_4682_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_currentChanged_4682_0 (arg1, arg2); } @@ -3772,7 +3772,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -3800,9 +3800,9 @@ static void _call_cbs_dataChanged_7048_1 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); - const QVector &arg3 = args.read & > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); + const QVector &arg3 = args ? gsi::arg_reader & >() (args, heap) : gsi::arg_maker & >() (QVector(), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_dataChanged_7048_1 (arg1, arg2, arg3); } @@ -3880,7 +3880,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -3957,7 +3957,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -3981,7 +3981,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -4005,7 +4005,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -4048,7 +4048,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -4092,10 +4092,10 @@ static void _call_cbs_dropMimeData_5138_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QMimeData *arg3 = args.read (heap); - const qt_gsi::Converter::target_type & arg4 = args.read::target_type & > (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QMimeData *arg3 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg4 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((bool)((QTableWidget_Adaptor *)cls)->cbs_dropMimeData_5138_0 (arg1, arg2, arg3, arg4)); } @@ -4122,9 +4122,9 @@ static void _call_cbs_edit_6773_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - QEvent *arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + QEvent *arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTableWidget_Adaptor *)cls)->cbs_edit_6773_0 (arg1, arg2, arg3)); } @@ -4147,7 +4147,7 @@ static void _call_cbs_editorDestroyed_1302_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_editorDestroyed_1302_0 (arg1); } @@ -4171,7 +4171,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -4213,7 +4213,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTableWidget_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -4238,8 +4238,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTableWidget_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -4277,7 +4277,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -4315,7 +4315,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTableWidget_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -4338,7 +4338,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -4395,7 +4395,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTableWidget_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -4418,7 +4418,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -4461,7 +4461,7 @@ static void _call_cbs_horizontalScrollbarAction_767_0 (const qt_gsi::GenericMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_horizontalScrollbarAction_767_0 (arg1); } @@ -4485,7 +4485,7 @@ static void _call_cbs_horizontalScrollbarValueChanged_767_0 (const qt_gsi::Gener { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_horizontalScrollbarValueChanged_767_0 (arg1); } @@ -4541,7 +4541,7 @@ static void _call_cbs_indexAt_c1916_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QTableWidget_Adaptor *)cls)->cbs_indexAt_c1916_0 (arg1)); } @@ -4600,7 +4600,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -4643,7 +4643,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -4667,7 +4667,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QTableWidget_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -4690,7 +4690,7 @@ static void _call_cbs_isIndexHidden_c2395_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTableWidget_Adaptor *)cls)->cbs_isIndexHidden_c2395_0 (arg1)); } @@ -4889,7 +4889,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -4913,7 +4913,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -4937,7 +4937,7 @@ static void _call_cbs_keyboardSearch_2025_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_keyboardSearch_2025_0 (arg1); } @@ -4961,7 +4961,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -4985,7 +4985,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QTableWidget_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -5008,7 +5008,7 @@ static void _call_cbs_mimeData_c3368_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList arg1 = args.read > (heap); + const QList arg1 = gsi::arg_reader >() (args, heap); ret.write ((QMimeData *)((QTableWidget_Adaptor *)cls)->cbs_mimeData_c3368_0 (arg1)); } @@ -5069,7 +5069,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -5093,7 +5093,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -5117,7 +5117,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -5141,7 +5141,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -5167,8 +5167,8 @@ static void _call_cbs_moveCursor_6476_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); - QFlags arg2 = args.read > (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); ret.write ((QModelIndex)((QTableWidget_Adaptor *)cls)->cbs_moveCursor_6476_0 (arg1, arg2)); } @@ -5191,7 +5191,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -5219,9 +5219,9 @@ static void _call_cbs_nativeEvent_4678_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - long int *arg3 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + long int *arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTableWidget_Adaptor *)cls)->cbs_nativeEvent_4678_0 (arg1, arg2, arg3)); } @@ -5281,7 +5281,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -5341,7 +5341,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QTableWidget_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -5384,7 +5384,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -5484,9 +5484,9 @@ static void _call_cbs_rowsAboutToBeRemoved_3713_0 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_rowsAboutToBeRemoved_3713_0 (arg1, arg2, arg3); } @@ -5514,9 +5514,9 @@ static void _call_cbs_rowsInserted_3713_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_rowsInserted_3713_0 (arg1, arg2, arg3); } @@ -5557,8 +5557,8 @@ static void _call_cbs_scrollContentsBy_1426_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_scrollContentsBy_1426_0 (arg1, arg2); } @@ -5606,8 +5606,8 @@ static void _call_cbs_scrollTo_5576_1 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QAbstractItemView::EnsureVisible), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_scrollTo_5576_1 (arg1, arg2); } @@ -5672,8 +5672,8 @@ static void _call_cbs_selectionChanged_5346_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QItemSelection &arg1 = args.read (heap); - const QItemSelection &arg2 = args.read (heap); + const QItemSelection &arg1 = gsi::arg_reader() (args, heap); + const QItemSelection &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_selectionChanged_5346_0 (arg1, arg2); } @@ -5699,8 +5699,8 @@ static void _call_cbs_selectionCommand_c4199_1 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QEvent *arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QEvent *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); ret.write > ((QFlags)((QTableWidget_Adaptor *)cls)->cbs_selectionCommand_c4199_1 (arg1, arg2)); } @@ -5789,7 +5789,7 @@ static void _call_cbs_setRootIndex_2395_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_setRootIndex_2395_0 (arg1); } @@ -5815,8 +5815,8 @@ static void _call_cbs_setSelection_6155_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); - QFlags arg2 = args.read > (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_setSelection_6155_0 (arg1, arg2); } @@ -5840,7 +5840,7 @@ static void _call_cbs_setSelectionModel_2533_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QItemSelectionModel *arg1 = args.read (heap); + QItemSelectionModel *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_setSelectionModel_2533_0 (arg1); } @@ -5949,7 +5949,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -5973,7 +5973,7 @@ static void _call_cbs_setupViewport_1315_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_setupViewport_1315_0 (arg1); } @@ -6016,7 +6016,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -6059,7 +6059,7 @@ static void _call_cbs_sizeHintForColumn_c767_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTableWidget_Adaptor *)cls)->cbs_sizeHintForColumn_c767_0 (arg1)); } @@ -6082,7 +6082,7 @@ static void _call_cbs_sizeHintForRow_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTableWidget_Adaptor *)cls)->cbs_sizeHintForRow_c767_0 (arg1)); } @@ -6120,7 +6120,7 @@ static void _call_cbs_startDrag_2456_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_startDrag_2456_0 (arg1); } @@ -6192,7 +6192,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -6216,7 +6216,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -6334,7 +6334,7 @@ static void _call_cbs_verticalScrollbarAction_767_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_verticalScrollbarAction_767_0 (arg1); } @@ -6358,7 +6358,7 @@ static void _call_cbs_verticalScrollbarValueChanged_767_0 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_verticalScrollbarValueChanged_767_0 (arg1); } @@ -6429,7 +6429,7 @@ static void _call_cbs_viewportEvent_1217_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTableWidget_Adaptor *)cls)->cbs_viewportEvent_1217_0 (arg1)); } @@ -6485,7 +6485,7 @@ static void _call_cbs_visualRect_c2395_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QTableWidget_Adaptor *)cls)->cbs_visualRect_c2395_0 (arg1)); } @@ -6508,7 +6508,7 @@ static void _call_cbs_visualRegionForSelection_c2727_0 (const qt_gsi::GenericMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QItemSelection &arg1 = args.read (heap); + const QItemSelection &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRegion)((QTableWidget_Adaptor *)cls)->cbs_visualRegionForSelection_c2727_0 (arg1)); } @@ -6531,7 +6531,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQTableWidgetItem.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQTableWidgetItem.cc index d7bd846b7..01529bcba 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQTableWidgetItem.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQTableWidgetItem.cc @@ -1081,7 +1081,7 @@ static void _call_cbs_data_c767_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QTableWidgetItem_Adaptor *)cls)->cbs_data_c767_0 (arg1)); } @@ -1104,7 +1104,7 @@ static void _call_cbs_operator_lt__c2893_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTableWidgetItem &arg1 = args.read (heap); + const QTableWidgetItem &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTableWidgetItem_Adaptor *)cls)->cbs_operator_lt__c2893_0 (arg1)); } @@ -1127,7 +1127,7 @@ static void _call_cbs_read_1697_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDataStream &arg1 = args.read (heap); + QDataStream &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidgetItem_Adaptor *)cls)->cbs_read_1697_0 (arg1); } @@ -1153,8 +1153,8 @@ static void _call_cbs_setData_2778_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidgetItem_Adaptor *)cls)->cbs_setData_2778_0 (arg1, arg2); } @@ -1178,7 +1178,7 @@ static void _call_cbs_write_c1697_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDataStream &arg1 = args.read (heap); + QDataStream &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidgetItem_Adaptor *)cls)->cbs_write_c1697_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQTapAndHoldGesture.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQTapAndHoldGesture.cc index bf59594cf..66abd233c 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQTapAndHoldGesture.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQTapAndHoldGesture.cc @@ -385,7 +385,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTapAndHoldGesture_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -409,7 +409,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTapAndHoldGesture_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -451,7 +451,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTapAndHoldGesture_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -475,7 +475,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTapAndHoldGesture_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -500,8 +500,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTapAndHoldGesture_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -606,7 +606,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTapAndHoldGesture_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQTapGesture.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQTapGesture.cc index eee86e669..a5263fa95 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQTapGesture.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQTapGesture.cc @@ -348,7 +348,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTapGesture_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -372,7 +372,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTapGesture_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -414,7 +414,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTapGesture_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -438,7 +438,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTapGesture_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -463,8 +463,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTapGesture_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -569,7 +569,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTapGesture_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQTextBrowser.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQTextBrowser.cc index e8dda8477..b334db97e 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQTextBrowser.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQTextBrowser.cc @@ -1755,7 +1755,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1835,7 +1835,7 @@ static void _call_cbs_canInsertFromMimeData_c2168_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMimeData *arg1 = args.read (heap); + const QMimeData *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextBrowser_Adaptor *)cls)->cbs_canInsertFromMimeData_c2168_0 (arg1)); } @@ -1858,7 +1858,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1882,7 +1882,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1906,7 +1906,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1930,7 +1930,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -2066,7 +2066,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -2130,7 +2130,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -2154,7 +2154,7 @@ static void _call_cbs_doSetTextCursor_2453_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextCursor &arg1 = args.read (heap); + const QTextCursor &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser_Adaptor *)cls)->cbs_doSetTextCursor_2453_0 (arg1); } @@ -2178,7 +2178,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -2202,7 +2202,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -2226,7 +2226,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -2269,7 +2269,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -2293,7 +2293,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -2317,7 +2317,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextBrowser_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -2342,8 +2342,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextBrowser_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -2366,7 +2366,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -2404,7 +2404,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextBrowser_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -2427,7 +2427,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -2522,7 +2522,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTextBrowser_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -2545,7 +2545,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -2639,7 +2639,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -2682,7 +2682,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2706,7 +2706,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QTextBrowser_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2729,7 +2729,7 @@ static void _call_cbs_insertFromMimeData_2168_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMimeData *arg1 = args.read (heap); + const QMimeData *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser_Adaptor *)cls)->cbs_insertFromMimeData_2168_0 (arg1); } @@ -2771,7 +2771,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2795,7 +2795,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2819,7 +2819,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2845,8 +2845,8 @@ static void _call_cbs_loadResource_2360_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QUrl &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QUrl &arg2 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QTextBrowser_Adaptor *)cls)->cbs_loadResource_2360_0 (arg1, arg2)); } @@ -2869,7 +2869,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QTextBrowser_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2911,7 +2911,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2935,7 +2935,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2959,7 +2959,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2983,7 +2983,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -3007,7 +3007,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -3035,9 +3035,9 @@ static void _call_cbs_nativeEvent_4678_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - long int *arg3 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + long int *arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextBrowser_Adaptor *)cls)->cbs_nativeEvent_4678_0 (arg1, arg2, arg3)); } @@ -3097,7 +3097,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -3139,7 +3139,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QTextBrowser_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -3200,7 +3200,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -3226,8 +3226,8 @@ static void _call_cbs_scrollContentsBy_1426_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser_Adaptor *)cls)->cbs_scrollContentsBy_1426_0 (arg1, arg2); } @@ -3293,7 +3293,7 @@ static void _call_cbs_setSource_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QUrl &arg1 = args.read (heap); + const QUrl &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser_Adaptor *)cls)->cbs_setSource_1701_0 (arg1); } @@ -3364,7 +3364,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -3388,7 +3388,7 @@ static void _call_cbs_setupViewport_1315_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser_Adaptor *)cls)->cbs_setupViewport_1315_0 (arg1); } @@ -3431,7 +3431,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -3492,7 +3492,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -3530,7 +3530,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -3587,7 +3587,7 @@ static void _call_cbs_viewportEvent_1217_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextBrowser_Adaptor *)cls)->cbs_viewportEvent_1217_0 (arg1)); } @@ -3643,7 +3643,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQTextEdit.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQTextEdit.cc index d9c4eef35..94ecb11e7 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQTextEdit.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQTextEdit.cc @@ -2998,7 +2998,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -3022,7 +3022,7 @@ static void _call_cbs_canInsertFromMimeData_c2168_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMimeData *arg1 = args.read (heap); + const QMimeData *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextEdit_Adaptor *)cls)->cbs_canInsertFromMimeData_c2168_0 (arg1)); } @@ -3045,7 +3045,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -3069,7 +3069,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -3093,7 +3093,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -3117,7 +3117,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -3253,7 +3253,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -3317,7 +3317,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -3341,7 +3341,7 @@ static void _call_cbs_doSetTextCursor_2453_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextCursor &arg1 = args.read (heap); + const QTextCursor &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit_Adaptor *)cls)->cbs_doSetTextCursor_2453_0 (arg1); } @@ -3365,7 +3365,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -3389,7 +3389,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -3413,7 +3413,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -3456,7 +3456,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -3480,7 +3480,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -3504,7 +3504,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextEdit_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -3529,8 +3529,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextEdit_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -3553,7 +3553,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -3591,7 +3591,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextEdit_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -3614,7 +3614,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -3671,7 +3671,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTextEdit_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -3694,7 +3694,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -3718,7 +3718,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -3761,7 +3761,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -3785,7 +3785,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QTextEdit_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -3808,7 +3808,7 @@ static void _call_cbs_insertFromMimeData_2168_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMimeData *arg1 = args.read (heap); + const QMimeData *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit_Adaptor *)cls)->cbs_insertFromMimeData_2168_0 (arg1); } @@ -3850,7 +3850,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -3874,7 +3874,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -3898,7 +3898,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -3924,8 +3924,8 @@ static void _call_cbs_loadResource_2360_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QUrl &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QUrl &arg2 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QTextEdit_Adaptor *)cls)->cbs_loadResource_2360_0 (arg1, arg2)); } @@ -3948,7 +3948,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QTextEdit_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -3990,7 +3990,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -4014,7 +4014,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -4038,7 +4038,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -4062,7 +4062,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -4086,7 +4086,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -4114,9 +4114,9 @@ static void _call_cbs_nativeEvent_4678_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - long int *arg3 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + long int *arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextEdit_Adaptor *)cls)->cbs_nativeEvent_4678_0 (arg1, arg2, arg3)); } @@ -4176,7 +4176,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -4218,7 +4218,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QTextEdit_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -4259,7 +4259,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -4285,8 +4285,8 @@ static void _call_cbs_scrollContentsBy_1426_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit_Adaptor *)cls)->cbs_scrollContentsBy_1426_0 (arg1, arg2); } @@ -4399,7 +4399,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -4423,7 +4423,7 @@ static void _call_cbs_setupViewport_1315_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit_Adaptor *)cls)->cbs_setupViewport_1315_0 (arg1); } @@ -4466,7 +4466,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -4509,7 +4509,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -4547,7 +4547,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -4604,7 +4604,7 @@ static void _call_cbs_viewportEvent_1217_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextEdit_Adaptor *)cls)->cbs_viewportEvent_1217_0 (arg1)); } @@ -4660,7 +4660,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQTimeEdit.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQTimeEdit.cc index 5fce40ab4..02d0ee5f5 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQTimeEdit.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQTimeEdit.cc @@ -1233,7 +1233,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeEdit_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1257,7 +1257,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeEdit_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1281,7 +1281,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeEdit_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1325,7 +1325,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeEdit_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1349,7 +1349,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeEdit_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1416,7 +1416,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeEdit_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1476,7 +1476,7 @@ static void _call_cbs_dateTimeFromText_c2025_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QDateTime)((QTimeEdit_Adaptor *)cls)->cbs_dateTimeFromText_c2025_0 (arg1)); } @@ -1539,7 +1539,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeEdit_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1563,7 +1563,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeEdit_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1587,7 +1587,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeEdit_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1611,7 +1611,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeEdit_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1635,7 +1635,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeEdit_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1673,7 +1673,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeEdit_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -1697,7 +1697,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTimeEdit_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1722,8 +1722,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTimeEdit_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1746,7 +1746,7 @@ static void _call_cbs_fixup_c1330_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QString &arg1 = args.read (heap); + QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeEdit_Adaptor *)cls)->cbs_fixup_c1330_0 (arg1); } @@ -1770,7 +1770,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeEdit_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1808,7 +1808,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTimeEdit_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -1831,7 +1831,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeEdit_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -1888,7 +1888,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTimeEdit_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -1911,7 +1911,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeEdit_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -1935,7 +1935,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeEdit_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -1978,7 +1978,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeEdit_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2002,7 +2002,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QTimeEdit_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2043,7 +2043,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeEdit_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2067,7 +2067,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeEdit_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2091,7 +2091,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeEdit_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2129,7 +2129,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QTimeEdit_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2171,7 +2171,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeEdit_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2195,7 +2195,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeEdit_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2219,7 +2219,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeEdit_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2243,7 +2243,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeEdit_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2267,7 +2267,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeEdit_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2295,9 +2295,9 @@ static void _call_cbs_nativeEvent_4678_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - long int *arg3 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + long int *arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTimeEdit_Adaptor *)cls)->cbs_nativeEvent_4678_0 (arg1, arg2, arg3)); } @@ -2357,7 +2357,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeEdit_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2399,7 +2399,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QTimeEdit_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -2422,7 +2422,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeEdit_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2493,7 +2493,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeEdit_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2536,7 +2536,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeEdit_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2579,7 +2579,7 @@ static void _call_cbs_stepBy_767_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeEdit_Adaptor *)cls)->cbs_stepBy_767_0 (arg1); } @@ -2622,7 +2622,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeEdit_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2646,7 +2646,7 @@ static void _call_cbs_textFromDateTime_c2175_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDateTime &arg1 = args.read (heap); + const QDateTime &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QTimeEdit_Adaptor *)cls)->cbs_textFromDateTime_c2175_0 (arg1)); } @@ -2687,7 +2687,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeEdit_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2746,8 +2746,8 @@ static void _call_cbs_validate_c2171_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QString &arg1 = args.read (heap); - int &arg2 = args.read (heap); + QString &arg1 = gsi::arg_reader() (args, heap); + int &arg2 = gsi::arg_reader() (args, heap); ret.write::target_type > ((qt_gsi::Converter::target_type)((QTimeEdit_Adaptor *)cls)->cbs_validate_c2171_0 (arg1, arg2)); } @@ -2770,7 +2770,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeEdit_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQToolBar.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQToolBar.cc index 8aa8b1e6f..2c2462faf 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQToolBar.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQToolBar.cc @@ -1699,7 +1699,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBar_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1759,7 +1759,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBar_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1783,7 +1783,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBar_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1807,7 +1807,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBar_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1831,7 +1831,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBar_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1898,7 +1898,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBar_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1962,7 +1962,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBar_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1986,7 +1986,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBar_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -2010,7 +2010,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBar_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -2034,7 +2034,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBar_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -2058,7 +2058,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBar_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -2082,7 +2082,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBar_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -2106,7 +2106,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QToolBar_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -2131,8 +2131,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QToolBar_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -2155,7 +2155,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBar_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -2193,7 +2193,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QToolBar_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -2216,7 +2216,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBar_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -2273,7 +2273,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QToolBar_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -2296,7 +2296,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBar_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -2338,7 +2338,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBar_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -2381,7 +2381,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBar_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2405,7 +2405,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QToolBar_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2446,7 +2446,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBar_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2470,7 +2470,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBar_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2494,7 +2494,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBar_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2518,7 +2518,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QToolBar_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2560,7 +2560,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBar_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2584,7 +2584,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBar_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2608,7 +2608,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBar_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2632,7 +2632,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBar_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2674,7 +2674,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBar_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2702,9 +2702,9 @@ static void _call_cbs_nativeEvent_4678_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - long int *arg3 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + long int *arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QToolBar_Adaptor *)cls)->cbs_nativeEvent_4678_0 (arg1, arg2, arg3)); } @@ -2782,7 +2782,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBar_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2824,7 +2824,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QToolBar_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -2847,7 +2847,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBar_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2899,7 +2899,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBar_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2942,7 +2942,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBar_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2985,7 +2985,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBar_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -3009,7 +3009,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBar_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -3102,7 +3102,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBar_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQToolBox.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQToolBox.cc index 333639acc..70c43220e 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQToolBox.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQToolBox.cc @@ -1522,7 +1522,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBox_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1546,7 +1546,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBox_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1570,7 +1570,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBox_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1594,7 +1594,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBox_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1618,7 +1618,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBox_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1703,7 +1703,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBox_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1767,7 +1767,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBox_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1791,7 +1791,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBox_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1815,7 +1815,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBox_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1839,7 +1839,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBox_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1882,7 +1882,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBox_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1906,7 +1906,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBox_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -1930,7 +1930,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QToolBox_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1955,8 +1955,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QToolBox_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1979,7 +1979,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBox_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -2017,7 +2017,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QToolBox_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -2040,7 +2040,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBox_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -2097,7 +2097,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QToolBox_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -2120,7 +2120,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBox_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -2144,7 +2144,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBox_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -2187,7 +2187,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBox_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2211,7 +2211,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QToolBox_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2252,7 +2252,7 @@ static void _call_cbs_itemInserted_767_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBox_Adaptor *)cls)->cbs_itemInserted_767_0 (arg1); } @@ -2276,7 +2276,7 @@ static void _call_cbs_itemRemoved_767_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBox_Adaptor *)cls)->cbs_itemRemoved_767_0 (arg1); } @@ -2300,7 +2300,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBox_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2324,7 +2324,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBox_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2348,7 +2348,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBox_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2372,7 +2372,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QToolBox_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2414,7 +2414,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBox_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2438,7 +2438,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBox_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2462,7 +2462,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBox_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2486,7 +2486,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBox_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2510,7 +2510,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBox_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2538,9 +2538,9 @@ static void _call_cbs_nativeEvent_4678_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - long int *arg3 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + long int *arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QToolBox_Adaptor *)cls)->cbs_nativeEvent_4678_0 (arg1, arg2, arg3)); } @@ -2600,7 +2600,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBox_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2642,7 +2642,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QToolBox_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -2665,7 +2665,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBox_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2717,7 +2717,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBox_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2760,7 +2760,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBox_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2803,7 +2803,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBox_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2827,7 +2827,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBox_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2866,7 +2866,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBox_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQToolButton.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQToolButton.cc index 0539265da..398520ae1 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQToolButton.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQToolButton.cc @@ -1394,7 +1394,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolButton_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1418,7 +1418,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolButton_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1462,7 +1462,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolButton_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1504,7 +1504,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolButton_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1528,7 +1528,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolButton_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1595,7 +1595,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolButton_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1659,7 +1659,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolButton_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1683,7 +1683,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolButton_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1707,7 +1707,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolButton_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1731,7 +1731,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolButton_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1755,7 +1755,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolButton_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1779,7 +1779,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolButton_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -1803,7 +1803,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QToolButton_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1828,8 +1828,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QToolButton_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1852,7 +1852,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolButton_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1890,7 +1890,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QToolButton_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -1913,7 +1913,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolButton_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -1970,7 +1970,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QToolButton_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -1993,7 +1993,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolButton_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -2017,7 +2017,7 @@ static void _call_cbs_hitButton_c1916_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QToolButton_Adaptor *)cls)->cbs_hitButton_c1916_0 (arg1)); } @@ -2040,7 +2040,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolButton_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -2083,7 +2083,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolButton_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2107,7 +2107,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QToolButton_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2148,7 +2148,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolButton_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2172,7 +2172,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolButton_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2196,7 +2196,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolButton_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2220,7 +2220,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QToolButton_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2262,7 +2262,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolButton_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2286,7 +2286,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolButton_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2310,7 +2310,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolButton_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2334,7 +2334,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolButton_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2358,7 +2358,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolButton_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2386,9 +2386,9 @@ static void _call_cbs_nativeEvent_4678_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - long int *arg3 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + long int *arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QToolButton_Adaptor *)cls)->cbs_nativeEvent_4678_0 (arg1, arg2, arg3)); } @@ -2468,7 +2468,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolButton_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2524,7 +2524,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QToolButton_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -2561,7 +2561,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolButton_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2613,7 +2613,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolButton_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2656,7 +2656,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolButton_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2699,7 +2699,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolButton_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2723,7 +2723,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolButton_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2798,7 +2798,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolButton_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQTreeView.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQTreeView.cc index d1eae273c..b315283bf 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQTreeView.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQTreeView.cc @@ -3189,7 +3189,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -3231,7 +3231,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -3255,7 +3255,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -3299,8 +3299,8 @@ static void _call_cbs_closeEditor_4926_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_closeEditor_4926_0 (arg1, arg2); } @@ -3324,7 +3324,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -3428,7 +3428,7 @@ static void _call_cbs_commitData_1315_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_commitData_1315_0 (arg1); } @@ -3452,7 +3452,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -3503,8 +3503,8 @@ static void _call_cbs_currentChanged_4682_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_currentChanged_4682_0 (arg1, arg2); } @@ -3546,7 +3546,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -3574,9 +3574,9 @@ static void _call_cbs_dataChanged_7048_1 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); - const QVector &arg3 = args.read & > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); + const QVector &arg3 = args ? gsi::arg_reader & >() (args, heap) : gsi::arg_maker & >() (QVector(), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_dataChanged_7048_1 (arg1, arg2, arg3); } @@ -3654,7 +3654,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -3731,7 +3731,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -3755,7 +3755,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -3779,7 +3779,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -3807,9 +3807,9 @@ static void _call_cbs_drawBranches_c5397_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QRect &arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QRect &arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_drawBranches_c5397_0 (arg1, arg2, arg3); } @@ -3856,9 +3856,9 @@ static void _call_cbs_drawRow_c6971_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QStyleOptionViewItem &arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionViewItem &arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_drawRow_c6971_0 (arg1, arg2, arg3); } @@ -3904,7 +3904,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -3946,9 +3946,9 @@ static void _call_cbs_edit_6773_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - QEvent *arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + QEvent *arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTreeView_Adaptor *)cls)->cbs_edit_6773_0 (arg1, arg2, arg3)); } @@ -3971,7 +3971,7 @@ static void _call_cbs_editorDestroyed_1302_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_editorDestroyed_1302_0 (arg1); } @@ -3995,7 +3995,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -4037,7 +4037,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTreeView_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -4062,8 +4062,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTreeView_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -4119,7 +4119,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -4157,7 +4157,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTreeView_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -4180,7 +4180,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -4237,7 +4237,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTreeView_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -4260,7 +4260,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -4303,7 +4303,7 @@ static void _call_cbs_horizontalScrollbarAction_767_0 (const qt_gsi::GenericMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_horizontalScrollbarAction_767_0 (arg1); } @@ -4327,7 +4327,7 @@ static void _call_cbs_horizontalScrollbarValueChanged_767_0 (const qt_gsi::Gener { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_horizontalScrollbarValueChanged_767_0 (arg1); } @@ -4383,7 +4383,7 @@ static void _call_cbs_indexAt_c1916_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QTreeView_Adaptor *)cls)->cbs_indexAt_c1916_0 (arg1)); } @@ -4424,7 +4424,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -4467,7 +4467,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -4491,7 +4491,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QTreeView_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -4514,7 +4514,7 @@ static void _call_cbs_isIndexHidden_c2395_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTreeView_Adaptor *)cls)->cbs_isIndexHidden_c2395_0 (arg1)); } @@ -4555,7 +4555,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -4579,7 +4579,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -4603,7 +4603,7 @@ static void _call_cbs_keyboardSearch_2025_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_keyboardSearch_2025_0 (arg1); } @@ -4627,7 +4627,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -4651,7 +4651,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QTreeView_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -4693,7 +4693,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -4717,7 +4717,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -4741,7 +4741,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -4765,7 +4765,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -4791,8 +4791,8 @@ static void _call_cbs_moveCursor_6476_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); - QFlags arg2 = args.read > (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); ret.write ((QModelIndex)((QTreeView_Adaptor *)cls)->cbs_moveCursor_6476_0 (arg1, arg2)); } @@ -4815,7 +4815,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -4843,9 +4843,9 @@ static void _call_cbs_nativeEvent_4678_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - long int *arg3 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + long int *arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTreeView_Adaptor *)cls)->cbs_nativeEvent_4678_0 (arg1, arg2, arg3)); } @@ -4905,7 +4905,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -4965,7 +4965,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QTreeView_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -5023,7 +5023,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -5069,9 +5069,9 @@ static void _call_cbs_rowsAboutToBeRemoved_3713_0 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_rowsAboutToBeRemoved_3713_0 (arg1, arg2, arg3); } @@ -5099,9 +5099,9 @@ static void _call_cbs_rowsInserted_3713_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_rowsInserted_3713_0 (arg1, arg2, arg3); } @@ -5167,8 +5167,8 @@ static void _call_cbs_scrollContentsBy_1426_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_scrollContentsBy_1426_0 (arg1, arg2); } @@ -5216,8 +5216,8 @@ static void _call_cbs_scrollTo_5576_1 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QAbstractItemView::EnsureVisible), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_scrollTo_5576_1 (arg1, arg2); } @@ -5282,8 +5282,8 @@ static void _call_cbs_selectionChanged_5346_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QItemSelection &arg1 = args.read (heap); - const QItemSelection &arg2 = args.read (heap); + const QItemSelection &arg1 = gsi::arg_reader() (args, heap); + const QItemSelection &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_selectionChanged_5346_0 (arg1, arg2); } @@ -5309,8 +5309,8 @@ static void _call_cbs_selectionCommand_c4199_1 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QEvent *arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QEvent *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); ret.write > ((QFlags)((QTreeView_Adaptor *)cls)->cbs_selectionCommand_c4199_1 (arg1, arg2)); } @@ -5399,7 +5399,7 @@ static void _call_cbs_setModel_2419_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractItemModel *arg1 = args.read (heap); + QAbstractItemModel *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_setModel_2419_0 (arg1); } @@ -5423,7 +5423,7 @@ static void _call_cbs_setRootIndex_2395_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_setRootIndex_2395_0 (arg1); } @@ -5449,8 +5449,8 @@ static void _call_cbs_setSelection_6155_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); - QFlags arg2 = args.read > (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_setSelection_6155_0 (arg1, arg2); } @@ -5474,7 +5474,7 @@ static void _call_cbs_setSelectionModel_2533_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QItemSelectionModel *arg1 = args.read (heap); + QItemSelectionModel *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_setSelectionModel_2533_0 (arg1); } @@ -5583,7 +5583,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -5607,7 +5607,7 @@ static void _call_cbs_setupViewport_1315_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_setupViewport_1315_0 (arg1); } @@ -5650,7 +5650,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -5693,7 +5693,7 @@ static void _call_cbs_sizeHintForColumn_c767_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTreeView_Adaptor *)cls)->cbs_sizeHintForColumn_c767_0 (arg1)); } @@ -5716,7 +5716,7 @@ static void _call_cbs_sizeHintForRow_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTreeView_Adaptor *)cls)->cbs_sizeHintForRow_c767_0 (arg1)); } @@ -5754,7 +5754,7 @@ static void _call_cbs_startDrag_2456_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_startDrag_2456_0 (arg1); } @@ -5807,7 +5807,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -5831,7 +5831,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -5949,7 +5949,7 @@ static void _call_cbs_verticalScrollbarAction_767_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_verticalScrollbarAction_767_0 (arg1); } @@ -5973,7 +5973,7 @@ static void _call_cbs_verticalScrollbarValueChanged_767_0 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_verticalScrollbarValueChanged_767_0 (arg1); } @@ -6044,7 +6044,7 @@ static void _call_cbs_viewportEvent_1217_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTreeView_Adaptor *)cls)->cbs_viewportEvent_1217_0 (arg1)); } @@ -6100,7 +6100,7 @@ static void _call_cbs_visualRect_c2395_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QTreeView_Adaptor *)cls)->cbs_visualRect_c2395_0 (arg1)); } @@ -6123,7 +6123,7 @@ static void _call_cbs_visualRegionForSelection_c2727_0 (const qt_gsi::GenericMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QItemSelection &arg1 = args.read (heap); + const QItemSelection &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRegion)((QTreeView_Adaptor *)cls)->cbs_visualRegionForSelection_c2727_0 (arg1)); } @@ -6146,7 +6146,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQTreeWidget.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQTreeWidget.cc index 4531e896b..aa1f5b3be 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQTreeWidget.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQTreeWidget.cc @@ -3148,7 +3148,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -3190,7 +3190,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -3214,7 +3214,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -3258,8 +3258,8 @@ static void _call_cbs_closeEditor_4926_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_closeEditor_4926_0 (arg1, arg2); } @@ -3283,7 +3283,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -3387,7 +3387,7 @@ static void _call_cbs_commitData_1315_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_commitData_1315_0 (arg1); } @@ -3411,7 +3411,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -3462,8 +3462,8 @@ static void _call_cbs_currentChanged_4682_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_currentChanged_4682_0 (arg1, arg2); } @@ -3526,7 +3526,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -3554,9 +3554,9 @@ static void _call_cbs_dataChanged_7048_1 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); - const QVector &arg3 = args.read & > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); + const QVector &arg3 = args ? gsi::arg_reader & >() (args, heap) : gsi::arg_maker & >() (QVector(), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_dataChanged_7048_1 (arg1, arg2, arg3); } @@ -3634,7 +3634,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -3711,7 +3711,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -3735,7 +3735,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -3759,7 +3759,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -3787,9 +3787,9 @@ static void _call_cbs_drawBranches_c5397_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QRect &arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QRect &arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_drawBranches_c5397_0 (arg1, arg2, arg3); } @@ -3836,9 +3836,9 @@ static void _call_cbs_drawRow_c6971_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QStyleOptionViewItem &arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionViewItem &arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_drawRow_c6971_0 (arg1, arg2, arg3); } @@ -3884,7 +3884,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -3928,10 +3928,10 @@ static void _call_cbs_dropMimeData_6485_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTreeWidgetItem *arg1 = args.read (heap); - int arg2 = args.read (heap); - const QMimeData *arg3 = args.read (heap); - const qt_gsi::Converter::target_type & arg4 = args.read::target_type & > (heap); + QTreeWidgetItem *arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QMimeData *arg3 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg4 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((bool)((QTreeWidget_Adaptor *)cls)->cbs_dropMimeData_6485_0 (arg1, arg2, arg3, arg4)); } @@ -3958,9 +3958,9 @@ static void _call_cbs_edit_6773_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - QEvent *arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + QEvent *arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTreeWidget_Adaptor *)cls)->cbs_edit_6773_0 (arg1, arg2, arg3)); } @@ -3983,7 +3983,7 @@ static void _call_cbs_editorDestroyed_1302_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_editorDestroyed_1302_0 (arg1); } @@ -4007,7 +4007,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -4049,7 +4049,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTreeWidget_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -4074,8 +4074,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTreeWidget_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -4131,7 +4131,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -4169,7 +4169,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTreeWidget_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -4192,7 +4192,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -4249,7 +4249,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTreeWidget_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -4272,7 +4272,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -4315,7 +4315,7 @@ static void _call_cbs_horizontalScrollbarAction_767_0 (const qt_gsi::GenericMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_horizontalScrollbarAction_767_0 (arg1); } @@ -4339,7 +4339,7 @@ static void _call_cbs_horizontalScrollbarValueChanged_767_0 (const qt_gsi::Gener { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_horizontalScrollbarValueChanged_767_0 (arg1); } @@ -4395,7 +4395,7 @@ static void _call_cbs_indexAt_c1916_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QTreeWidget_Adaptor *)cls)->cbs_indexAt_c1916_0 (arg1)); } @@ -4478,7 +4478,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -4521,7 +4521,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -4545,7 +4545,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QTreeWidget_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -4568,7 +4568,7 @@ static void _call_cbs_isIndexHidden_c2395_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTreeWidget_Adaptor *)cls)->cbs_isIndexHidden_c2395_0 (arg1)); } @@ -4821,7 +4821,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -4845,7 +4845,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -4869,7 +4869,7 @@ static void _call_cbs_keyboardSearch_2025_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_keyboardSearch_2025_0 (arg1); } @@ -4893,7 +4893,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -4917,7 +4917,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QTreeWidget_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -4940,7 +4940,7 @@ static void _call_cbs_mimeData_c3280_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList arg1 = args.read > (heap); + const QList arg1 = gsi::arg_reader >() (args, heap); ret.write ((QMimeData *)((QTreeWidget_Adaptor *)cls)->cbs_mimeData_c3280_0 (arg1)); } @@ -5001,7 +5001,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -5025,7 +5025,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -5049,7 +5049,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -5073,7 +5073,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -5099,8 +5099,8 @@ static void _call_cbs_moveCursor_6476_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); - QFlags arg2 = args.read > (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); ret.write ((QModelIndex)((QTreeWidget_Adaptor *)cls)->cbs_moveCursor_6476_0 (arg1, arg2)); } @@ -5123,7 +5123,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -5151,9 +5151,9 @@ static void _call_cbs_nativeEvent_4678_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - long int *arg3 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + long int *arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTreeWidget_Adaptor *)cls)->cbs_nativeEvent_4678_0 (arg1, arg2, arg3)); } @@ -5213,7 +5213,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -5273,7 +5273,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QTreeWidget_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -5331,7 +5331,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -5377,9 +5377,9 @@ static void _call_cbs_rowsAboutToBeRemoved_3713_0 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_rowsAboutToBeRemoved_3713_0 (arg1, arg2, arg3); } @@ -5407,9 +5407,9 @@ static void _call_cbs_rowsInserted_3713_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_rowsInserted_3713_0 (arg1, arg2, arg3); } @@ -5475,8 +5475,8 @@ static void _call_cbs_scrollContentsBy_1426_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_scrollContentsBy_1426_0 (arg1, arg2); } @@ -5524,8 +5524,8 @@ static void _call_cbs_scrollTo_5576_1 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QAbstractItemView::EnsureVisible), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_scrollTo_5576_1 (arg1, arg2); } @@ -5590,8 +5590,8 @@ static void _call_cbs_selectionChanged_5346_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QItemSelection &arg1 = args.read (heap); - const QItemSelection &arg2 = args.read (heap); + const QItemSelection &arg1 = gsi::arg_reader() (args, heap); + const QItemSelection &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_selectionChanged_5346_0 (arg1, arg2); } @@ -5617,8 +5617,8 @@ static void _call_cbs_selectionCommand_c4199_1 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QEvent *arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QEvent *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); ret.write > ((QFlags)((QTreeWidget_Adaptor *)cls)->cbs_selectionCommand_c4199_1 (arg1, arg2)); } @@ -5707,7 +5707,7 @@ static void _call_cbs_setRootIndex_2395_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_setRootIndex_2395_0 (arg1); } @@ -5733,8 +5733,8 @@ static void _call_cbs_setSelection_6155_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); - QFlags arg2 = args.read > (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_setSelection_6155_0 (arg1, arg2); } @@ -5758,7 +5758,7 @@ static void _call_cbs_setSelectionModel_2533_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QItemSelectionModel *arg1 = args.read (heap); + QItemSelectionModel *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_setSelectionModel_2533_0 (arg1); } @@ -5867,7 +5867,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -5891,7 +5891,7 @@ static void _call_cbs_setupViewport_1315_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_setupViewport_1315_0 (arg1); } @@ -5934,7 +5934,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -5977,7 +5977,7 @@ static void _call_cbs_sizeHintForColumn_c767_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTreeWidget_Adaptor *)cls)->cbs_sizeHintForColumn_c767_0 (arg1)); } @@ -6000,7 +6000,7 @@ static void _call_cbs_sizeHintForRow_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTreeWidget_Adaptor *)cls)->cbs_sizeHintForRow_c767_0 (arg1)); } @@ -6038,7 +6038,7 @@ static void _call_cbs_startDrag_2456_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_startDrag_2456_0 (arg1); } @@ -6110,7 +6110,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -6134,7 +6134,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -6252,7 +6252,7 @@ static void _call_cbs_verticalScrollbarAction_767_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_verticalScrollbarAction_767_0 (arg1); } @@ -6276,7 +6276,7 @@ static void _call_cbs_verticalScrollbarValueChanged_767_0 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_verticalScrollbarValueChanged_767_0 (arg1); } @@ -6347,7 +6347,7 @@ static void _call_cbs_viewportEvent_1217_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTreeWidget_Adaptor *)cls)->cbs_viewportEvent_1217_0 (arg1)); } @@ -6403,7 +6403,7 @@ static void _call_cbs_visualRect_c2395_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QTreeWidget_Adaptor *)cls)->cbs_visualRect_c2395_0 (arg1)); } @@ -6426,7 +6426,7 @@ static void _call_cbs_visualRegionForSelection_c2727_0 (const qt_gsi::GenericMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QItemSelection &arg1 = args.read (heap); + const QItemSelection &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRegion)((QTreeWidget_Adaptor *)cls)->cbs_visualRegionForSelection_c2727_0 (arg1)); } @@ -6449,7 +6449,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQTreeWidgetItem.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQTreeWidgetItem.cc index e90485f97..9bc8b052d 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQTreeWidgetItem.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQTreeWidgetItem.cc @@ -1787,8 +1787,8 @@ static void _call_cbs_data_c1426_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QTreeWidgetItem_Adaptor *)cls)->cbs_data_c1426_0 (arg1, arg2)); } @@ -1826,7 +1826,7 @@ static void _call_cbs_operator_lt__c2805_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTreeWidgetItem &arg1 = args.read (heap); + const QTreeWidgetItem &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTreeWidgetItem_Adaptor *)cls)->cbs_operator_lt__c2805_0 (arg1)); } @@ -1849,7 +1849,7 @@ static void _call_cbs_read_1697_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDataStream &arg1 = args.read (heap); + QDataStream &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidgetItem_Adaptor *)cls)->cbs_read_1697_0 (arg1); } @@ -1877,9 +1877,9 @@ static void _call_cbs_setData_3437_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QVariant &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QVariant &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidgetItem_Adaptor *)cls)->cbs_setData_3437_0 (arg1, arg2, arg3); } @@ -1903,7 +1903,7 @@ static void _call_cbs_write_c1697_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDataStream &arg1 = args.read (heap); + QDataStream &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidgetItem_Adaptor *)cls)->cbs_write_c1697_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQUndoCommand.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQUndoCommand.cc index 4272caf17..8567b33c1 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQUndoCommand.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQUndoCommand.cc @@ -417,7 +417,7 @@ static void _call_cbs_mergeWith_2507_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QUndoCommand *arg1 = args.read (heap); + const QUndoCommand *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QUndoCommand_Adaptor *)cls)->cbs_mergeWith_2507_0 (arg1)); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQUndoGroup.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQUndoGroup.cc index 29f2865af..5983cce76 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQUndoGroup.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQUndoGroup.cc @@ -670,7 +670,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoGroup_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -712,7 +712,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoGroup_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -754,7 +754,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoGroup_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -778,7 +778,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QUndoGroup_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -803,8 +803,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QUndoGroup_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -945,7 +945,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoGroup_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQUndoStack.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQUndoStack.cc index 075799bbe..89e6840e8 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQUndoStack.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQUndoStack.cc @@ -843,7 +843,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoStack_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -885,7 +885,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoStack_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -927,7 +927,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoStack_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -951,7 +951,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QUndoStack_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -976,8 +976,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QUndoStack_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1118,7 +1118,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoStack_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQUndoView.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQUndoView.cc index 7501ca79f..54d631ac4 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQUndoView.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQUndoView.cc @@ -2104,7 +2104,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -2146,7 +2146,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -2170,7 +2170,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -2214,8 +2214,8 @@ static void _call_cbs_closeEditor_4926_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_closeEditor_4926_0 (arg1, arg2); } @@ -2239,7 +2239,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -2263,7 +2263,7 @@ static void _call_cbs_commitData_1315_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_commitData_1315_0 (arg1); } @@ -2301,7 +2301,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -2352,8 +2352,8 @@ static void _call_cbs_currentChanged_4682_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_currentChanged_4682_0 (arg1, arg2); } @@ -2395,7 +2395,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -2423,9 +2423,9 @@ static void _call_cbs_dataChanged_7048_1 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); - const QVector &arg3 = args.read & > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); + const QVector &arg3 = args ? gsi::arg_reader & >() (args, heap) : gsi::arg_maker & >() (QVector(), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_dataChanged_7048_1 (arg1, arg2, arg3); } @@ -2503,7 +2503,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -2580,7 +2580,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -2604,7 +2604,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -2628,7 +2628,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -2671,7 +2671,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -2713,9 +2713,9 @@ static void _call_cbs_edit_6773_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - QEvent *arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + QEvent *arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QUndoView_Adaptor *)cls)->cbs_edit_6773_0 (arg1, arg2, arg3)); } @@ -2738,7 +2738,7 @@ static void _call_cbs_editorDestroyed_1302_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_editorDestroyed_1302_0 (arg1); } @@ -2762,7 +2762,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -2804,7 +2804,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QUndoView_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -2829,8 +2829,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QUndoView_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -2868,7 +2868,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -2906,7 +2906,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QUndoView_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -2929,7 +2929,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -2986,7 +2986,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QUndoView_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -3009,7 +3009,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -3052,7 +3052,7 @@ static void _call_cbs_horizontalScrollbarAction_767_0 (const qt_gsi::GenericMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_horizontalScrollbarAction_767_0 (arg1); } @@ -3076,7 +3076,7 @@ static void _call_cbs_horizontalScrollbarValueChanged_767_0 (const qt_gsi::Gener { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_horizontalScrollbarValueChanged_767_0 (arg1); } @@ -3132,7 +3132,7 @@ static void _call_cbs_indexAt_c1916_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QUndoView_Adaptor *)cls)->cbs_indexAt_c1916_0 (arg1)); } @@ -3173,7 +3173,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -3216,7 +3216,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -3240,7 +3240,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QUndoView_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -3263,7 +3263,7 @@ static void _call_cbs_isIndexHidden_c2395_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QUndoView_Adaptor *)cls)->cbs_isIndexHidden_c2395_0 (arg1)); } @@ -3304,7 +3304,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -3328,7 +3328,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -3352,7 +3352,7 @@ static void _call_cbs_keyboardSearch_2025_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_keyboardSearch_2025_0 (arg1); } @@ -3376,7 +3376,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -3400,7 +3400,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QUndoView_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -3442,7 +3442,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -3466,7 +3466,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -3490,7 +3490,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -3514,7 +3514,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -3540,8 +3540,8 @@ static void _call_cbs_moveCursor_6476_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); - QFlags arg2 = args.read > (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); ret.write ((QModelIndex)((QUndoView_Adaptor *)cls)->cbs_moveCursor_6476_0 (arg1, arg2)); } @@ -3564,7 +3564,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -3592,9 +3592,9 @@ static void _call_cbs_nativeEvent_4678_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - long int *arg3 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + long int *arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QUndoView_Adaptor *)cls)->cbs_nativeEvent_4678_0 (arg1, arg2, arg3)); } @@ -3654,7 +3654,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -3732,7 +3732,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QUndoView_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -3797,7 +3797,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -3825,9 +3825,9 @@ static void _call_cbs_rowsAboutToBeRemoved_3713_0 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_rowsAboutToBeRemoved_3713_0 (arg1, arg2, arg3); } @@ -3855,9 +3855,9 @@ static void _call_cbs_rowsInserted_3713_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_rowsInserted_3713_0 (arg1, arg2, arg3); } @@ -3898,8 +3898,8 @@ static void _call_cbs_scrollContentsBy_1426_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_scrollContentsBy_1426_0 (arg1, arg2); } @@ -3947,8 +3947,8 @@ static void _call_cbs_scrollTo_5576_1 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QAbstractItemView::EnsureVisible), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_scrollTo_5576_1 (arg1, arg2); } @@ -4013,8 +4013,8 @@ static void _call_cbs_selectionChanged_5346_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QItemSelection &arg1 = args.read (heap); - const QItemSelection &arg2 = args.read (heap); + const QItemSelection &arg1 = gsi::arg_reader() (args, heap); + const QItemSelection &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_selectionChanged_5346_0 (arg1, arg2); } @@ -4040,8 +4040,8 @@ static void _call_cbs_selectionCommand_c4199_1 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QEvent *arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QEvent *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); ret.write > ((QFlags)((QUndoView_Adaptor *)cls)->cbs_selectionCommand_c4199_1 (arg1, arg2)); } @@ -4130,7 +4130,7 @@ static void _call_cbs_setModel_2419_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractItemModel *arg1 = args.read (heap); + QAbstractItemModel *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_setModel_2419_0 (arg1); } @@ -4176,7 +4176,7 @@ static void _call_cbs_setRootIndex_2395_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_setRootIndex_2395_0 (arg1); } @@ -4202,8 +4202,8 @@ static void _call_cbs_setSelection_6155_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); - QFlags arg2 = args.read > (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_setSelection_6155_0 (arg1, arg2); } @@ -4227,7 +4227,7 @@ static void _call_cbs_setSelectionModel_2533_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QItemSelectionModel *arg1 = args.read (heap); + QItemSelectionModel *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_setSelectionModel_2533_0 (arg1); } @@ -4336,7 +4336,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -4360,7 +4360,7 @@ static void _call_cbs_setupViewport_1315_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_setupViewport_1315_0 (arg1); } @@ -4403,7 +4403,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -4446,7 +4446,7 @@ static void _call_cbs_sizeHintForColumn_c767_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QUndoView_Adaptor *)cls)->cbs_sizeHintForColumn_c767_0 (arg1)); } @@ -4469,7 +4469,7 @@ static void _call_cbs_sizeHintForRow_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QUndoView_Adaptor *)cls)->cbs_sizeHintForRow_c767_0 (arg1)); } @@ -4507,7 +4507,7 @@ static void _call_cbs_startDrag_2456_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_startDrag_2456_0 (arg1); } @@ -4560,7 +4560,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -4584,7 +4584,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -4702,7 +4702,7 @@ static void _call_cbs_verticalScrollbarAction_767_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_verticalScrollbarAction_767_0 (arg1); } @@ -4726,7 +4726,7 @@ static void _call_cbs_verticalScrollbarValueChanged_767_0 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_verticalScrollbarValueChanged_767_0 (arg1); } @@ -4797,7 +4797,7 @@ static void _call_cbs_viewportEvent_1217_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QUndoView_Adaptor *)cls)->cbs_viewportEvent_1217_0 (arg1)); } @@ -4853,7 +4853,7 @@ static void _call_cbs_visualRect_c2395_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QUndoView_Adaptor *)cls)->cbs_visualRect_c2395_0 (arg1)); } @@ -4876,7 +4876,7 @@ static void _call_cbs_visualRegionForSelection_c2727_0 (const qt_gsi::GenericMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QItemSelection &arg1 = args.read (heap); + const QItemSelection &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRegion)((QUndoView_Adaptor *)cls)->cbs_visualRegionForSelection_c2727_0 (arg1)); } @@ -4899,7 +4899,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQVBoxLayout.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQVBoxLayout.cc index 4e40f4713..3abfcd3a4 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQVBoxLayout.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQVBoxLayout.cc @@ -715,7 +715,8 @@ static void _call_cbs_addItem_1740_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QLayoutItem *arg1 = args.read (heap); + QLayoutItem *arg1 = gsi::arg_reader() (args, heap); + qt_gsi::qt_keep (arg1); __SUPPRESS_UNUSED_WARNING(ret); ((QVBoxLayout_Adaptor *)cls)->cbs_addItem_1740_0 (arg1); } @@ -775,7 +776,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVBoxLayout_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -837,7 +838,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVBoxLayout_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -879,7 +880,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVBoxLayout_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -903,7 +904,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QVBoxLayout_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -928,8 +929,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QVBoxLayout_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1009,7 +1010,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QVBoxLayout_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -1032,7 +1033,7 @@ static void _call_cbs_indexOf_c1315_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QVBoxLayout_Adaptor *)cls)->cbs_indexOf_c1315_0 (arg1)); } @@ -1112,7 +1113,7 @@ static void _call_cbs_itemAt_c767_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QLayoutItem *)((QVBoxLayout_Adaptor *)cls)->cbs_itemAt_c767_0 (arg1)); } @@ -1173,7 +1174,7 @@ static void _call_cbs_minimumHeightForWidth_c767_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QVBoxLayout_Adaptor *)cls)->cbs_minimumHeightForWidth_c767_0 (arg1)); } @@ -1279,7 +1280,7 @@ static void _call_cbs_setGeometry_1792_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVBoxLayout_Adaptor *)cls)->cbs_setGeometry_1792_0 (arg1); } @@ -1341,7 +1342,7 @@ static void _call_cbs_takeAt_767_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QLayoutItem *)((QVBoxLayout_Adaptor *)cls)->cbs_takeAt_767_0 (arg1)); } @@ -1364,7 +1365,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVBoxLayout_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQWidget.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQWidget.cc index 67eebe094..fadb5a9d9 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQWidget.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQWidget.cc @@ -5763,7 +5763,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -5787,7 +5787,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -5811,7 +5811,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -5835,7 +5835,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -5859,7 +5859,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -5926,7 +5926,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -5990,7 +5990,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -6014,7 +6014,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -6038,7 +6038,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -6062,7 +6062,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -6086,7 +6086,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -6110,7 +6110,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -6134,7 +6134,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QWidget_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -6159,8 +6159,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QWidget_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -6183,7 +6183,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -6221,7 +6221,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QWidget_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -6244,7 +6244,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -6301,7 +6301,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QWidget_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -6324,7 +6324,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -6348,7 +6348,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -6372,7 +6372,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -6396,7 +6396,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QWidget_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -6437,7 +6437,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -6461,7 +6461,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -6485,7 +6485,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -6509,7 +6509,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QWidget_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -6551,7 +6551,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -6575,7 +6575,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -6599,7 +6599,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -6623,7 +6623,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -6647,7 +6647,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -6675,9 +6675,9 @@ static void _call_cbs_nativeEvent_4678_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - long int *arg3 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + long int *arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QWidget_Adaptor *)cls)->cbs_nativeEvent_4678_0 (arg1, arg2, arg3)); } @@ -6737,7 +6737,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -6779,7 +6779,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QWidget_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -6802,7 +6802,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -6854,7 +6854,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -6897,7 +6897,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -6940,7 +6940,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -6964,7 +6964,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -7003,7 +7003,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQWidgetAction.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQWidgetAction.cc index 888e7bea7..a4296fe50 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQWidgetAction.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQWidgetAction.cc @@ -467,7 +467,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidgetAction_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -491,7 +491,7 @@ static void _call_cbs_createWidget_1315_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); ret.write ((QWidget *)((QWidgetAction_Adaptor *)cls)->cbs_createWidget_1315_0 (arg1)); } @@ -528,7 +528,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidgetAction_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -552,7 +552,7 @@ static void _call_cbs_deleteWidget_1315_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidgetAction_Adaptor *)cls)->cbs_deleteWidget_1315_0 (arg1); } @@ -594,7 +594,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidgetAction_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -618,7 +618,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QWidgetAction_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -643,8 +643,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QWidgetAction_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -763,7 +763,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidgetAction_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQWidgetItem.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQWidgetItem.cc index 2016b1fca..7af74d130 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQWidgetItem.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQWidgetItem.cc @@ -607,7 +607,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QWidgetItem_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -707,7 +707,7 @@ static void _call_cbs_minimumHeightForWidth_c767_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QWidgetItem_Adaptor *)cls)->cbs_minimumHeightForWidth_c767_0 (arg1)); } @@ -749,7 +749,7 @@ static void _call_cbs_setGeometry_1792_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidgetItem_Adaptor *)cls)->cbs_setGeometry_1792_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQWizard.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQWizard.cc index b43377dc5..8ff11dca5 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQWizard.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQWizard.cc @@ -2061,7 +2061,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -2104,7 +2104,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -2128,7 +2128,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -2152,7 +2152,7 @@ static void _call_cbs_cleanupPage_767_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard_Adaptor *)cls)->cbs_cleanupPage_767_0 (arg1); } @@ -2176,7 +2176,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -2200,7 +2200,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -2303,7 +2303,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -2367,7 +2367,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -2391,7 +2391,7 @@ static void _call_cbs_done_767_0 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard_Adaptor *)cls)->cbs_done_767_0 (arg1); } @@ -2415,7 +2415,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -2439,7 +2439,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -2463,7 +2463,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -2487,7 +2487,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -2511,7 +2511,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -2535,7 +2535,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QWizard_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -2560,8 +2560,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QWizard_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -2621,7 +2621,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -2659,7 +2659,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QWizard_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -2682,7 +2682,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -2739,7 +2739,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QWizard_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -2776,7 +2776,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -2800,7 +2800,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -2824,7 +2824,7 @@ static void _call_cbs_initializePage_767_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard_Adaptor *)cls)->cbs_initializePage_767_0 (arg1); } @@ -2848,7 +2848,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2872,7 +2872,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QWizard_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2913,7 +2913,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2937,7 +2937,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2961,7 +2961,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2985,7 +2985,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QWizard_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -3027,7 +3027,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -3051,7 +3051,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -3075,7 +3075,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -3099,7 +3099,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -3123,7 +3123,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -3151,9 +3151,9 @@ static void _call_cbs_nativeEvent_4678_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - long int *arg3 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + long int *arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QWizard_Adaptor *)cls)->cbs_nativeEvent_4678_0 (arg1, arg2, arg3)); } @@ -3288,7 +3288,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -3330,7 +3330,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QWizard_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -3387,7 +3387,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -3439,7 +3439,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -3482,7 +3482,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -3525,7 +3525,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -3549,7 +3549,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -3607,7 +3607,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQWizardPage.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQWizardPage.cc index b9c3675a9..7df7053f3 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQWizardPage.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQWizardPage.cc @@ -1458,7 +1458,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizardPage_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1482,7 +1482,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizardPage_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1506,7 +1506,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizardPage_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1550,7 +1550,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizardPage_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1588,7 +1588,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizardPage_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1655,7 +1655,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizardPage_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1719,7 +1719,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizardPage_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1743,7 +1743,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizardPage_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1767,7 +1767,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizardPage_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1791,7 +1791,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizardPage_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1815,7 +1815,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizardPage_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1839,7 +1839,7 @@ static void _call_cbs_enterEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizardPage_Adaptor *)cls)->cbs_enterEvent_1217_0 (arg1); } @@ -1863,7 +1863,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QWizardPage_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1888,8 +1888,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QWizardPage_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1930,7 +1930,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizardPage_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1968,7 +1968,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QWizardPage_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -1991,7 +1991,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizardPage_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -2048,7 +2048,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QWizardPage_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -2071,7 +2071,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizardPage_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -2095,7 +2095,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizardPage_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -2139,7 +2139,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizardPage_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2163,7 +2163,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QWizardPage_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2223,7 +2223,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizardPage_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2247,7 +2247,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizardPage_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2271,7 +2271,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizardPage_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2295,7 +2295,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QWizardPage_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2337,7 +2337,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizardPage_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2361,7 +2361,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizardPage_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2385,7 +2385,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizardPage_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2409,7 +2409,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizardPage_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2433,7 +2433,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizardPage_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2461,9 +2461,9 @@ static void _call_cbs_nativeEvent_4678_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - long int *arg3 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + long int *arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QWizardPage_Adaptor *)cls)->cbs_nativeEvent_4678_0 (arg1, arg2, arg3)); } @@ -2542,7 +2542,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizardPage_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2584,7 +2584,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QWizardPage_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -2635,7 +2635,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizardPage_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2709,7 +2709,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizardPage_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2752,7 +2752,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizardPage_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2795,7 +2795,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizardPage_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2819,7 +2819,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizardPage_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2877,7 +2877,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizardPage_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt5/QtXml/gsiDeclQXmlContentHandler.cc b/src/gsiqt/qt5/QtXml/gsiDeclQXmlContentHandler.cc index a042eade2..56070deee 100644 --- a/src/gsiqt/qt5/QtXml/gsiDeclQXmlContentHandler.cc +++ b/src/gsiqt/qt5/QtXml/gsiDeclQXmlContentHandler.cc @@ -555,7 +555,7 @@ static void _call_cbs_characters_2025_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlContentHandler_Adaptor *)cls)->cbs_characters_2025_0 (arg1)); } @@ -601,9 +601,9 @@ static void _call_cbs_endElement_5859_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QString &arg3 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlContentHandler_Adaptor *)cls)->cbs_endElement_5859_0 (arg1, arg2, arg3)); } @@ -626,7 +626,7 @@ static void _call_cbs_endPrefixMapping_2025_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlContentHandler_Adaptor *)cls)->cbs_endPrefixMapping_2025_0 (arg1)); } @@ -668,7 +668,7 @@ static void _call_cbs_ignorableWhitespace_2025_0 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlContentHandler_Adaptor *)cls)->cbs_ignorableWhitespace_2025_0 (arg1)); } @@ -693,8 +693,8 @@ static void _call_cbs_processingInstruction_3942_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlContentHandler_Adaptor *)cls)->cbs_processingInstruction_3942_0 (arg1, arg2)); } @@ -717,7 +717,7 @@ static void _call_cbs_setDocumentLocator_1732_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QXmlLocator *arg1 = args.read (heap); + QXmlLocator *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlContentHandler_Adaptor *)cls)->cbs_setDocumentLocator_1732_0 (arg1); } @@ -741,7 +741,7 @@ static void _call_cbs_skippedEntity_2025_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlContentHandler_Adaptor *)cls)->cbs_skippedEntity_2025_0 (arg1)); } @@ -789,10 +789,10 @@ static void _call_cbs_startElement_8513_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QString &arg3 = args.read (heap); - const QXmlAttributes &arg4 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); + const QXmlAttributes &arg4 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlContentHandler_Adaptor *)cls)->cbs_startElement_8513_0 (arg1, arg2, arg3, arg4)); } @@ -817,8 +817,8 @@ static void _call_cbs_startPrefixMapping_3942_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlContentHandler_Adaptor *)cls)->cbs_startPrefixMapping_3942_0 (arg1, arg2)); } diff --git a/src/gsiqt/qt5/QtXml/gsiDeclQXmlDTDHandler.cc b/src/gsiqt/qt5/QtXml/gsiDeclQXmlDTDHandler.cc index 0eea6f4f6..17f1d130e 100644 --- a/src/gsiqt/qt5/QtXml/gsiDeclQXmlDTDHandler.cc +++ b/src/gsiqt/qt5/QtXml/gsiDeclQXmlDTDHandler.cc @@ -244,9 +244,9 @@ static void _call_cbs_notationDecl_5859_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QString &arg3 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlDTDHandler_Adaptor *)cls)->cbs_notationDecl_5859_0 (arg1, arg2, arg3)); } @@ -275,10 +275,10 @@ static void _call_cbs_unparsedEntityDecl_7776_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QString &arg3 = args.read (heap); - const QString &arg4 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); + const QString &arg4 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlDTDHandler_Adaptor *)cls)->cbs_unparsedEntityDecl_7776_0 (arg1, arg2, arg3, arg4)); } diff --git a/src/gsiqt/qt5/QtXml/gsiDeclQXmlDeclHandler.cc b/src/gsiqt/qt5/QtXml/gsiDeclQXmlDeclHandler.cc index 1b0cb16ca..27edb0d75 100644 --- a/src/gsiqt/qt5/QtXml/gsiDeclQXmlDeclHandler.cc +++ b/src/gsiqt/qt5/QtXml/gsiDeclQXmlDeclHandler.cc @@ -274,11 +274,11 @@ static void _call_cbs_attributeDecl_9693_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QString &arg3 = args.read (heap); - const QString &arg4 = args.read (heap); - const QString &arg5 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); + const QString &arg4 = gsi::arg_reader() (args, heap); + const QString &arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlDeclHandler_Adaptor *)cls)->cbs_attributeDecl_9693_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -324,9 +324,9 @@ static void _call_cbs_externalEntityDecl_5859_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QString &arg3 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlDeclHandler_Adaptor *)cls)->cbs_externalEntityDecl_5859_0 (arg1, arg2, arg3)); } @@ -351,8 +351,8 @@ static void _call_cbs_internalEntityDecl_3942_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlDeclHandler_Adaptor *)cls)->cbs_internalEntityDecl_3942_0 (arg1, arg2)); } diff --git a/src/gsiqt/qt5/QtXml/gsiDeclQXmlDefaultHandler.cc b/src/gsiqt/qt5/QtXml/gsiDeclQXmlDefaultHandler.cc index 32e5bc968..308618cde 100644 --- a/src/gsiqt/qt5/QtXml/gsiDeclQXmlDefaultHandler.cc +++ b/src/gsiqt/qt5/QtXml/gsiDeclQXmlDefaultHandler.cc @@ -1279,11 +1279,11 @@ static void _call_cbs_attributeDecl_9693_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QString &arg3 = args.read (heap); - const QString &arg4 = args.read (heap); - const QString &arg5 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); + const QString &arg4 = gsi::arg_reader() (args, heap); + const QString &arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlDefaultHandler_Adaptor *)cls)->cbs_attributeDecl_9693_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -1306,7 +1306,7 @@ static void _call_cbs_characters_2025_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlDefaultHandler_Adaptor *)cls)->cbs_characters_2025_0 (arg1)); } @@ -1329,7 +1329,7 @@ static void _call_cbs_comment_2025_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlDefaultHandler_Adaptor *)cls)->cbs_comment_2025_0 (arg1)); } @@ -1413,9 +1413,9 @@ static void _call_cbs_endElement_5859_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QString &arg3 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlDefaultHandler_Adaptor *)cls)->cbs_endElement_5859_0 (arg1, arg2, arg3)); } @@ -1438,7 +1438,7 @@ static void _call_cbs_endEntity_2025_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlDefaultHandler_Adaptor *)cls)->cbs_endEntity_2025_0 (arg1)); } @@ -1461,7 +1461,7 @@ static void _call_cbs_endPrefixMapping_2025_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlDefaultHandler_Adaptor *)cls)->cbs_endPrefixMapping_2025_0 (arg1)); } @@ -1484,7 +1484,7 @@ static void _call_cbs_error_3149_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlParseException &arg1 = args.read (heap); + const QXmlParseException &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlDefaultHandler_Adaptor *)cls)->cbs_error_3149_0 (arg1)); } @@ -1530,9 +1530,9 @@ static void _call_cbs_externalEntityDecl_5859_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QString &arg3 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlDefaultHandler_Adaptor *)cls)->cbs_externalEntityDecl_5859_0 (arg1, arg2, arg3)); } @@ -1555,7 +1555,7 @@ static void _call_cbs_fatalError_3149_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlParseException &arg1 = args.read (heap); + const QXmlParseException &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlDefaultHandler_Adaptor *)cls)->cbs_fatalError_3149_0 (arg1)); } @@ -1578,7 +1578,7 @@ static void _call_cbs_ignorableWhitespace_2025_0 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlDefaultHandler_Adaptor *)cls)->cbs_ignorableWhitespace_2025_0 (arg1)); } @@ -1603,8 +1603,8 @@ static void _call_cbs_internalEntityDecl_3942_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlDefaultHandler_Adaptor *)cls)->cbs_internalEntityDecl_3942_0 (arg1, arg2)); } @@ -1631,9 +1631,9 @@ static void _call_cbs_notationDecl_5859_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QString &arg3 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlDefaultHandler_Adaptor *)cls)->cbs_notationDecl_5859_0 (arg1, arg2, arg3)); } @@ -1658,8 +1658,8 @@ static void _call_cbs_processingInstruction_3942_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlDefaultHandler_Adaptor *)cls)->cbs_processingInstruction_3942_0 (arg1, arg2)); } @@ -1682,7 +1682,7 @@ static void _call_cbs_setDocumentLocator_1732_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QXmlLocator *arg1 = args.read (heap); + QXmlLocator *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlDefaultHandler_Adaptor *)cls)->cbs_setDocumentLocator_1732_0 (arg1); } @@ -1706,7 +1706,7 @@ static void _call_cbs_skippedEntity_2025_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlDefaultHandler_Adaptor *)cls)->cbs_skippedEntity_2025_0 (arg1)); } @@ -1752,9 +1752,9 @@ static void _call_cbs_startDTD_5859_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QString &arg3 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlDefaultHandler_Adaptor *)cls)->cbs_startDTD_5859_0 (arg1, arg2, arg3)); } @@ -1802,10 +1802,10 @@ static void _call_cbs_startElement_8513_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QString &arg3 = args.read (heap); - const QXmlAttributes &arg4 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); + const QXmlAttributes &arg4 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlDefaultHandler_Adaptor *)cls)->cbs_startElement_8513_0 (arg1, arg2, arg3, arg4)); } @@ -1828,7 +1828,7 @@ static void _call_cbs_startEntity_2025_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlDefaultHandler_Adaptor *)cls)->cbs_startEntity_2025_0 (arg1)); } @@ -1853,8 +1853,8 @@ static void _call_cbs_startPrefixMapping_3942_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlDefaultHandler_Adaptor *)cls)->cbs_startPrefixMapping_3942_0 (arg1, arg2)); } @@ -1883,10 +1883,10 @@ static void _call_cbs_unparsedEntityDecl_7776_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QString &arg3 = args.read (heap); - const QString &arg4 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); + const QString &arg4 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlDefaultHandler_Adaptor *)cls)->cbs_unparsedEntityDecl_7776_0 (arg1, arg2, arg3, arg4)); } @@ -1909,7 +1909,7 @@ static void _call_cbs_warning_3149_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlParseException &arg1 = args.read (heap); + const QXmlParseException &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlDefaultHandler_Adaptor *)cls)->cbs_warning_3149_0 (arg1)); } diff --git a/src/gsiqt/qt5/QtXml/gsiDeclQXmlErrorHandler.cc b/src/gsiqt/qt5/QtXml/gsiDeclQXmlErrorHandler.cc index da3253fe9..ec00237ef 100644 --- a/src/gsiqt/qt5/QtXml/gsiDeclQXmlErrorHandler.cc +++ b/src/gsiqt/qt5/QtXml/gsiDeclQXmlErrorHandler.cc @@ -239,7 +239,7 @@ static void _call_cbs_error_3149_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlParseException &arg1 = args.read (heap); + const QXmlParseException &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlErrorHandler_Adaptor *)cls)->cbs_error_3149_0 (arg1)); } @@ -281,7 +281,7 @@ static void _call_cbs_fatalError_3149_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlParseException &arg1 = args.read (heap); + const QXmlParseException &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlErrorHandler_Adaptor *)cls)->cbs_fatalError_3149_0 (arg1)); } @@ -304,7 +304,7 @@ static void _call_cbs_warning_3149_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlParseException &arg1 = args.read (heap); + const QXmlParseException &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlErrorHandler_Adaptor *)cls)->cbs_warning_3149_0 (arg1)); } diff --git a/src/gsiqt/qt5/QtXml/gsiDeclQXmlInputSource.cc b/src/gsiqt/qt5/QtXml/gsiDeclQXmlInputSource.cc index c0d63dc2e..85b77d953 100644 --- a/src/gsiqt/qt5/QtXml/gsiDeclQXmlInputSource.cc +++ b/src/gsiqt/qt5/QtXml/gsiDeclQXmlInputSource.cc @@ -344,8 +344,8 @@ static void _call_cbs_fromRawData_3065_1 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - bool arg2 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (false, heap); ret.write ((QString)((QXmlInputSource_Adaptor *)cls)->cbs_fromRawData_3065_1 (arg1, arg2)); } @@ -407,7 +407,7 @@ static void _call_cbs_setData_2025_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlInputSource_Adaptor *)cls)->cbs_setData_2025_0 (arg1); } diff --git a/src/gsiqt/qt5/QtXml/gsiDeclQXmlLexicalHandler.cc b/src/gsiqt/qt5/QtXml/gsiDeclQXmlLexicalHandler.cc index 584b5b1d4..bc2911bf1 100644 --- a/src/gsiqt/qt5/QtXml/gsiDeclQXmlLexicalHandler.cc +++ b/src/gsiqt/qt5/QtXml/gsiDeclQXmlLexicalHandler.cc @@ -379,7 +379,7 @@ static void _call_cbs_comment_2025_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlLexicalHandler_Adaptor *)cls)->cbs_comment_2025_0 (arg1)); } @@ -440,7 +440,7 @@ static void _call_cbs_endEntity_2025_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlLexicalHandler_Adaptor *)cls)->cbs_endEntity_2025_0 (arg1)); } @@ -505,9 +505,9 @@ static void _call_cbs_startDTD_5859_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QString &arg3 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlLexicalHandler_Adaptor *)cls)->cbs_startDTD_5859_0 (arg1, arg2, arg3)); } @@ -530,7 +530,7 @@ static void _call_cbs_startEntity_2025_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlLexicalHandler_Adaptor *)cls)->cbs_startEntity_2025_0 (arg1)); } diff --git a/src/gsiqt/qt5/QtXml/gsiDeclQXmlSimpleReader.cc b/src/gsiqt/qt5/QtXml/gsiDeclQXmlSimpleReader.cc index cc811e67d..46aeee720 100644 --- a/src/gsiqt/qt5/QtXml/gsiDeclQXmlSimpleReader.cc +++ b/src/gsiqt/qt5/QtXml/gsiDeclQXmlSimpleReader.cc @@ -952,8 +952,8 @@ static void _call_cbs_feature_c2967_1 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - bool *arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + bool *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); ret.write ((bool)((QXmlSimpleReader_Adaptor *)cls)->cbs_feature_c2967_1 (arg1, arg2)); } @@ -976,7 +976,7 @@ static void _call_cbs_hasFeature_c2025_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlSimpleReader_Adaptor *)cls)->cbs_hasFeature_c2025_0 (arg1)); } @@ -999,7 +999,7 @@ static void _call_cbs_hasProperty_c2025_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlSimpleReader_Adaptor *)cls)->cbs_hasProperty_c2025_0 (arg1)); } @@ -1041,7 +1041,7 @@ static void _call_cbs_parse_2856_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlInputSource *arg1 = args.read (heap); + const QXmlInputSource *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlSimpleReader_Adaptor *)cls)->cbs_parse_2856_0 (arg1)); } @@ -1066,8 +1066,8 @@ static void _call_cbs_parse_3612_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlInputSource *arg1 = args.read (heap); - bool arg2 = args.read (heap); + const QXmlInputSource *arg1 = gsi::arg_reader() (args, heap); + bool arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlSimpleReader_Adaptor *)cls)->cbs_parse_3612_0 (arg1, arg2)); } @@ -1111,8 +1111,8 @@ static void _call_cbs_property_c2967_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - bool *arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + bool *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); ret.write ((void *)((QXmlSimpleReader_Adaptor *)cls)->cbs_property_c2967_1 (arg1, arg2)); } @@ -1135,7 +1135,7 @@ static void _call_cbs_setContentHandler_2441_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QXmlContentHandler *arg1 = args.read (heap); + QXmlContentHandler *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlSimpleReader_Adaptor *)cls)->cbs_setContentHandler_2441_0 (arg1); } @@ -1159,7 +1159,7 @@ static void _call_cbs_setDTDHandler_1930_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QXmlDTDHandler *arg1 = args.read (heap); + QXmlDTDHandler *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlSimpleReader_Adaptor *)cls)->cbs_setDTDHandler_1930_0 (arg1); } @@ -1183,7 +1183,7 @@ static void _call_cbs_setDeclHandler_2086_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QXmlDeclHandler *arg1 = args.read (heap); + QXmlDeclHandler *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlSimpleReader_Adaptor *)cls)->cbs_setDeclHandler_2086_0 (arg1); } @@ -1207,7 +1207,7 @@ static void _call_cbs_setEntityResolver_2495_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QXmlEntityResolver *arg1 = args.read (heap); + QXmlEntityResolver *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlSimpleReader_Adaptor *)cls)->cbs_setEntityResolver_2495_0 (arg1); } @@ -1231,7 +1231,7 @@ static void _call_cbs_setErrorHandler_2232_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QXmlErrorHandler *arg1 = args.read (heap); + QXmlErrorHandler *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlSimpleReader_Adaptor *)cls)->cbs_setErrorHandler_2232_0 (arg1); } @@ -1257,8 +1257,8 @@ static void _call_cbs_setFeature_2781_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - bool arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + bool arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlSimpleReader_Adaptor *)cls)->cbs_setFeature_2781_0 (arg1, arg2); } @@ -1282,7 +1282,7 @@ static void _call_cbs_setLexicalHandler_2416_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QXmlLexicalHandler *arg1 = args.read (heap); + QXmlLexicalHandler *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlSimpleReader_Adaptor *)cls)->cbs_setLexicalHandler_2416_0 (arg1); } @@ -1308,8 +1308,8 @@ static void _call_cbs_setProperty_2973_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - void *arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlSimpleReader_Adaptor *)cls)->cbs_setProperty_2973_0 (arg1, arg2); } diff --git a/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQAbstractMessageHandler.cc b/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQAbstractMessageHandler.cc index 9c83fa457..491f211fc 100644 --- a/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQAbstractMessageHandler.cc +++ b/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQAbstractMessageHandler.cc @@ -362,7 +362,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractMessageHandler_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -386,7 +386,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractMessageHandler_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -428,7 +428,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractMessageHandler_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -452,7 +452,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractMessageHandler_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -477,8 +477,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractMessageHandler_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -507,10 +507,10 @@ static void _call_cbs_handleMessage_7592_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QString &arg2 = args.read (heap); - const QUrl &arg3 = args.read (heap); - const QSourceLocation &arg4 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QUrl &arg3 = gsi::arg_reader() (args, heap); + const QSourceLocation &arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractMessageHandler_Adaptor *)cls)->cbs_handleMessage_7592_0 (arg1, arg2, arg3, arg4); } @@ -616,7 +616,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractMessageHandler_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQAbstractUriResolver.cc b/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQAbstractUriResolver.cc index 886b9fc14..7219799b0 100644 --- a/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQAbstractUriResolver.cc +++ b/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQAbstractUriResolver.cc @@ -352,7 +352,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractUriResolver_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -376,7 +376,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractUriResolver_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -418,7 +418,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractUriResolver_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -442,7 +442,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractUriResolver_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -467,8 +467,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractUriResolver_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -547,8 +547,8 @@ static void _call_cbs_resolve_c3294_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QUrl &arg1 = args.read (heap); - const QUrl &arg2 = args.read (heap); + const QUrl &arg1 = gsi::arg_reader() (args, heap); + const QUrl &arg2 = gsi::arg_reader() (args, heap); ret.write ((QUrl)((QAbstractUriResolver_Adaptor *)cls)->cbs_resolve_c3294_0 (arg1, arg2)); } @@ -599,7 +599,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractUriResolver_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQAbstractXmlReceiver.cc b/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQAbstractXmlReceiver.cc index f92b50f04..0331021f4 100644 --- a/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQAbstractXmlReceiver.cc +++ b/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQAbstractXmlReceiver.cc @@ -572,7 +572,7 @@ static void _call_cbs_atomicValue_2119_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVariant &arg1 = args.read (heap); + const QVariant &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractXmlReceiver_Adaptor *)cls)->cbs_atomicValue_2119_0 (arg1); } @@ -598,8 +598,8 @@ static void _call_cbs_attribute_4286_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlName &arg1 = args.read (heap); - const QStringRef &arg2 = args.read (heap); + const QXmlName &arg1 = gsi::arg_reader() (args, heap); + const QStringRef &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractXmlReceiver_Adaptor *)cls)->cbs_attribute_4286_0 (arg1, arg2); } @@ -623,7 +623,7 @@ static void _call_cbs_characters_2310_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStringRef &arg1 = args.read (heap); + const QStringRef &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractXmlReceiver_Adaptor *)cls)->cbs_characters_2310_0 (arg1); } @@ -647,7 +647,7 @@ static void _call_cbs_comment_2025_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractXmlReceiver_Adaptor *)cls)->cbs_comment_2025_0 (arg1); } @@ -731,7 +731,7 @@ static void _call_cbs_namespaceBinding_2084_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlName &arg1 = args.read (heap); + const QXmlName &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractXmlReceiver_Adaptor *)cls)->cbs_namespaceBinding_2084_0 (arg1); } @@ -757,8 +757,8 @@ static void _call_cbs_processingInstruction_4001_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlName &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QXmlName &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractXmlReceiver_Adaptor *)cls)->cbs_processingInstruction_4001_0 (arg1, arg2); } @@ -802,7 +802,7 @@ static void _call_cbs_startElement_2084_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlName &arg1 = args.read (heap); + const QXmlName &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractXmlReceiver_Adaptor *)cls)->cbs_startElement_2084_0 (arg1); } @@ -846,7 +846,7 @@ static void _call_cbs_whitespaceOnly_2310_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStringRef &arg1 = args.read (heap); + const QStringRef &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractXmlReceiver_Adaptor *)cls)->cbs_whitespaceOnly_2310_0 (arg1); } diff --git a/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQXmlFormatter.cc b/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQXmlFormatter.cc index 1434285c0..f363102c0 100644 --- a/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQXmlFormatter.cc +++ b/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQXmlFormatter.cc @@ -567,7 +567,7 @@ static void _call_cbs_atomicValue_2119_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVariant &arg1 = args.read (heap); + const QVariant &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlFormatter_Adaptor *)cls)->cbs_atomicValue_2119_0 (arg1); } @@ -593,8 +593,8 @@ static void _call_cbs_attribute_4286_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlName &arg1 = args.read (heap); - const QStringRef &arg2 = args.read (heap); + const QXmlName &arg1 = gsi::arg_reader() (args, heap); + const QStringRef &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlFormatter_Adaptor *)cls)->cbs_attribute_4286_0 (arg1, arg2); } @@ -618,7 +618,7 @@ static void _call_cbs_characters_2310_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStringRef &arg1 = args.read (heap); + const QStringRef &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlFormatter_Adaptor *)cls)->cbs_characters_2310_0 (arg1); } @@ -642,7 +642,7 @@ static void _call_cbs_comment_2025_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlFormatter_Adaptor *)cls)->cbs_comment_2025_0 (arg1); } @@ -726,7 +726,7 @@ static void _call_cbs_namespaceBinding_2084_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlName &arg1 = args.read (heap); + const QXmlName &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlFormatter_Adaptor *)cls)->cbs_namespaceBinding_2084_0 (arg1); } @@ -752,8 +752,8 @@ static void _call_cbs_processingInstruction_4001_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlName &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QXmlName &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlFormatter_Adaptor *)cls)->cbs_processingInstruction_4001_0 (arg1, arg2); } @@ -797,7 +797,7 @@ static void _call_cbs_startElement_2084_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlName &arg1 = args.read (heap); + const QXmlName &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlFormatter_Adaptor *)cls)->cbs_startElement_2084_0 (arg1); } @@ -841,7 +841,7 @@ static void _call_cbs_whitespaceOnly_2310_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStringRef &arg1 = args.read (heap); + const QStringRef &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlFormatter_Adaptor *)cls)->cbs_whitespaceOnly_2310_0 (arg1); } diff --git a/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQXmlSerializer.cc b/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQXmlSerializer.cc index e6c9271e9..9284afa2f 100644 --- a/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQXmlSerializer.cc +++ b/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQXmlSerializer.cc @@ -605,7 +605,7 @@ static void _call_cbs_atomicValue_2119_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVariant &arg1 = args.read (heap); + const QVariant &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlSerializer_Adaptor *)cls)->cbs_atomicValue_2119_0 (arg1); } @@ -631,8 +631,8 @@ static void _call_cbs_attribute_4286_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlName &arg1 = args.read (heap); - const QStringRef &arg2 = args.read (heap); + const QXmlName &arg1 = gsi::arg_reader() (args, heap); + const QStringRef &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlSerializer_Adaptor *)cls)->cbs_attribute_4286_0 (arg1, arg2); } @@ -656,7 +656,7 @@ static void _call_cbs_characters_2310_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStringRef &arg1 = args.read (heap); + const QStringRef &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlSerializer_Adaptor *)cls)->cbs_characters_2310_0 (arg1); } @@ -680,7 +680,7 @@ static void _call_cbs_comment_2025_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlSerializer_Adaptor *)cls)->cbs_comment_2025_0 (arg1); } @@ -764,7 +764,7 @@ static void _call_cbs_namespaceBinding_2084_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlName &arg1 = args.read (heap); + const QXmlName &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlSerializer_Adaptor *)cls)->cbs_namespaceBinding_2084_0 (arg1); } @@ -790,8 +790,8 @@ static void _call_cbs_processingInstruction_4001_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlName &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QXmlName &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlSerializer_Adaptor *)cls)->cbs_processingInstruction_4001_0 (arg1, arg2); } @@ -835,7 +835,7 @@ static void _call_cbs_startElement_2084_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlName &arg1 = args.read (heap); + const QXmlName &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlSerializer_Adaptor *)cls)->cbs_startElement_2084_0 (arg1); } @@ -879,7 +879,7 @@ static void _call_cbs_whitespaceOnly_2310_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStringRef &arg1 = args.read (heap); + const QStringRef &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlSerializer_Adaptor *)cls)->cbs_whitespaceOnly_2310_0 (arg1); } diff --git a/src/gsiqt/qt6/QtCore/gsiDeclQAbstractAnimation.cc b/src/gsiqt/qt6/QtCore/gsiDeclQAbstractAnimation.cc index cfac2b2bf..df1b9d979 100644 --- a/src/gsiqt/qt6/QtCore/gsiDeclQAbstractAnimation.cc +++ b/src/gsiqt/qt6/QtCore/gsiDeclQAbstractAnimation.cc @@ -678,7 +678,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractAnimation_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -720,7 +720,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractAnimation_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -780,7 +780,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractAnimation_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -823,7 +823,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractAnimation_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -848,8 +848,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractAnimation_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -989,7 +989,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractAnimation_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -1013,7 +1013,7 @@ static void _call_cbs_updateCurrentTime_767_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractAnimation_Adaptor *)cls)->cbs_updateCurrentTime_767_0 (arg1); } @@ -1037,7 +1037,7 @@ static void _call_cbs_updateDirection_3310_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractAnimation_Adaptor *)cls)->cbs_updateDirection_3310_0 (arg1); } @@ -1063,8 +1063,8 @@ static void _call_cbs_updateState_5680_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractAnimation_Adaptor *)cls)->cbs_updateState_5680_0 (arg1, arg2); } diff --git a/src/gsiqt/qt6/QtCore/gsiDeclQAbstractEventDispatcher.cc b/src/gsiqt/qt6/QtCore/gsiDeclQAbstractEventDispatcher.cc index 23ecd8dc9..217e2cfc6 100644 --- a/src/gsiqt/qt6/QtCore/gsiDeclQAbstractEventDispatcher.cc +++ b/src/gsiqt/qt6/QtCore/gsiDeclQAbstractEventDispatcher.cc @@ -885,7 +885,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractEventDispatcher_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -929,7 +929,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractEventDispatcher_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -971,7 +971,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractEventDispatcher_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -995,7 +995,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractEventDispatcher_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1020,8 +1020,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractEventDispatcher_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1100,7 +1100,7 @@ static void _call_cbs_processEvents_3995_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); ret.write ((bool)((QAbstractEventDispatcher_Adaptor *)cls)->cbs_processEvents_3995_0 (arg1)); } @@ -1141,7 +1141,7 @@ static void _call_cbs_registerSocketNotifier_2152_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QSocketNotifier *arg1 = args.read (heap); + QSocketNotifier *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractEventDispatcher_Adaptor *)cls)->cbs_registerSocketNotifier_2152_0 (arg1); } @@ -1171,10 +1171,10 @@ static void _call_cbs_registerTimer_4411_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - qint64 arg2 = args.read (heap); - const qt_gsi::Converter::target_type & arg3 = args.read::target_type & > (heap); - QObject *arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + qint64 arg2 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg3 = gsi::arg_reader::target_type & >() (args, heap); + QObject *arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractEventDispatcher_Adaptor *)cls)->cbs_registerTimer_4411_0 (arg1, arg2, arg3, arg4); } @@ -1198,7 +1198,7 @@ static void _call_cbs_registeredTimers_c1302_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); ret.write > ((QList)((QAbstractEventDispatcher_Adaptor *)cls)->cbs_registeredTimers_c1302_0 (arg1)); } @@ -1221,7 +1221,7 @@ static void _call_cbs_remainingTime_767_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QAbstractEventDispatcher_Adaptor *)cls)->cbs_remainingTime_767_0 (arg1)); } @@ -1292,7 +1292,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractEventDispatcher_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -1316,7 +1316,7 @@ static void _call_cbs_unregisterSocketNotifier_2152_0 (const qt_gsi::GenericMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QSocketNotifier *arg1 = args.read (heap); + QSocketNotifier *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractEventDispatcher_Adaptor *)cls)->cbs_unregisterSocketNotifier_2152_0 (arg1); } @@ -1340,7 +1340,7 @@ static void _call_cbs_unregisterTimer_767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractEventDispatcher_Adaptor *)cls)->cbs_unregisterTimer_767_0 (arg1)); } @@ -1363,7 +1363,7 @@ static void _call_cbs_unregisterTimers_1302_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractEventDispatcher_Adaptor *)cls)->cbs_unregisterTimers_1302_0 (arg1)); } diff --git a/src/gsiqt/qt6/QtCore/gsiDeclQAbstractItemModel.cc b/src/gsiqt/qt6/QtCore/gsiDeclQAbstractItemModel.cc index 0128e1a71..883059664 100644 --- a/src/gsiqt/qt6/QtCore/gsiDeclQAbstractItemModel.cc +++ b/src/gsiqt/qt6/QtCore/gsiDeclQAbstractItemModel.cc @@ -2384,7 +2384,7 @@ static void _call_cbs_buddy_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QAbstractItemModel_Adaptor *)cls)->cbs_buddy_c2395_0 (arg1)); } @@ -2415,11 +2415,11 @@ static void _call_cbs_canDropMimeData_c7425_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMimeData *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - const QModelIndex &arg5 = args.read (heap); + const QMimeData *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + const QModelIndex &arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractItemModel_Adaptor *)cls)->cbs_canDropMimeData_c7425_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -2442,7 +2442,7 @@ static void _call_cbs_canFetchMore_c2395_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractItemModel_Adaptor *)cls)->cbs_canFetchMore_c2395_0 (arg1)); } @@ -2509,7 +2509,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemModel_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -2533,7 +2533,7 @@ static void _call_cbs_clearItemData_2395_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractItemModel_Adaptor *)cls)->cbs_clearItemData_2395_0 (arg1)); } @@ -2556,7 +2556,7 @@ static void _call_cbs_columnCount_c2395_1 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((int)((QAbstractItemModel_Adaptor *)cls)->cbs_columnCount_c2395_1 (arg1)); } @@ -2783,7 +2783,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemModel_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -2809,8 +2809,8 @@ static void _call_cbs_data_c3054_1 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::DisplayRole, heap); ret.write ((QVariant)((QAbstractItemModel_Adaptor *)cls)->cbs_data_c3054_1 (arg1, arg2)); } @@ -2902,7 +2902,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemModel_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -2934,11 +2934,11 @@ static void _call_cbs_dropMimeData_7425_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMimeData *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - const QModelIndex &arg5 = args.read (heap); + const QMimeData *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + const QModelIndex &arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractItemModel_Adaptor *)cls)->cbs_dropMimeData_7425_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -3088,7 +3088,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractItemModel_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -3113,8 +3113,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractItemModel_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -3137,7 +3137,7 @@ static void _call_cbs_fetchMore_2395_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemModel_Adaptor *)cls)->cbs_fetchMore_2395_0 (arg1); } @@ -3161,7 +3161,7 @@ static void _call_cbs_flags_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QFlags)((QAbstractItemModel_Adaptor *)cls)->cbs_flags_c2395_0 (arg1)); } @@ -3184,7 +3184,7 @@ static void _call_cbs_hasChildren_c2395_1 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QAbstractItemModel_Adaptor *)cls)->cbs_hasChildren_c2395_1 (arg1)); } @@ -3211,9 +3211,9 @@ static void _call_cbs_headerData_c3231_1 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::DisplayRole, heap); ret.write ((QVariant)((QAbstractItemModel_Adaptor *)cls)->cbs_headerData_c3231_1 (arg1, arg2, arg3)); } @@ -3264,9 +3264,9 @@ static void _call_cbs_index_c3713_1 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((QModelIndex)((QAbstractItemModel_Adaptor *)cls)->cbs_index_c3713_1 (arg1, arg2, arg3)); } @@ -3293,9 +3293,9 @@ static void _call_cbs_insertColumns_3713_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QAbstractItemModel_Adaptor *)cls)->cbs_insertColumns_3713_1 (arg1, arg2, arg3)); } @@ -3322,9 +3322,9 @@ static void _call_cbs_insertRows_3713_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QAbstractItemModel_Adaptor *)cls)->cbs_insertRows_3713_1 (arg1, arg2, arg3)); } @@ -3365,7 +3365,7 @@ static void _call_cbs_itemData_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QMap)((QAbstractItemModel_Adaptor *)cls)->cbs_itemData_c2395_0 (arg1)); } @@ -3438,11 +3438,11 @@ static void _call_cbs_match_c7932_2 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - const QVariant &arg3 = args.read (heap); - int arg4 = args.read (heap); - QFlags arg5 = args.read > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QVariant &arg3 = gsi::arg_reader() (args, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (1, heap); + QFlags arg5 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (Qt::MatchFlags(Qt::MatchStartsWith|Qt::MatchWrap), heap); ret.write > ((QList)((QAbstractItemModel_Adaptor *)cls)->cbs_match_c7932_2 (arg1, arg2, arg3, arg4, arg5)); } @@ -3465,7 +3465,7 @@ static void _call_cbs_mimeData_c3010_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); ret.write ((QMimeData *)((QAbstractItemModel_Adaptor *)cls)->cbs_mimeData_c3010_0 (arg1)); } @@ -3543,11 +3543,11 @@ static void _call_cbs_moveColumns_6659_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - const QModelIndex &arg4 = args.read (heap); - int arg5 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QModelIndex &arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractItemModel_Adaptor *)cls)->cbs_moveColumns_6659_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -3578,11 +3578,11 @@ static void _call_cbs_moveRows_6659_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - const QModelIndex &arg4 = args.read (heap); - int arg5 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QModelIndex &arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractItemModel_Adaptor *)cls)->cbs_moveRows_6659_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -3607,8 +3607,8 @@ static void _call_cbs_multiData_c4483_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - QModelRoleDataSpan arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + QModelRoleDataSpan arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemModel_Adaptor *)cls)->cbs_multiData_c4483_0 (arg1, arg2); } @@ -3650,7 +3650,7 @@ static void _call_cbs_parent_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QAbstractItemModel_Adaptor *)cls)->cbs_parent_c2395_0 (arg1)); } @@ -3709,9 +3709,9 @@ static void _call_cbs_removeColumns_3713_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QAbstractItemModel_Adaptor *)cls)->cbs_removeColumns_3713_1 (arg1, arg2, arg3)); } @@ -3738,9 +3738,9 @@ static void _call_cbs_removeRows_3713_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QAbstractItemModel_Adaptor *)cls)->cbs_removeRows_3713_1 (arg1, arg2, arg3)); } @@ -3822,7 +3822,7 @@ static void _call_cbs_rowCount_c2395_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((int)((QAbstractItemModel_Adaptor *)cls)->cbs_rowCount_c2395_1 (arg1)); } @@ -4033,9 +4033,9 @@ static void _call_cbs_setData_5065_1 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::EditRole, heap); ret.write ((bool)((QAbstractItemModel_Adaptor *)cls)->cbs_setData_5065_1 (arg1, arg2, arg3)); } @@ -4064,10 +4064,10 @@ static void _call_cbs_setHeaderData_5242_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - const QVariant &arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + const QVariant &arg3 = gsi::arg_reader() (args, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::EditRole, heap); ret.write ((bool)((QAbstractItemModel_Adaptor *)cls)->cbs_setHeaderData_5242_1 (arg1, arg2, arg3, arg4)); } @@ -4092,8 +4092,8 @@ static void _call_cbs_setItemData_5414_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QMap &arg2 = args.read & > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QMap &arg2 = gsi::arg_reader & >() (args, heap); ret.write ((bool)((QAbstractItemModel_Adaptor *)cls)->cbs_setItemData_5414_0 (arg1, arg2)); } @@ -4120,9 +4120,9 @@ static void _call_cbs_sibling_c3713_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QAbstractItemModel_Adaptor *)cls)->cbs_sibling_c3713_0 (arg1, arg2, arg3)); } @@ -4147,8 +4147,8 @@ static void _call_cbs_sort_2340_1 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::AscendingOrder), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemModel_Adaptor *)cls)->cbs_sort_2340_1 (arg1, arg2); } @@ -4172,7 +4172,7 @@ static void _call_cbs_span_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QSize)((QAbstractItemModel_Adaptor *)cls)->cbs_span_c2395_0 (arg1)); } @@ -4252,7 +4252,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemModel_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt6/QtCore/gsiDeclQAbstractListModel.cc b/src/gsiqt/qt6/QtCore/gsiDeclQAbstractListModel.cc index bc87e9829..bc47137a4 100644 --- a/src/gsiqt/qt6/QtCore/gsiDeclQAbstractListModel.cc +++ b/src/gsiqt/qt6/QtCore/gsiDeclQAbstractListModel.cc @@ -1407,7 +1407,7 @@ static void _call_cbs_buddy_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QAbstractListModel_Adaptor *)cls)->cbs_buddy_c2395_0 (arg1)); } @@ -1438,11 +1438,11 @@ static void _call_cbs_canDropMimeData_c7425_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMimeData *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - const QModelIndex &arg5 = args.read (heap); + const QMimeData *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + const QModelIndex &arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractListModel_Adaptor *)cls)->cbs_canDropMimeData_c7425_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -1465,7 +1465,7 @@ static void _call_cbs_canFetchMore_c2395_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractListModel_Adaptor *)cls)->cbs_canFetchMore_c2395_0 (arg1)); } @@ -1532,7 +1532,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractListModel_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1556,7 +1556,7 @@ static void _call_cbs_clearItemData_2395_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractListModel_Adaptor *)cls)->cbs_clearItemData_2395_0 (arg1)); } @@ -1783,7 +1783,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractListModel_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1809,8 +1809,8 @@ static void _call_cbs_data_c3054_1 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::DisplayRole, heap); ret.write ((QVariant)((QAbstractListModel_Adaptor *)cls)->cbs_data_c3054_1 (arg1, arg2)); } @@ -1902,7 +1902,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractListModel_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1934,11 +1934,11 @@ static void _call_cbs_dropMimeData_7425_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMimeData *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - const QModelIndex &arg5 = args.read (heap); + const QMimeData *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + const QModelIndex &arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractListModel_Adaptor *)cls)->cbs_dropMimeData_7425_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -2088,7 +2088,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractListModel_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -2113,8 +2113,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractListModel_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -2137,7 +2137,7 @@ static void _call_cbs_fetchMore_2395_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractListModel_Adaptor *)cls)->cbs_fetchMore_2395_0 (arg1); } @@ -2161,7 +2161,7 @@ static void _call_cbs_flags_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QFlags)((QAbstractListModel_Adaptor *)cls)->cbs_flags_c2395_0 (arg1)); } @@ -2188,9 +2188,9 @@ static void _call_cbs_headerData_c3231_1 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::DisplayRole, heap); ret.write ((QVariant)((QAbstractListModel_Adaptor *)cls)->cbs_headerData_c3231_1 (arg1, arg2, arg3)); } @@ -2241,9 +2241,9 @@ static void _call_cbs_index_c3713_2 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((QModelIndex)((QAbstractListModel_Adaptor *)cls)->cbs_index_c3713_2 (arg1, arg2, arg3)); } @@ -2270,9 +2270,9 @@ static void _call_cbs_insertColumns_3713_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QAbstractListModel_Adaptor *)cls)->cbs_insertColumns_3713_1 (arg1, arg2, arg3)); } @@ -2299,9 +2299,9 @@ static void _call_cbs_insertRows_3713_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QAbstractListModel_Adaptor *)cls)->cbs_insertRows_3713_1 (arg1, arg2, arg3)); } @@ -2342,7 +2342,7 @@ static void _call_cbs_itemData_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QMap)((QAbstractListModel_Adaptor *)cls)->cbs_itemData_c2395_0 (arg1)); } @@ -2415,11 +2415,11 @@ static void _call_cbs_match_c7932_2 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - const QVariant &arg3 = args.read (heap); - int arg4 = args.read (heap); - QFlags arg5 = args.read > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QVariant &arg3 = gsi::arg_reader() (args, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (1, heap); + QFlags arg5 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (Qt::MatchFlags(Qt::MatchStartsWith|Qt::MatchWrap), heap); ret.write > ((QList)((QAbstractListModel_Adaptor *)cls)->cbs_match_c7932_2 (arg1, arg2, arg3, arg4, arg5)); } @@ -2442,7 +2442,7 @@ static void _call_cbs_mimeData_c3010_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); ret.write ((QMimeData *)((QAbstractListModel_Adaptor *)cls)->cbs_mimeData_c3010_0 (arg1)); } @@ -2520,11 +2520,11 @@ static void _call_cbs_moveColumns_6659_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - const QModelIndex &arg4 = args.read (heap); - int arg5 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QModelIndex &arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractListModel_Adaptor *)cls)->cbs_moveColumns_6659_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -2555,11 +2555,11 @@ static void _call_cbs_moveRows_6659_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - const QModelIndex &arg4 = args.read (heap); - int arg5 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QModelIndex &arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractListModel_Adaptor *)cls)->cbs_moveRows_6659_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -2584,8 +2584,8 @@ static void _call_cbs_multiData_c4483_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - QModelRoleDataSpan arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + QModelRoleDataSpan arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractListModel_Adaptor *)cls)->cbs_multiData_c4483_0 (arg1, arg2); } @@ -2663,9 +2663,9 @@ static void _call_cbs_removeColumns_3713_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QAbstractListModel_Adaptor *)cls)->cbs_removeColumns_3713_1 (arg1, arg2, arg3)); } @@ -2692,9 +2692,9 @@ static void _call_cbs_removeRows_3713_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QAbstractListModel_Adaptor *)cls)->cbs_removeRows_3713_1 (arg1, arg2, arg3)); } @@ -2776,7 +2776,7 @@ static void _call_cbs_rowCount_c2395_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((int)((QAbstractListModel_Adaptor *)cls)->cbs_rowCount_c2395_1 (arg1)); } @@ -2987,9 +2987,9 @@ static void _call_cbs_setData_5065_1 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::EditRole, heap); ret.write ((bool)((QAbstractListModel_Adaptor *)cls)->cbs_setData_5065_1 (arg1, arg2, arg3)); } @@ -3018,10 +3018,10 @@ static void _call_cbs_setHeaderData_5242_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - const QVariant &arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + const QVariant &arg3 = gsi::arg_reader() (args, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::EditRole, heap); ret.write ((bool)((QAbstractListModel_Adaptor *)cls)->cbs_setHeaderData_5242_1 (arg1, arg2, arg3, arg4)); } @@ -3046,8 +3046,8 @@ static void _call_cbs_setItemData_5414_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QMap &arg2 = args.read & > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QMap &arg2 = gsi::arg_reader & >() (args, heap); ret.write ((bool)((QAbstractListModel_Adaptor *)cls)->cbs_setItemData_5414_0 (arg1, arg2)); } @@ -3074,9 +3074,9 @@ static void _call_cbs_sibling_c3713_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QAbstractListModel_Adaptor *)cls)->cbs_sibling_c3713_0 (arg1, arg2, arg3)); } @@ -3101,8 +3101,8 @@ static void _call_cbs_sort_2340_1 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::AscendingOrder), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractListModel_Adaptor *)cls)->cbs_sort_2340_1 (arg1, arg2); } @@ -3126,7 +3126,7 @@ static void _call_cbs_span_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QSize)((QAbstractListModel_Adaptor *)cls)->cbs_span_c2395_0 (arg1)); } @@ -3206,7 +3206,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractListModel_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt6/QtCore/gsiDeclQAbstractNativeEventFilter.cc b/src/gsiqt/qt6/QtCore/gsiDeclQAbstractNativeEventFilter.cc index f14299449..965f2f37c 100644 --- a/src/gsiqt/qt6/QtCore/gsiDeclQAbstractNativeEventFilter.cc +++ b/src/gsiqt/qt6/QtCore/gsiDeclQAbstractNativeEventFilter.cc @@ -144,9 +144,9 @@ static void _call_cbs_nativeEventFilter_6949_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - QIntegerForSizeof::Signed *arg3 = args.read::Signed * > (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + QIntegerForSizeof::Signed *arg3 = gsi::arg_reader::Signed * >() (args, heap); ret.write ((bool)((QAbstractNativeEventFilter_Adaptor *)cls)->cbs_nativeEventFilter_6949_0 (arg1, arg2, arg3)); } diff --git a/src/gsiqt/qt6/QtCore/gsiDeclQAbstractProxyModel.cc b/src/gsiqt/qt6/QtCore/gsiDeclQAbstractProxyModel.cc index 9acb1d285..08eaad232 100644 --- a/src/gsiqt/qt6/QtCore/gsiDeclQAbstractProxyModel.cc +++ b/src/gsiqt/qt6/QtCore/gsiDeclQAbstractProxyModel.cc @@ -2070,7 +2070,7 @@ static void _call_cbs_buddy_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QAbstractProxyModel_Adaptor *)cls)->cbs_buddy_c2395_0 (arg1)); } @@ -2101,11 +2101,11 @@ static void _call_cbs_canDropMimeData_c7425_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMimeData *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - const QModelIndex &arg5 = args.read (heap); + const QMimeData *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + const QModelIndex &arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractProxyModel_Adaptor *)cls)->cbs_canDropMimeData_c7425_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -2128,7 +2128,7 @@ static void _call_cbs_canFetchMore_c2395_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractProxyModel_Adaptor *)cls)->cbs_canFetchMore_c2395_0 (arg1)); } @@ -2195,7 +2195,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractProxyModel_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -2219,7 +2219,7 @@ static void _call_cbs_clearItemData_2395_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractProxyModel_Adaptor *)cls)->cbs_clearItemData_2395_0 (arg1)); } @@ -2242,7 +2242,7 @@ static void _call_cbs_columnCount_c2395_1 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((int)((QAbstractProxyModel_Adaptor *)cls)->cbs_columnCount_c2395_1 (arg1)); } @@ -2493,7 +2493,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractProxyModel_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -2519,8 +2519,8 @@ static void _call_cbs_data_c3054_1 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::DisplayRole, heap); ret.write ((QVariant)((QAbstractProxyModel_Adaptor *)cls)->cbs_data_c3054_1 (arg1, arg2)); } @@ -2612,7 +2612,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractProxyModel_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -2644,11 +2644,11 @@ static void _call_cbs_dropMimeData_7425_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMimeData *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - const QModelIndex &arg5 = args.read (heap); + const QMimeData *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + const QModelIndex &arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractProxyModel_Adaptor *)cls)->cbs_dropMimeData_7425_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -2798,7 +2798,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractProxyModel_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -2823,8 +2823,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractProxyModel_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -2847,7 +2847,7 @@ static void _call_cbs_fetchMore_2395_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractProxyModel_Adaptor *)cls)->cbs_fetchMore_2395_0 (arg1); } @@ -2871,7 +2871,7 @@ static void _call_cbs_flags_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QFlags)((QAbstractProxyModel_Adaptor *)cls)->cbs_flags_c2395_0 (arg1)); } @@ -2894,7 +2894,7 @@ static void _call_cbs_hasChildren_c2395_1 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QAbstractProxyModel_Adaptor *)cls)->cbs_hasChildren_c2395_1 (arg1)); } @@ -2921,9 +2921,9 @@ static void _call_cbs_headerData_c3231_1 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::DisplayRole, heap); ret.write ((QVariant)((QAbstractProxyModel_Adaptor *)cls)->cbs_headerData_c3231_1 (arg1, arg2, arg3)); } @@ -2974,9 +2974,9 @@ static void _call_cbs_index_c3713_1 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((QModelIndex)((QAbstractProxyModel_Adaptor *)cls)->cbs_index_c3713_1 (arg1, arg2, arg3)); } @@ -3003,9 +3003,9 @@ static void _call_cbs_insertColumns_3713_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QAbstractProxyModel_Adaptor *)cls)->cbs_insertColumns_3713_1 (arg1, arg2, arg3)); } @@ -3032,9 +3032,9 @@ static void _call_cbs_insertRows_3713_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QAbstractProxyModel_Adaptor *)cls)->cbs_insertRows_3713_1 (arg1, arg2, arg3)); } @@ -3075,7 +3075,7 @@ static void _call_cbs_itemData_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QMap)((QAbstractProxyModel_Adaptor *)cls)->cbs_itemData_c2395_0 (arg1)); } @@ -3140,7 +3140,7 @@ static void _call_cbs_mapFromSource_c2395_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QAbstractProxyModel_Adaptor *)cls)->cbs_mapFromSource_c2395_0 (arg1)); } @@ -3163,7 +3163,7 @@ static void _call_cbs_mapSelectionFromSource_c2727_0 (const qt_gsi::GenericMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QItemSelection &arg1 = args.read (heap); + const QItemSelection &arg1 = gsi::arg_reader() (args, heap); ret.write ((QItemSelection)((QAbstractProxyModel_Adaptor *)cls)->cbs_mapSelectionFromSource_c2727_0 (arg1)); } @@ -3186,7 +3186,7 @@ static void _call_cbs_mapSelectionToSource_c2727_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QItemSelection &arg1 = args.read (heap); + const QItemSelection &arg1 = gsi::arg_reader() (args, heap); ret.write ((QItemSelection)((QAbstractProxyModel_Adaptor *)cls)->cbs_mapSelectionToSource_c2727_0 (arg1)); } @@ -3209,7 +3209,7 @@ static void _call_cbs_mapToSource_c2395_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QAbstractProxyModel_Adaptor *)cls)->cbs_mapToSource_c2395_0 (arg1)); } @@ -3240,11 +3240,11 @@ static void _call_cbs_match_c7932_2 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - const QVariant &arg3 = args.read (heap); - int arg4 = args.read (heap); - QFlags arg5 = args.read > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QVariant &arg3 = gsi::arg_reader() (args, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (1, heap); + QFlags arg5 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (Qt::MatchFlags(Qt::MatchStartsWith|Qt::MatchWrap), heap); ret.write > ((QList)((QAbstractProxyModel_Adaptor *)cls)->cbs_match_c7932_2 (arg1, arg2, arg3, arg4, arg5)); } @@ -3267,7 +3267,7 @@ static void _call_cbs_mimeData_c3010_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); ret.write ((QMimeData *)((QAbstractProxyModel_Adaptor *)cls)->cbs_mimeData_c3010_0 (arg1)); } @@ -3345,11 +3345,11 @@ static void _call_cbs_moveColumns_6659_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - const QModelIndex &arg4 = args.read (heap); - int arg5 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QModelIndex &arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractProxyModel_Adaptor *)cls)->cbs_moveColumns_6659_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -3380,11 +3380,11 @@ static void _call_cbs_moveRows_6659_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - const QModelIndex &arg4 = args.read (heap); - int arg5 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QModelIndex &arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractProxyModel_Adaptor *)cls)->cbs_moveRows_6659_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -3409,8 +3409,8 @@ static void _call_cbs_multiData_c4483_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - QModelRoleDataSpan arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + QModelRoleDataSpan arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractProxyModel_Adaptor *)cls)->cbs_multiData_c4483_0 (arg1, arg2); } @@ -3452,7 +3452,7 @@ static void _call_cbs_parent_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QAbstractProxyModel_Adaptor *)cls)->cbs_parent_c2395_0 (arg1)); } @@ -3511,9 +3511,9 @@ static void _call_cbs_removeColumns_3713_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QAbstractProxyModel_Adaptor *)cls)->cbs_removeColumns_3713_1 (arg1, arg2, arg3)); } @@ -3540,9 +3540,9 @@ static void _call_cbs_removeRows_3713_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QAbstractProxyModel_Adaptor *)cls)->cbs_removeRows_3713_1 (arg1, arg2, arg3)); } @@ -3624,7 +3624,7 @@ static void _call_cbs_rowCount_c2395_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((int)((QAbstractProxyModel_Adaptor *)cls)->cbs_rowCount_c2395_1 (arg1)); } @@ -3835,9 +3835,9 @@ static void _call_cbs_setData_5065_1 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::EditRole, heap); ret.write ((bool)((QAbstractProxyModel_Adaptor *)cls)->cbs_setData_5065_1 (arg1, arg2, arg3)); } @@ -3866,10 +3866,10 @@ static void _call_cbs_setHeaderData_5242_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - const QVariant &arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + const QVariant &arg3 = gsi::arg_reader() (args, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::EditRole, heap); ret.write ((bool)((QAbstractProxyModel_Adaptor *)cls)->cbs_setHeaderData_5242_1 (arg1, arg2, arg3, arg4)); } @@ -3894,8 +3894,8 @@ static void _call_cbs_setItemData_5414_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QMap &arg2 = args.read & > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QMap &arg2 = gsi::arg_reader & >() (args, heap); ret.write ((bool)((QAbstractProxyModel_Adaptor *)cls)->cbs_setItemData_5414_0 (arg1, arg2)); } @@ -3918,7 +3918,7 @@ static void _call_cbs_setSourceModel_2419_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractItemModel *arg1 = args.read (heap); + QAbstractItemModel *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractProxyModel_Adaptor *)cls)->cbs_setSourceModel_2419_0 (arg1); } @@ -3946,9 +3946,9 @@ static void _call_cbs_sibling_c3713_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QAbstractProxyModel_Adaptor *)cls)->cbs_sibling_c3713_0 (arg1, arg2, arg3)); } @@ -3973,8 +3973,8 @@ static void _call_cbs_sort_2340_1 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::AscendingOrder), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractProxyModel_Adaptor *)cls)->cbs_sort_2340_1 (arg1, arg2); } @@ -4012,7 +4012,7 @@ static void _call_cbs_span_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QSize)((QAbstractProxyModel_Adaptor *)cls)->cbs_span_c2395_0 (arg1)); } @@ -4092,7 +4092,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractProxyModel_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt6/QtCore/gsiDeclQAbstractTableModel.cc b/src/gsiqt/qt6/QtCore/gsiDeclQAbstractTableModel.cc index 4496725ee..f6cf87d38 100644 --- a/src/gsiqt/qt6/QtCore/gsiDeclQAbstractTableModel.cc +++ b/src/gsiqt/qt6/QtCore/gsiDeclQAbstractTableModel.cc @@ -1424,7 +1424,7 @@ static void _call_cbs_buddy_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QAbstractTableModel_Adaptor *)cls)->cbs_buddy_c2395_0 (arg1)); } @@ -1455,11 +1455,11 @@ static void _call_cbs_canDropMimeData_c7425_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMimeData *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - const QModelIndex &arg5 = args.read (heap); + const QMimeData *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + const QModelIndex &arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractTableModel_Adaptor *)cls)->cbs_canDropMimeData_c7425_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -1482,7 +1482,7 @@ static void _call_cbs_canFetchMore_c2395_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractTableModel_Adaptor *)cls)->cbs_canFetchMore_c2395_0 (arg1)); } @@ -1549,7 +1549,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractTableModel_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1573,7 +1573,7 @@ static void _call_cbs_clearItemData_2395_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractTableModel_Adaptor *)cls)->cbs_clearItemData_2395_0 (arg1)); } @@ -1596,7 +1596,7 @@ static void _call_cbs_columnCount_c2395_1 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((int)((QAbstractTableModel_Adaptor *)cls)->cbs_columnCount_c2395_1 (arg1)); } @@ -1823,7 +1823,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractTableModel_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1849,8 +1849,8 @@ static void _call_cbs_data_c3054_1 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::DisplayRole, heap); ret.write ((QVariant)((QAbstractTableModel_Adaptor *)cls)->cbs_data_c3054_1 (arg1, arg2)); } @@ -1942,7 +1942,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractTableModel_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1974,11 +1974,11 @@ static void _call_cbs_dropMimeData_7425_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMimeData *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - const QModelIndex &arg5 = args.read (heap); + const QMimeData *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + const QModelIndex &arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractTableModel_Adaptor *)cls)->cbs_dropMimeData_7425_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -2128,7 +2128,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractTableModel_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -2153,8 +2153,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractTableModel_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -2177,7 +2177,7 @@ static void _call_cbs_fetchMore_2395_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractTableModel_Adaptor *)cls)->cbs_fetchMore_2395_0 (arg1); } @@ -2201,7 +2201,7 @@ static void _call_cbs_flags_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QFlags)((QAbstractTableModel_Adaptor *)cls)->cbs_flags_c2395_0 (arg1)); } @@ -2228,9 +2228,9 @@ static void _call_cbs_headerData_c3231_1 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::DisplayRole, heap); ret.write ((QVariant)((QAbstractTableModel_Adaptor *)cls)->cbs_headerData_c3231_1 (arg1, arg2, arg3)); } @@ -2281,9 +2281,9 @@ static void _call_cbs_index_c3713_1 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((QModelIndex)((QAbstractTableModel_Adaptor *)cls)->cbs_index_c3713_1 (arg1, arg2, arg3)); } @@ -2310,9 +2310,9 @@ static void _call_cbs_insertColumns_3713_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QAbstractTableModel_Adaptor *)cls)->cbs_insertColumns_3713_1 (arg1, arg2, arg3)); } @@ -2339,9 +2339,9 @@ static void _call_cbs_insertRows_3713_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QAbstractTableModel_Adaptor *)cls)->cbs_insertRows_3713_1 (arg1, arg2, arg3)); } @@ -2382,7 +2382,7 @@ static void _call_cbs_itemData_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QMap)((QAbstractTableModel_Adaptor *)cls)->cbs_itemData_c2395_0 (arg1)); } @@ -2455,11 +2455,11 @@ static void _call_cbs_match_c7932_2 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - const QVariant &arg3 = args.read (heap); - int arg4 = args.read (heap); - QFlags arg5 = args.read > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QVariant &arg3 = gsi::arg_reader() (args, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (1, heap); + QFlags arg5 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (Qt::MatchFlags(Qt::MatchStartsWith|Qt::MatchWrap), heap); ret.write > ((QList)((QAbstractTableModel_Adaptor *)cls)->cbs_match_c7932_2 (arg1, arg2, arg3, arg4, arg5)); } @@ -2482,7 +2482,7 @@ static void _call_cbs_mimeData_c3010_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); ret.write ((QMimeData *)((QAbstractTableModel_Adaptor *)cls)->cbs_mimeData_c3010_0 (arg1)); } @@ -2560,11 +2560,11 @@ static void _call_cbs_moveColumns_6659_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - const QModelIndex &arg4 = args.read (heap); - int arg5 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QModelIndex &arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractTableModel_Adaptor *)cls)->cbs_moveColumns_6659_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -2595,11 +2595,11 @@ static void _call_cbs_moveRows_6659_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - const QModelIndex &arg4 = args.read (heap); - int arg5 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QModelIndex &arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractTableModel_Adaptor *)cls)->cbs_moveRows_6659_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -2624,8 +2624,8 @@ static void _call_cbs_multiData_c4483_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - QModelRoleDataSpan arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + QModelRoleDataSpan arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractTableModel_Adaptor *)cls)->cbs_multiData_c4483_0 (arg1, arg2); } @@ -2703,9 +2703,9 @@ static void _call_cbs_removeColumns_3713_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QAbstractTableModel_Adaptor *)cls)->cbs_removeColumns_3713_1 (arg1, arg2, arg3)); } @@ -2732,9 +2732,9 @@ static void _call_cbs_removeRows_3713_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QAbstractTableModel_Adaptor *)cls)->cbs_removeRows_3713_1 (arg1, arg2, arg3)); } @@ -2816,7 +2816,7 @@ static void _call_cbs_rowCount_c2395_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((int)((QAbstractTableModel_Adaptor *)cls)->cbs_rowCount_c2395_1 (arg1)); } @@ -3027,9 +3027,9 @@ static void _call_cbs_setData_5065_1 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::EditRole, heap); ret.write ((bool)((QAbstractTableModel_Adaptor *)cls)->cbs_setData_5065_1 (arg1, arg2, arg3)); } @@ -3058,10 +3058,10 @@ static void _call_cbs_setHeaderData_5242_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - const QVariant &arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + const QVariant &arg3 = gsi::arg_reader() (args, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::EditRole, heap); ret.write ((bool)((QAbstractTableModel_Adaptor *)cls)->cbs_setHeaderData_5242_1 (arg1, arg2, arg3, arg4)); } @@ -3086,8 +3086,8 @@ static void _call_cbs_setItemData_5414_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QMap &arg2 = args.read & > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QMap &arg2 = gsi::arg_reader & >() (args, heap); ret.write ((bool)((QAbstractTableModel_Adaptor *)cls)->cbs_setItemData_5414_0 (arg1, arg2)); } @@ -3114,9 +3114,9 @@ static void _call_cbs_sibling_c3713_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QAbstractTableModel_Adaptor *)cls)->cbs_sibling_c3713_0 (arg1, arg2, arg3)); } @@ -3141,8 +3141,8 @@ static void _call_cbs_sort_2340_1 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::AscendingOrder), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractTableModel_Adaptor *)cls)->cbs_sort_2340_1 (arg1, arg2); } @@ -3166,7 +3166,7 @@ static void _call_cbs_span_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QSize)((QAbstractTableModel_Adaptor *)cls)->cbs_span_c2395_0 (arg1)); } @@ -3246,7 +3246,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractTableModel_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt6/QtCore/gsiDeclQAnimationDriver.cc b/src/gsiqt/qt6/QtCore/gsiDeclQAnimationDriver.cc index 6eb4906fc..804c7ccc6 100644 --- a/src/gsiqt/qt6/QtCore/gsiDeclQAnimationDriver.cc +++ b/src/gsiqt/qt6/QtCore/gsiDeclQAnimationDriver.cc @@ -485,7 +485,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAnimationDriver_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -509,7 +509,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAnimationDriver_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -551,7 +551,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAnimationDriver_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -594,7 +594,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAnimationDriver_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -619,8 +619,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAnimationDriver_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -793,7 +793,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAnimationDriver_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt6/QtCore/gsiDeclQAnimationGroup.cc b/src/gsiqt/qt6/QtCore/gsiDeclQAnimationGroup.cc index 45d47afbc..d6f97699c 100644 --- a/src/gsiqt/qt6/QtCore/gsiDeclQAnimationGroup.cc +++ b/src/gsiqt/qt6/QtCore/gsiDeclQAnimationGroup.cc @@ -537,7 +537,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAnimationGroup_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -579,7 +579,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAnimationGroup_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -639,7 +639,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAnimationGroup_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -682,7 +682,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAnimationGroup_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -707,8 +707,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAnimationGroup_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -848,7 +848,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAnimationGroup_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -872,7 +872,7 @@ static void _call_cbs_updateCurrentTime_767_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAnimationGroup_Adaptor *)cls)->cbs_updateCurrentTime_767_0 (arg1); } @@ -896,7 +896,7 @@ static void _call_cbs_updateDirection_3310_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAnimationGroup_Adaptor *)cls)->cbs_updateDirection_3310_0 (arg1); } @@ -922,8 +922,8 @@ static void _call_cbs_updateState_5680_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAnimationGroup_Adaptor *)cls)->cbs_updateState_5680_0 (arg1, arg2); } diff --git a/src/gsiqt/qt6/QtCore/gsiDeclQChildEvent.cc b/src/gsiqt/qt6/QtCore/gsiDeclQChildEvent.cc index cd1ec2722..b9aae0adc 100644 --- a/src/gsiqt/qt6/QtCore/gsiDeclQChildEvent.cc +++ b/src/gsiqt/qt6/QtCore/gsiDeclQChildEvent.cc @@ -236,7 +236,7 @@ static void _call_cbs_setAccepted_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QChildEvent_Adaptor *)cls)->cbs_setAccepted_864_0 (arg1); } diff --git a/src/gsiqt/qt6/QtCore/gsiDeclQConcatenateTablesProxyModel.cc b/src/gsiqt/qt6/QtCore/gsiDeclQConcatenateTablesProxyModel.cc index 10654f21f..b0da9a355 100644 --- a/src/gsiqt/qt6/QtCore/gsiDeclQConcatenateTablesProxyModel.cc +++ b/src/gsiqt/qt6/QtCore/gsiDeclQConcatenateTablesProxyModel.cc @@ -1775,7 +1775,7 @@ static void _call_cbs_buddy_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QConcatenateTablesProxyModel_Adaptor *)cls)->cbs_buddy_c2395_0 (arg1)); } @@ -1806,11 +1806,11 @@ static void _call_cbs_canDropMimeData_c7425_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMimeData *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - const QModelIndex &arg5 = args.read (heap); + const QMimeData *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + const QModelIndex &arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QConcatenateTablesProxyModel_Adaptor *)cls)->cbs_canDropMimeData_c7425_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -1833,7 +1833,7 @@ static void _call_cbs_canFetchMore_c2395_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QConcatenateTablesProxyModel_Adaptor *)cls)->cbs_canFetchMore_c2395_0 (arg1)); } @@ -1900,7 +1900,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QConcatenateTablesProxyModel_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1924,7 +1924,7 @@ static void _call_cbs_clearItemData_2395_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QConcatenateTablesProxyModel_Adaptor *)cls)->cbs_clearItemData_2395_0 (arg1)); } @@ -1947,7 +1947,7 @@ static void _call_cbs_columnCount_c2395_1 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((int)((QConcatenateTablesProxyModel_Adaptor *)cls)->cbs_columnCount_c2395_1 (arg1)); } @@ -2174,7 +2174,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QConcatenateTablesProxyModel_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -2200,8 +2200,8 @@ static void _call_cbs_data_c3054_1 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::DisplayRole, heap); ret.write ((QVariant)((QConcatenateTablesProxyModel_Adaptor *)cls)->cbs_data_c3054_1 (arg1, arg2)); } @@ -2293,7 +2293,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QConcatenateTablesProxyModel_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -2325,11 +2325,11 @@ static void _call_cbs_dropMimeData_7425_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMimeData *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - const QModelIndex &arg5 = args.read (heap); + const QMimeData *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + const QModelIndex &arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QConcatenateTablesProxyModel_Adaptor *)cls)->cbs_dropMimeData_7425_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -2479,7 +2479,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QConcatenateTablesProxyModel_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -2504,8 +2504,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QConcatenateTablesProxyModel_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -2528,7 +2528,7 @@ static void _call_cbs_fetchMore_2395_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QConcatenateTablesProxyModel_Adaptor *)cls)->cbs_fetchMore_2395_0 (arg1); } @@ -2552,7 +2552,7 @@ static void _call_cbs_flags_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QFlags)((QConcatenateTablesProxyModel_Adaptor *)cls)->cbs_flags_c2395_0 (arg1)); } @@ -2575,7 +2575,7 @@ static void _call_cbs_hasChildren_c2395_1 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QConcatenateTablesProxyModel_Adaptor *)cls)->cbs_hasChildren_c2395_1 (arg1)); } @@ -2602,9 +2602,9 @@ static void _call_cbs_headerData_c3231_1 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::DisplayRole, heap); ret.write ((QVariant)((QConcatenateTablesProxyModel_Adaptor *)cls)->cbs_headerData_c3231_1 (arg1, arg2, arg3)); } @@ -2655,9 +2655,9 @@ static void _call_cbs_index_c3713_1 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((QModelIndex)((QConcatenateTablesProxyModel_Adaptor *)cls)->cbs_index_c3713_1 (arg1, arg2, arg3)); } @@ -2684,9 +2684,9 @@ static void _call_cbs_insertColumns_3713_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QConcatenateTablesProxyModel_Adaptor *)cls)->cbs_insertColumns_3713_1 (arg1, arg2, arg3)); } @@ -2713,9 +2713,9 @@ static void _call_cbs_insertRows_3713_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QConcatenateTablesProxyModel_Adaptor *)cls)->cbs_insertRows_3713_1 (arg1, arg2, arg3)); } @@ -2756,7 +2756,7 @@ static void _call_cbs_itemData_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QMap)((QConcatenateTablesProxyModel_Adaptor *)cls)->cbs_itemData_c2395_0 (arg1)); } @@ -2829,11 +2829,11 @@ static void _call_cbs_match_c7932_2 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - const QVariant &arg3 = args.read (heap); - int arg4 = args.read (heap); - QFlags arg5 = args.read > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QVariant &arg3 = gsi::arg_reader() (args, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (1, heap); + QFlags arg5 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (Qt::MatchFlags(Qt::MatchStartsWith|Qt::MatchWrap), heap); ret.write > ((QList)((QConcatenateTablesProxyModel_Adaptor *)cls)->cbs_match_c7932_2 (arg1, arg2, arg3, arg4, arg5)); } @@ -2856,7 +2856,7 @@ static void _call_cbs_mimeData_c3010_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); ret.write ((QMimeData *)((QConcatenateTablesProxyModel_Adaptor *)cls)->cbs_mimeData_c3010_0 (arg1)); } @@ -2934,11 +2934,11 @@ static void _call_cbs_moveColumns_6659_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - const QModelIndex &arg4 = args.read (heap); - int arg5 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QModelIndex &arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QConcatenateTablesProxyModel_Adaptor *)cls)->cbs_moveColumns_6659_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -2969,11 +2969,11 @@ static void _call_cbs_moveRows_6659_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - const QModelIndex &arg4 = args.read (heap); - int arg5 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QModelIndex &arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QConcatenateTablesProxyModel_Adaptor *)cls)->cbs_moveRows_6659_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -2998,8 +2998,8 @@ static void _call_cbs_multiData_c4483_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - QModelRoleDataSpan arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + QModelRoleDataSpan arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QConcatenateTablesProxyModel_Adaptor *)cls)->cbs_multiData_c4483_0 (arg1, arg2); } @@ -3041,7 +3041,7 @@ static void _call_cbs_parent_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QConcatenateTablesProxyModel_Adaptor *)cls)->cbs_parent_c2395_0 (arg1)); } @@ -3100,9 +3100,9 @@ static void _call_cbs_removeColumns_3713_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QConcatenateTablesProxyModel_Adaptor *)cls)->cbs_removeColumns_3713_1 (arg1, arg2, arg3)); } @@ -3129,9 +3129,9 @@ static void _call_cbs_removeRows_3713_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QConcatenateTablesProxyModel_Adaptor *)cls)->cbs_removeRows_3713_1 (arg1, arg2, arg3)); } @@ -3213,7 +3213,7 @@ static void _call_cbs_rowCount_c2395_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((int)((QConcatenateTablesProxyModel_Adaptor *)cls)->cbs_rowCount_c2395_1 (arg1)); } @@ -3424,9 +3424,9 @@ static void _call_cbs_setData_5065_1 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::EditRole, heap); ret.write ((bool)((QConcatenateTablesProxyModel_Adaptor *)cls)->cbs_setData_5065_1 (arg1, arg2, arg3)); } @@ -3455,10 +3455,10 @@ static void _call_cbs_setHeaderData_5242_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - const QVariant &arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + const QVariant &arg3 = gsi::arg_reader() (args, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::EditRole, heap); ret.write ((bool)((QConcatenateTablesProxyModel_Adaptor *)cls)->cbs_setHeaderData_5242_1 (arg1, arg2, arg3, arg4)); } @@ -3483,8 +3483,8 @@ static void _call_cbs_setItemData_5414_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QMap &arg2 = args.read & > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QMap &arg2 = gsi::arg_reader & >() (args, heap); ret.write ((bool)((QConcatenateTablesProxyModel_Adaptor *)cls)->cbs_setItemData_5414_0 (arg1, arg2)); } @@ -3511,9 +3511,9 @@ static void _call_cbs_sibling_c3713_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QConcatenateTablesProxyModel_Adaptor *)cls)->cbs_sibling_c3713_0 (arg1, arg2, arg3)); } @@ -3538,8 +3538,8 @@ static void _call_cbs_sort_2340_1 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::AscendingOrder), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QConcatenateTablesProxyModel_Adaptor *)cls)->cbs_sort_2340_1 (arg1, arg2); } @@ -3563,7 +3563,7 @@ static void _call_cbs_span_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QSize)((QConcatenateTablesProxyModel_Adaptor *)cls)->cbs_span_c2395_0 (arg1)); } @@ -3643,7 +3643,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QConcatenateTablesProxyModel_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt6/QtCore/gsiDeclQCoreApplication.cc b/src/gsiqt/qt6/QtCore/gsiDeclQCoreApplication.cc index 2a5dece8e..c6163205c 100644 --- a/src/gsiqt/qt6/QtCore/gsiDeclQCoreApplication.cc +++ b/src/gsiqt/qt6/QtCore/gsiDeclQCoreApplication.cc @@ -1157,7 +1157,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCoreApplication_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1181,7 +1181,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCoreApplication_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1223,7 +1223,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCoreApplication_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1247,7 +1247,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCoreApplication_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1272,8 +1272,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCoreApplication_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1427,7 +1427,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCoreApplication_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt6/QtCore/gsiDeclQDynamicPropertyChangeEvent.cc b/src/gsiqt/qt6/QtCore/gsiDeclQDynamicPropertyChangeEvent.cc index f966fe273..820154cdb 100644 --- a/src/gsiqt/qt6/QtCore/gsiDeclQDynamicPropertyChangeEvent.cc +++ b/src/gsiqt/qt6/QtCore/gsiDeclQDynamicPropertyChangeEvent.cc @@ -184,7 +184,7 @@ static void _call_cbs_setAccepted_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDynamicPropertyChangeEvent_Adaptor *)cls)->cbs_setAccepted_864_0 (arg1); } diff --git a/src/gsiqt/qt6/QtCore/gsiDeclQEvent.cc b/src/gsiqt/qt6/QtCore/gsiDeclQEvent.cc index 548d55f9f..d44160081 100644 --- a/src/gsiqt/qt6/QtCore/gsiDeclQEvent.cc +++ b/src/gsiqt/qt6/QtCore/gsiDeclQEvent.cc @@ -337,7 +337,7 @@ static void _call_cbs_setAccepted_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QEvent_Adaptor *)cls)->cbs_setAccepted_864_0 (arg1); } diff --git a/src/gsiqt/qt6/QtCore/gsiDeclQEventLoop.cc b/src/gsiqt/qt6/QtCore/gsiDeclQEventLoop.cc index eac339468..19583a3d4 100644 --- a/src/gsiqt/qt6/QtCore/gsiDeclQEventLoop.cc +++ b/src/gsiqt/qt6/QtCore/gsiDeclQEventLoop.cc @@ -439,7 +439,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QEventLoop_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -463,7 +463,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QEventLoop_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -505,7 +505,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QEventLoop_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -529,7 +529,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QEventLoop_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -554,8 +554,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QEventLoop_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -660,7 +660,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QEventLoop_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt6/QtCore/gsiDeclQFileDevice.cc b/src/gsiqt/qt6/QtCore/gsiDeclQFileDevice.cc index 24541eb4a..597c6a597 100644 --- a/src/gsiqt/qt6/QtCore/gsiDeclQFileDevice.cc +++ b/src/gsiqt/qt6/QtCore/gsiDeclQFileDevice.cc @@ -1039,7 +1039,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDevice_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1083,7 +1083,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDevice_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1125,7 +1125,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDevice_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1149,7 +1149,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFileDevice_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1174,8 +1174,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFileDevice_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1272,7 +1272,7 @@ static void _call_cbs_open_3621_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); ret.write ((bool)((QFileDevice_Adaptor *)cls)->cbs_open_3621_0 (arg1)); } @@ -1398,7 +1398,7 @@ static void _call_cbs_resize_986_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - qint64 arg1 = args.read (heap); + qint64 arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFileDevice_Adaptor *)cls)->cbs_resize_986_0 (arg1)); } @@ -1421,7 +1421,7 @@ static void _call_cbs_seek_986_0 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - qint64 arg1 = args.read (heap); + qint64 arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFileDevice_Adaptor *)cls)->cbs_seek_986_0 (arg1)); } @@ -1510,7 +1510,7 @@ static void _call_cbs_setPermissions_3370_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); ret.write ((bool)((QFileDevice_Adaptor *)cls)->cbs_setPermissions_3370_0 (arg1)); } @@ -1552,7 +1552,7 @@ static void _call_cbs_skipData_986_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - qint64 arg1 = args.read (heap); + qint64 arg1 = gsi::arg_reader() (args, heap); ret.write ((qint64)((QFileDevice_Adaptor *)cls)->cbs_skipData_986_0 (arg1)); } @@ -1575,7 +1575,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDevice_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -1599,7 +1599,7 @@ static void _call_cbs_waitForBytesWritten_767_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFileDevice_Adaptor *)cls)->cbs_waitForBytesWritten_767_0 (arg1)); } @@ -1622,7 +1622,7 @@ static void _call_cbs_waitForReadyRead_767_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFileDevice_Adaptor *)cls)->cbs_waitForReadyRead_767_0 (arg1)); } @@ -1647,8 +1647,8 @@ static void _call_cbs_writeData_2609_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - qint64 arg2 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + qint64 arg2 = gsi::arg_reader() (args, heap); ret.write ((qint64)((QFileDevice_Adaptor *)cls)->cbs_writeData_2609_0 (arg1, arg2)); } diff --git a/src/gsiqt/qt6/QtCore/gsiDeclQFileSelector.cc b/src/gsiqt/qt6/QtCore/gsiDeclQFileSelector.cc index d4f720c66..433abd558 100644 --- a/src/gsiqt/qt6/QtCore/gsiDeclQFileSelector.cc +++ b/src/gsiqt/qt6/QtCore/gsiDeclQFileSelector.cc @@ -378,7 +378,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileSelector_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -402,7 +402,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileSelector_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -444,7 +444,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileSelector_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -468,7 +468,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFileSelector_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -493,8 +493,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFileSelector_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -599,7 +599,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileSelector_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt6/QtCore/gsiDeclQFileSystemWatcher.cc b/src/gsiqt/qt6/QtCore/gsiDeclQFileSystemWatcher.cc index 7c63e7ffc..093c57998 100644 --- a/src/gsiqt/qt6/QtCore/gsiDeclQFileSystemWatcher.cc +++ b/src/gsiqt/qt6/QtCore/gsiDeclQFileSystemWatcher.cc @@ -445,7 +445,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileSystemWatcher_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -469,7 +469,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileSystemWatcher_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -529,7 +529,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileSystemWatcher_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -553,7 +553,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFileSystemWatcher_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -578,8 +578,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFileSystemWatcher_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -702,7 +702,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileSystemWatcher_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt6/QtCore/gsiDeclQIdentityProxyModel.cc b/src/gsiqt/qt6/QtCore/gsiDeclQIdentityProxyModel.cc index 9656dc041..5c46cf920 100644 --- a/src/gsiqt/qt6/QtCore/gsiDeclQIdentityProxyModel.cc +++ b/src/gsiqt/qt6/QtCore/gsiDeclQIdentityProxyModel.cc @@ -1913,7 +1913,7 @@ static void _call_cbs_buddy_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QIdentityProxyModel_Adaptor *)cls)->cbs_buddy_c2395_0 (arg1)); } @@ -1944,11 +1944,11 @@ static void _call_cbs_canDropMimeData_c7425_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMimeData *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - const QModelIndex &arg5 = args.read (heap); + const QMimeData *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + const QModelIndex &arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QIdentityProxyModel_Adaptor *)cls)->cbs_canDropMimeData_c7425_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -1971,7 +1971,7 @@ static void _call_cbs_canFetchMore_c2395_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QIdentityProxyModel_Adaptor *)cls)->cbs_canFetchMore_c2395_0 (arg1)); } @@ -2038,7 +2038,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QIdentityProxyModel_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -2062,7 +2062,7 @@ static void _call_cbs_clearItemData_2395_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QIdentityProxyModel_Adaptor *)cls)->cbs_clearItemData_2395_0 (arg1)); } @@ -2085,7 +2085,7 @@ static void _call_cbs_columnCount_c2395_1 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((int)((QIdentityProxyModel_Adaptor *)cls)->cbs_columnCount_c2395_1 (arg1)); } @@ -2336,7 +2336,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QIdentityProxyModel_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -2362,8 +2362,8 @@ static void _call_cbs_data_c3054_1 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::DisplayRole, heap); ret.write ((QVariant)((QIdentityProxyModel_Adaptor *)cls)->cbs_data_c3054_1 (arg1, arg2)); } @@ -2455,7 +2455,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QIdentityProxyModel_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -2487,11 +2487,11 @@ static void _call_cbs_dropMimeData_7425_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMimeData *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - const QModelIndex &arg5 = args.read (heap); + const QMimeData *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + const QModelIndex &arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QIdentityProxyModel_Adaptor *)cls)->cbs_dropMimeData_7425_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -2641,7 +2641,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QIdentityProxyModel_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -2666,8 +2666,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QIdentityProxyModel_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -2690,7 +2690,7 @@ static void _call_cbs_fetchMore_2395_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QIdentityProxyModel_Adaptor *)cls)->cbs_fetchMore_2395_0 (arg1); } @@ -2714,7 +2714,7 @@ static void _call_cbs_flags_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QFlags)((QIdentityProxyModel_Adaptor *)cls)->cbs_flags_c2395_0 (arg1)); } @@ -2737,7 +2737,7 @@ static void _call_cbs_hasChildren_c2395_1 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QIdentityProxyModel_Adaptor *)cls)->cbs_hasChildren_c2395_1 (arg1)); } @@ -2764,9 +2764,9 @@ static void _call_cbs_headerData_c3231_1 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::DisplayRole, heap); ret.write ((QVariant)((QIdentityProxyModel_Adaptor *)cls)->cbs_headerData_c3231_1 (arg1, arg2, arg3)); } @@ -2817,9 +2817,9 @@ static void _call_cbs_index_c3713_1 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((QModelIndex)((QIdentityProxyModel_Adaptor *)cls)->cbs_index_c3713_1 (arg1, arg2, arg3)); } @@ -2846,9 +2846,9 @@ static void _call_cbs_insertColumns_3713_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QIdentityProxyModel_Adaptor *)cls)->cbs_insertColumns_3713_1 (arg1, arg2, arg3)); } @@ -2875,9 +2875,9 @@ static void _call_cbs_insertRows_3713_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QIdentityProxyModel_Adaptor *)cls)->cbs_insertRows_3713_1 (arg1, arg2, arg3)); } @@ -2918,7 +2918,7 @@ static void _call_cbs_itemData_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QMap)((QIdentityProxyModel_Adaptor *)cls)->cbs_itemData_c2395_0 (arg1)); } @@ -2983,7 +2983,7 @@ static void _call_cbs_mapFromSource_c2395_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QIdentityProxyModel_Adaptor *)cls)->cbs_mapFromSource_c2395_0 (arg1)); } @@ -3006,7 +3006,7 @@ static void _call_cbs_mapSelectionFromSource_c2727_0 (const qt_gsi::GenericMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QItemSelection &arg1 = args.read (heap); + const QItemSelection &arg1 = gsi::arg_reader() (args, heap); ret.write ((QItemSelection)((QIdentityProxyModel_Adaptor *)cls)->cbs_mapSelectionFromSource_c2727_0 (arg1)); } @@ -3029,7 +3029,7 @@ static void _call_cbs_mapSelectionToSource_c2727_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QItemSelection &arg1 = args.read (heap); + const QItemSelection &arg1 = gsi::arg_reader() (args, heap); ret.write ((QItemSelection)((QIdentityProxyModel_Adaptor *)cls)->cbs_mapSelectionToSource_c2727_0 (arg1)); } @@ -3052,7 +3052,7 @@ static void _call_cbs_mapToSource_c2395_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QIdentityProxyModel_Adaptor *)cls)->cbs_mapToSource_c2395_0 (arg1)); } @@ -3083,11 +3083,11 @@ static void _call_cbs_match_c7932_2 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - const QVariant &arg3 = args.read (heap); - int arg4 = args.read (heap); - QFlags arg5 = args.read > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QVariant &arg3 = gsi::arg_reader() (args, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (1, heap); + QFlags arg5 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (Qt::MatchFlags(Qt::MatchStartsWith|Qt::MatchWrap), heap); ret.write > ((QList)((QIdentityProxyModel_Adaptor *)cls)->cbs_match_c7932_2 (arg1, arg2, arg3, arg4, arg5)); } @@ -3110,7 +3110,7 @@ static void _call_cbs_mimeData_c3010_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); ret.write ((QMimeData *)((QIdentityProxyModel_Adaptor *)cls)->cbs_mimeData_c3010_0 (arg1)); } @@ -3188,11 +3188,11 @@ static void _call_cbs_moveColumns_6659_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - const QModelIndex &arg4 = args.read (heap); - int arg5 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QModelIndex &arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QIdentityProxyModel_Adaptor *)cls)->cbs_moveColumns_6659_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -3223,11 +3223,11 @@ static void _call_cbs_moveRows_6659_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - const QModelIndex &arg4 = args.read (heap); - int arg5 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QModelIndex &arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QIdentityProxyModel_Adaptor *)cls)->cbs_moveRows_6659_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -3252,8 +3252,8 @@ static void _call_cbs_multiData_c4483_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - QModelRoleDataSpan arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + QModelRoleDataSpan arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QIdentityProxyModel_Adaptor *)cls)->cbs_multiData_c4483_0 (arg1, arg2); } @@ -3295,7 +3295,7 @@ static void _call_cbs_parent_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QIdentityProxyModel_Adaptor *)cls)->cbs_parent_c2395_0 (arg1)); } @@ -3354,9 +3354,9 @@ static void _call_cbs_removeColumns_3713_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QIdentityProxyModel_Adaptor *)cls)->cbs_removeColumns_3713_1 (arg1, arg2, arg3)); } @@ -3383,9 +3383,9 @@ static void _call_cbs_removeRows_3713_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QIdentityProxyModel_Adaptor *)cls)->cbs_removeRows_3713_1 (arg1, arg2, arg3)); } @@ -3467,7 +3467,7 @@ static void _call_cbs_rowCount_c2395_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((int)((QIdentityProxyModel_Adaptor *)cls)->cbs_rowCount_c2395_1 (arg1)); } @@ -3678,9 +3678,9 @@ static void _call_cbs_setData_5065_1 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::EditRole, heap); ret.write ((bool)((QIdentityProxyModel_Adaptor *)cls)->cbs_setData_5065_1 (arg1, arg2, arg3)); } @@ -3709,10 +3709,10 @@ static void _call_cbs_setHeaderData_5242_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - const QVariant &arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + const QVariant &arg3 = gsi::arg_reader() (args, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::EditRole, heap); ret.write ((bool)((QIdentityProxyModel_Adaptor *)cls)->cbs_setHeaderData_5242_1 (arg1, arg2, arg3, arg4)); } @@ -3737,8 +3737,8 @@ static void _call_cbs_setItemData_5414_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QMap &arg2 = args.read & > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QMap &arg2 = gsi::arg_reader & >() (args, heap); ret.write ((bool)((QIdentityProxyModel_Adaptor *)cls)->cbs_setItemData_5414_0 (arg1, arg2)); } @@ -3761,7 +3761,7 @@ static void _call_cbs_setSourceModel_2419_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractItemModel *arg1 = args.read (heap); + QAbstractItemModel *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QIdentityProxyModel_Adaptor *)cls)->cbs_setSourceModel_2419_0 (arg1); } @@ -3789,9 +3789,9 @@ static void _call_cbs_sibling_c3713_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QIdentityProxyModel_Adaptor *)cls)->cbs_sibling_c3713_0 (arg1, arg2, arg3)); } @@ -3816,8 +3816,8 @@ static void _call_cbs_sort_2340_1 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::AscendingOrder), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QIdentityProxyModel_Adaptor *)cls)->cbs_sort_2340_1 (arg1, arg2); } @@ -3855,7 +3855,7 @@ static void _call_cbs_span_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QSize)((QIdentityProxyModel_Adaptor *)cls)->cbs_span_c2395_0 (arg1)); } @@ -3935,7 +3935,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QIdentityProxyModel_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt6/QtCore/gsiDeclQItemSelectionModel.cc b/src/gsiqt/qt6/QtCore/gsiDeclQItemSelectionModel.cc index 80af487e1..f89746802 100644 --- a/src/gsiqt/qt6/QtCore/gsiDeclQItemSelectionModel.cc +++ b/src/gsiqt/qt6/QtCore/gsiDeclQItemSelectionModel.cc @@ -859,7 +859,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QItemSelectionModel_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -986,7 +986,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QItemSelectionModel_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1028,7 +1028,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QItemSelectionModel_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1074,7 +1074,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QItemSelectionModel_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1099,8 +1099,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QItemSelectionModel_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1217,8 +1217,8 @@ static void _call_cbs_select_6758_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - QFlags arg2 = args.read > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QItemSelectionModel_Adaptor *)cls)->cbs_select_6758_0 (arg1, arg2); } @@ -1244,8 +1244,8 @@ static void _call_cbs_select_7090_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QItemSelection &arg1 = args.read (heap); - QFlags arg2 = args.read > (heap); + const QItemSelection &arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QItemSelectionModel_Adaptor *)cls)->cbs_select_7090_0 (arg1, arg2); } @@ -1320,8 +1320,8 @@ static void _call_cbs_setCurrentIndex_6758_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - QFlags arg2 = args.read > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QItemSelectionModel_Adaptor *)cls)->cbs_setCurrentIndex_6758_0 (arg1, arg2); } @@ -1345,7 +1345,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QItemSelectionModel_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt6/QtCore/gsiDeclQLibrary.cc b/src/gsiqt/qt6/QtCore/gsiDeclQLibrary.cc index 1d356ca0d..fba9fc106 100644 --- a/src/gsiqt/qt6/QtCore/gsiDeclQLibrary.cc +++ b/src/gsiqt/qt6/QtCore/gsiDeclQLibrary.cc @@ -595,7 +595,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLibrary_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -619,7 +619,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLibrary_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -661,7 +661,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLibrary_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -685,7 +685,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QLibrary_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -710,8 +710,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QLibrary_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -816,7 +816,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLibrary_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt6/QtCore/gsiDeclQMimeData.cc b/src/gsiqt/qt6/QtCore/gsiDeclQMimeData.cc index fc7c24c2b..d8abdd63d 100644 --- a/src/gsiqt/qt6/QtCore/gsiDeclQMimeData.cc +++ b/src/gsiqt/qt6/QtCore/gsiDeclQMimeData.cc @@ -707,7 +707,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMimeData_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -731,7 +731,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMimeData_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -773,7 +773,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMimeData_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -797,7 +797,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMimeData_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -822,8 +822,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMimeData_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -865,7 +865,7 @@ static void _call_cbs_hasFormat_c2025_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMimeData_Adaptor *)cls)->cbs_hasFormat_c2025_0 (arg1)); } @@ -944,8 +944,8 @@ static void _call_cbs_retrieveData_c3243_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - QMetaType arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + QMetaType arg2 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QMimeData_Adaptor *)cls)->cbs_retrieveData_c3243_0 (arg1, arg2)); } @@ -996,7 +996,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMimeData_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt6/QtCore/gsiDeclQObject.cc b/src/gsiqt/qt6/QtCore/gsiDeclQObject.cc index e36bd26da..31091ef51 100644 --- a/src/gsiqt/qt6/QtCore/gsiDeclQObject.cc +++ b/src/gsiqt/qt6/QtCore/gsiDeclQObject.cc @@ -1004,7 +1004,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QObject_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1028,7 +1028,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QObject_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1070,7 +1070,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QObject_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1094,7 +1094,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QObject_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1119,8 +1119,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QObject_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1225,7 +1225,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QObject_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt6/QtCore/gsiDeclQParallelAnimationGroup.cc b/src/gsiqt/qt6/QtCore/gsiDeclQParallelAnimationGroup.cc index ed08da72c..40f505c5a 100644 --- a/src/gsiqt/qt6/QtCore/gsiDeclQParallelAnimationGroup.cc +++ b/src/gsiqt/qt6/QtCore/gsiDeclQParallelAnimationGroup.cc @@ -394,7 +394,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QParallelAnimationGroup_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -436,7 +436,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QParallelAnimationGroup_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -496,7 +496,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QParallelAnimationGroup_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -539,7 +539,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QParallelAnimationGroup_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -564,8 +564,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QParallelAnimationGroup_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -705,7 +705,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QParallelAnimationGroup_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -729,7 +729,7 @@ static void _call_cbs_updateCurrentTime_767_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QParallelAnimationGroup_Adaptor *)cls)->cbs_updateCurrentTime_767_0 (arg1); } @@ -753,7 +753,7 @@ static void _call_cbs_updateDirection_3310_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QParallelAnimationGroup_Adaptor *)cls)->cbs_updateDirection_3310_0 (arg1); } @@ -779,8 +779,8 @@ static void _call_cbs_updateState_5680_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QParallelAnimationGroup_Adaptor *)cls)->cbs_updateState_5680_0 (arg1, arg2); } diff --git a/src/gsiqt/qt6/QtCore/gsiDeclQPauseAnimation.cc b/src/gsiqt/qt6/QtCore/gsiDeclQPauseAnimation.cc index 8a62475d8..33df27f48 100644 --- a/src/gsiqt/qt6/QtCore/gsiDeclQPauseAnimation.cc +++ b/src/gsiqt/qt6/QtCore/gsiDeclQPauseAnimation.cc @@ -447,7 +447,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPauseAnimation_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -489,7 +489,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPauseAnimation_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -549,7 +549,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPauseAnimation_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -592,7 +592,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPauseAnimation_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -617,8 +617,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPauseAnimation_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -758,7 +758,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPauseAnimation_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -782,7 +782,7 @@ static void _call_cbs_updateCurrentTime_767_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPauseAnimation_Adaptor *)cls)->cbs_updateCurrentTime_767_0 (arg1); } @@ -806,7 +806,7 @@ static void _call_cbs_updateDirection_3310_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPauseAnimation_Adaptor *)cls)->cbs_updateDirection_3310_0 (arg1); } @@ -832,8 +832,8 @@ static void _call_cbs_updateState_5680_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPauseAnimation_Adaptor *)cls)->cbs_updateState_5680_0 (arg1, arg2); } diff --git a/src/gsiqt/qt6/QtCore/gsiDeclQPluginLoader.cc b/src/gsiqt/qt6/QtCore/gsiDeclQPluginLoader.cc index 3277f3958..bd0571416 100644 --- a/src/gsiqt/qt6/QtCore/gsiDeclQPluginLoader.cc +++ b/src/gsiqt/qt6/QtCore/gsiDeclQPluginLoader.cc @@ -504,7 +504,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPluginLoader_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -528,7 +528,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPluginLoader_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -570,7 +570,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPluginLoader_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -594,7 +594,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPluginLoader_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -619,8 +619,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPluginLoader_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -725,7 +725,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPluginLoader_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt6/QtCore/gsiDeclQPropertyAnimation.cc b/src/gsiqt/qt6/QtCore/gsiDeclQPropertyAnimation.cc index b264428cc..088c84520 100644 --- a/src/gsiqt/qt6/QtCore/gsiDeclQPropertyAnimation.cc +++ b/src/gsiqt/qt6/QtCore/gsiDeclQPropertyAnimation.cc @@ -527,7 +527,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPropertyAnimation_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -569,7 +569,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPropertyAnimation_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -629,7 +629,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPropertyAnimation_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -672,7 +672,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPropertyAnimation_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -697,8 +697,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPropertyAnimation_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -739,9 +739,9 @@ static void _call_cbs_interpolated_c5093_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVariant &arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); - double arg3 = args.read (heap); + const QVariant &arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QPropertyAnimation_Adaptor *)cls)->cbs_interpolated_c5093_0 (arg1, arg2, arg3)); } @@ -867,7 +867,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPropertyAnimation_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -891,7 +891,7 @@ static void _call_cbs_updateCurrentTime_767_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPropertyAnimation_Adaptor *)cls)->cbs_updateCurrentTime_767_0 (arg1); } @@ -915,7 +915,7 @@ static void _call_cbs_updateCurrentValue_2119_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVariant &arg1 = args.read (heap); + const QVariant &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPropertyAnimation_Adaptor *)cls)->cbs_updateCurrentValue_2119_0 (arg1); } @@ -939,7 +939,7 @@ static void _call_cbs_updateDirection_3310_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPropertyAnimation_Adaptor *)cls)->cbs_updateDirection_3310_0 (arg1); } @@ -965,8 +965,8 @@ static void _call_cbs_updateState_5680_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPropertyAnimation_Adaptor *)cls)->cbs_updateState_5680_0 (arg1, arg2); } diff --git a/src/gsiqt/qt6/QtCore/gsiDeclQSaveFile.cc b/src/gsiqt/qt6/QtCore/gsiDeclQSaveFile.cc index 4d33b751d..de748d98b 100644 --- a/src/gsiqt/qt6/QtCore/gsiDeclQSaveFile.cc +++ b/src/gsiqt/qt6/QtCore/gsiDeclQSaveFile.cc @@ -950,7 +950,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSaveFile_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -974,7 +974,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSaveFile_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1016,7 +1016,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSaveFile_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1040,7 +1040,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSaveFile_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1065,8 +1065,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSaveFile_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1163,7 +1163,7 @@ static void _call_cbs_open_3621_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); ret.write ((bool)((QSaveFile_Adaptor *)cls)->cbs_open_3621_0 (arg1)); } @@ -1289,7 +1289,7 @@ static void _call_cbs_resize_986_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - qint64 arg1 = args.read (heap); + qint64 arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSaveFile_Adaptor *)cls)->cbs_resize_986_0 (arg1)); } @@ -1312,7 +1312,7 @@ static void _call_cbs_seek_986_0 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - qint64 arg1 = args.read (heap); + qint64 arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSaveFile_Adaptor *)cls)->cbs_seek_986_0 (arg1)); } @@ -1401,7 +1401,7 @@ static void _call_cbs_setPermissions_3370_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); ret.write ((bool)((QSaveFile_Adaptor *)cls)->cbs_setPermissions_3370_0 (arg1)); } @@ -1443,7 +1443,7 @@ static void _call_cbs_skipData_986_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - qint64 arg1 = args.read (heap); + qint64 arg1 = gsi::arg_reader() (args, heap); ret.write ((qint64)((QSaveFile_Adaptor *)cls)->cbs_skipData_986_0 (arg1)); } @@ -1466,7 +1466,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSaveFile_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -1490,7 +1490,7 @@ static void _call_cbs_waitForBytesWritten_767_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSaveFile_Adaptor *)cls)->cbs_waitForBytesWritten_767_0 (arg1)); } @@ -1513,7 +1513,7 @@ static void _call_cbs_waitForReadyRead_767_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSaveFile_Adaptor *)cls)->cbs_waitForReadyRead_767_0 (arg1)); } @@ -1538,8 +1538,8 @@ static void _call_cbs_writeData_2609_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - qint64 arg2 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + qint64 arg2 = gsi::arg_reader() (args, heap); ret.write ((qint64)((QSaveFile_Adaptor *)cls)->cbs_writeData_2609_0 (arg1, arg2)); } diff --git a/src/gsiqt/qt6/QtCore/gsiDeclQSequentialAnimationGroup.cc b/src/gsiqt/qt6/QtCore/gsiDeclQSequentialAnimationGroup.cc index 091daf34b..694849a56 100644 --- a/src/gsiqt/qt6/QtCore/gsiDeclQSequentialAnimationGroup.cc +++ b/src/gsiqt/qt6/QtCore/gsiDeclQSequentialAnimationGroup.cc @@ -461,7 +461,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSequentialAnimationGroup_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -521,7 +521,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSequentialAnimationGroup_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -581,7 +581,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSequentialAnimationGroup_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -624,7 +624,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSequentialAnimationGroup_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -649,8 +649,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSequentialAnimationGroup_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -790,7 +790,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSequentialAnimationGroup_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -814,7 +814,7 @@ static void _call_cbs_updateCurrentTime_767_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSequentialAnimationGroup_Adaptor *)cls)->cbs_updateCurrentTime_767_0 (arg1); } @@ -838,7 +838,7 @@ static void _call_cbs_updateDirection_3310_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSequentialAnimationGroup_Adaptor *)cls)->cbs_updateDirection_3310_0 (arg1); } @@ -864,8 +864,8 @@ static void _call_cbs_updateState_5680_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSequentialAnimationGroup_Adaptor *)cls)->cbs_updateState_5680_0 (arg1, arg2); } diff --git a/src/gsiqt/qt6/QtCore/gsiDeclQSettings.cc b/src/gsiqt/qt6/QtCore/gsiDeclQSettings.cc index 1b5b71c1b..3bc7dfa1b 100644 --- a/src/gsiqt/qt6/QtCore/gsiDeclQSettings.cc +++ b/src/gsiqt/qt6/QtCore/gsiDeclQSettings.cc @@ -1044,7 +1044,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSettings_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1068,7 +1068,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSettings_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1110,7 +1110,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSettings_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1134,7 +1134,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSettings_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1159,8 +1159,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSettings_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1265,7 +1265,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSettings_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt6/QtCore/gsiDeclQSharedMemory.cc b/src/gsiqt/qt6/QtCore/gsiDeclQSharedMemory.cc index 08c9005fe..3424eb442 100644 --- a/src/gsiqt/qt6/QtCore/gsiDeclQSharedMemory.cc +++ b/src/gsiqt/qt6/QtCore/gsiDeclQSharedMemory.cc @@ -594,7 +594,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSharedMemory_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -618,7 +618,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSharedMemory_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -660,7 +660,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSharedMemory_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -684,7 +684,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSharedMemory_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -709,8 +709,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSharedMemory_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -815,7 +815,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSharedMemory_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt6/QtCore/gsiDeclQSignalMapper.cc b/src/gsiqt/qt6/QtCore/gsiDeclQSignalMapper.cc index 9c59e2b05..e7a4448df 100644 --- a/src/gsiqt/qt6/QtCore/gsiDeclQSignalMapper.cc +++ b/src/gsiqt/qt6/QtCore/gsiDeclQSignalMapper.cc @@ -496,7 +496,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSignalMapper_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -520,7 +520,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSignalMapper_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -562,7 +562,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSignalMapper_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -586,7 +586,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSignalMapper_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -611,8 +611,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSignalMapper_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -771,7 +771,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSignalMapper_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt6/QtCore/gsiDeclQSocketNotifier.cc b/src/gsiqt/qt6/QtCore/gsiDeclQSocketNotifier.cc index cb5e67c02..716a37fcf 100644 --- a/src/gsiqt/qt6/QtCore/gsiDeclQSocketNotifier.cc +++ b/src/gsiqt/qt6/QtCore/gsiDeclQSocketNotifier.cc @@ -460,7 +460,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSocketNotifier_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -484,7 +484,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSocketNotifier_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -526,7 +526,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSocketNotifier_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -550,7 +550,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSocketNotifier_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -575,8 +575,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSocketNotifier_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -681,7 +681,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSocketNotifier_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt6/QtCore/gsiDeclQSortFilterProxyModel.cc b/src/gsiqt/qt6/QtCore/gsiDeclQSortFilterProxyModel.cc index 59c50896a..330fbf313 100644 --- a/src/gsiqt/qt6/QtCore/gsiDeclQSortFilterProxyModel.cc +++ b/src/gsiqt/qt6/QtCore/gsiDeclQSortFilterProxyModel.cc @@ -2744,7 +2744,7 @@ static void _call_cbs_buddy_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QSortFilterProxyModel_Adaptor *)cls)->cbs_buddy_c2395_0 (arg1)); } @@ -2775,11 +2775,11 @@ static void _call_cbs_canDropMimeData_c7425_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMimeData *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - const QModelIndex &arg5 = args.read (heap); + const QMimeData *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + const QModelIndex &arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSortFilterProxyModel_Adaptor *)cls)->cbs_canDropMimeData_c7425_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -2802,7 +2802,7 @@ static void _call_cbs_canFetchMore_c2395_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSortFilterProxyModel_Adaptor *)cls)->cbs_canFetchMore_c2395_0 (arg1)); } @@ -2869,7 +2869,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSortFilterProxyModel_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -2893,7 +2893,7 @@ static void _call_cbs_clearItemData_2395_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSortFilterProxyModel_Adaptor *)cls)->cbs_clearItemData_2395_0 (arg1)); } @@ -2916,7 +2916,7 @@ static void _call_cbs_columnCount_c2395_1 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((int)((QSortFilterProxyModel_Adaptor *)cls)->cbs_columnCount_c2395_1 (arg1)); } @@ -3167,7 +3167,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSortFilterProxyModel_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -3193,8 +3193,8 @@ static void _call_cbs_data_c3054_1 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::DisplayRole, heap); ret.write ((QVariant)((QSortFilterProxyModel_Adaptor *)cls)->cbs_data_c3054_1 (arg1, arg2)); } @@ -3286,7 +3286,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSortFilterProxyModel_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -3318,11 +3318,11 @@ static void _call_cbs_dropMimeData_7425_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMimeData *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - const QModelIndex &arg5 = args.read (heap); + const QMimeData *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + const QModelIndex &arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSortFilterProxyModel_Adaptor *)cls)->cbs_dropMimeData_7425_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -3490,7 +3490,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSortFilterProxyModel_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -3515,8 +3515,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSortFilterProxyModel_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -3539,7 +3539,7 @@ static void _call_cbs_fetchMore_2395_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSortFilterProxyModel_Adaptor *)cls)->cbs_fetchMore_2395_0 (arg1); } @@ -3565,8 +3565,8 @@ static void _call_cbs_filterAcceptsColumn_c3054_0 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSortFilterProxyModel_Adaptor *)cls)->cbs_filterAcceptsColumn_c3054_0 (arg1, arg2)); } @@ -3591,8 +3591,8 @@ static void _call_cbs_filterAcceptsRow_c3054_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSortFilterProxyModel_Adaptor *)cls)->cbs_filterAcceptsRow_c3054_0 (arg1, arg2)); } @@ -3651,7 +3651,7 @@ static void _call_cbs_flags_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QFlags)((QSortFilterProxyModel_Adaptor *)cls)->cbs_flags_c2395_0 (arg1)); } @@ -3674,7 +3674,7 @@ static void _call_cbs_hasChildren_c2395_1 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QSortFilterProxyModel_Adaptor *)cls)->cbs_hasChildren_c2395_1 (arg1)); } @@ -3701,9 +3701,9 @@ static void _call_cbs_headerData_c3231_1 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::DisplayRole, heap); ret.write ((QVariant)((QSortFilterProxyModel_Adaptor *)cls)->cbs_headerData_c3231_1 (arg1, arg2, arg3)); } @@ -3754,9 +3754,9 @@ static void _call_cbs_index_c3713_1 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((QModelIndex)((QSortFilterProxyModel_Adaptor *)cls)->cbs_index_c3713_1 (arg1, arg2, arg3)); } @@ -3783,9 +3783,9 @@ static void _call_cbs_insertColumns_3713_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QSortFilterProxyModel_Adaptor *)cls)->cbs_insertColumns_3713_1 (arg1, arg2, arg3)); } @@ -3812,9 +3812,9 @@ static void _call_cbs_insertRows_3713_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QSortFilterProxyModel_Adaptor *)cls)->cbs_insertRows_3713_1 (arg1, arg2, arg3)); } @@ -3900,7 +3900,7 @@ static void _call_cbs_itemData_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QMap)((QSortFilterProxyModel_Adaptor *)cls)->cbs_itemData_c2395_0 (arg1)); } @@ -3967,8 +3967,8 @@ static void _call_cbs_lessThan_c4682_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSortFilterProxyModel_Adaptor *)cls)->cbs_lessThan_c4682_0 (arg1, arg2)); } @@ -3991,7 +3991,7 @@ static void _call_cbs_mapFromSource_c2395_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QSortFilterProxyModel_Adaptor *)cls)->cbs_mapFromSource_c2395_0 (arg1)); } @@ -4014,7 +4014,7 @@ static void _call_cbs_mapSelectionFromSource_c2727_0 (const qt_gsi::GenericMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QItemSelection &arg1 = args.read (heap); + const QItemSelection &arg1 = gsi::arg_reader() (args, heap); ret.write ((QItemSelection)((QSortFilterProxyModel_Adaptor *)cls)->cbs_mapSelectionFromSource_c2727_0 (arg1)); } @@ -4037,7 +4037,7 @@ static void _call_cbs_mapSelectionToSource_c2727_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QItemSelection &arg1 = args.read (heap); + const QItemSelection &arg1 = gsi::arg_reader() (args, heap); ret.write ((QItemSelection)((QSortFilterProxyModel_Adaptor *)cls)->cbs_mapSelectionToSource_c2727_0 (arg1)); } @@ -4060,7 +4060,7 @@ static void _call_cbs_mapToSource_c2395_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QSortFilterProxyModel_Adaptor *)cls)->cbs_mapToSource_c2395_0 (arg1)); } @@ -4091,11 +4091,11 @@ static void _call_cbs_match_c7932_2 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - const QVariant &arg3 = args.read (heap); - int arg4 = args.read (heap); - QFlags arg5 = args.read > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QVariant &arg3 = gsi::arg_reader() (args, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (1, heap); + QFlags arg5 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (Qt::MatchFlags(Qt::MatchStartsWith|Qt::MatchWrap), heap); ret.write > ((QList)((QSortFilterProxyModel_Adaptor *)cls)->cbs_match_c7932_2 (arg1, arg2, arg3, arg4, arg5)); } @@ -4118,7 +4118,7 @@ static void _call_cbs_mimeData_c3010_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); ret.write ((QMimeData *)((QSortFilterProxyModel_Adaptor *)cls)->cbs_mimeData_c3010_0 (arg1)); } @@ -4196,11 +4196,11 @@ static void _call_cbs_moveColumns_6659_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - const QModelIndex &arg4 = args.read (heap); - int arg5 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QModelIndex &arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSortFilterProxyModel_Adaptor *)cls)->cbs_moveColumns_6659_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -4231,11 +4231,11 @@ static void _call_cbs_moveRows_6659_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - const QModelIndex &arg4 = args.read (heap); - int arg5 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QModelIndex &arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSortFilterProxyModel_Adaptor *)cls)->cbs_moveRows_6659_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -4260,8 +4260,8 @@ static void _call_cbs_multiData_c4483_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - QModelRoleDataSpan arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + QModelRoleDataSpan arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSortFilterProxyModel_Adaptor *)cls)->cbs_multiData_c4483_0 (arg1, arg2); } @@ -4303,7 +4303,7 @@ static void _call_cbs_parent_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QSortFilterProxyModel_Adaptor *)cls)->cbs_parent_c2395_0 (arg1)); } @@ -4380,9 +4380,9 @@ static void _call_cbs_removeColumns_3713_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QSortFilterProxyModel_Adaptor *)cls)->cbs_removeColumns_3713_1 (arg1, arg2, arg3)); } @@ -4409,9 +4409,9 @@ static void _call_cbs_removeRows_3713_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QSortFilterProxyModel_Adaptor *)cls)->cbs_removeRows_3713_1 (arg1, arg2, arg3)); } @@ -4493,7 +4493,7 @@ static void _call_cbs_rowCount_c2395_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((int)((QSortFilterProxyModel_Adaptor *)cls)->cbs_rowCount_c2395_1 (arg1)); } @@ -4704,9 +4704,9 @@ static void _call_cbs_setData_5065_1 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::EditRole, heap); ret.write ((bool)((QSortFilterProxyModel_Adaptor *)cls)->cbs_setData_5065_1 (arg1, arg2, arg3)); } @@ -4735,10 +4735,10 @@ static void _call_cbs_setHeaderData_5242_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - const QVariant &arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + const QVariant &arg3 = gsi::arg_reader() (args, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::EditRole, heap); ret.write ((bool)((QSortFilterProxyModel_Adaptor *)cls)->cbs_setHeaderData_5242_1 (arg1, arg2, arg3, arg4)); } @@ -4763,8 +4763,8 @@ static void _call_cbs_setItemData_5414_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QMap &arg2 = args.read & > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QMap &arg2 = gsi::arg_reader & >() (args, heap); ret.write ((bool)((QSortFilterProxyModel_Adaptor *)cls)->cbs_setItemData_5414_0 (arg1, arg2)); } @@ -4787,7 +4787,7 @@ static void _call_cbs_setSourceModel_2419_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractItemModel *arg1 = args.read (heap); + QAbstractItemModel *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSortFilterProxyModel_Adaptor *)cls)->cbs_setSourceModel_2419_0 (arg1); } @@ -4815,9 +4815,9 @@ static void _call_cbs_sibling_c3713_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QSortFilterProxyModel_Adaptor *)cls)->cbs_sibling_c3713_0 (arg1, arg2, arg3)); } @@ -4842,8 +4842,8 @@ static void _call_cbs_sort_2340_1 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::AscendingOrder), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSortFilterProxyModel_Adaptor *)cls)->cbs_sort_2340_1 (arg1, arg2); } @@ -4935,7 +4935,7 @@ static void _call_cbs_span_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QSize)((QSortFilterProxyModel_Adaptor *)cls)->cbs_span_c2395_0 (arg1)); } @@ -5015,7 +5015,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSortFilterProxyModel_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt6/QtCore/gsiDeclQStringListModel.cc b/src/gsiqt/qt6/QtCore/gsiDeclQStringListModel.cc index f8e1270e7..21722d06e 100644 --- a/src/gsiqt/qt6/QtCore/gsiDeclQStringListModel.cc +++ b/src/gsiqt/qt6/QtCore/gsiDeclQStringListModel.cc @@ -1656,7 +1656,7 @@ static void _call_cbs_buddy_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QStringListModel_Adaptor *)cls)->cbs_buddy_c2395_0 (arg1)); } @@ -1687,11 +1687,11 @@ static void _call_cbs_canDropMimeData_c7425_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMimeData *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - const QModelIndex &arg5 = args.read (heap); + const QMimeData *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + const QModelIndex &arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QStringListModel_Adaptor *)cls)->cbs_canDropMimeData_c7425_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -1714,7 +1714,7 @@ static void _call_cbs_canFetchMore_c2395_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QStringListModel_Adaptor *)cls)->cbs_canFetchMore_c2395_0 (arg1)); } @@ -1781,7 +1781,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStringListModel_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1805,7 +1805,7 @@ static void _call_cbs_clearItemData_2395_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QStringListModel_Adaptor *)cls)->cbs_clearItemData_2395_0 (arg1)); } @@ -2032,7 +2032,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStringListModel_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -2058,8 +2058,8 @@ static void _call_cbs_data_c3054_1 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::DisplayRole, heap); ret.write ((QVariant)((QStringListModel_Adaptor *)cls)->cbs_data_c3054_1 (arg1, arg2)); } @@ -2151,7 +2151,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStringListModel_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -2183,11 +2183,11 @@ static void _call_cbs_dropMimeData_7425_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMimeData *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - const QModelIndex &arg5 = args.read (heap); + const QMimeData *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + const QModelIndex &arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QStringListModel_Adaptor *)cls)->cbs_dropMimeData_7425_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -2337,7 +2337,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QStringListModel_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -2362,8 +2362,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QStringListModel_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -2386,7 +2386,7 @@ static void _call_cbs_fetchMore_2395_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStringListModel_Adaptor *)cls)->cbs_fetchMore_2395_0 (arg1); } @@ -2410,7 +2410,7 @@ static void _call_cbs_flags_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QFlags)((QStringListModel_Adaptor *)cls)->cbs_flags_c2395_0 (arg1)); } @@ -2437,9 +2437,9 @@ static void _call_cbs_headerData_c3231_1 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::DisplayRole, heap); ret.write ((QVariant)((QStringListModel_Adaptor *)cls)->cbs_headerData_c3231_1 (arg1, arg2, arg3)); } @@ -2490,9 +2490,9 @@ static void _call_cbs_index_c3713_2 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((QModelIndex)((QStringListModel_Adaptor *)cls)->cbs_index_c3713_2 (arg1, arg2, arg3)); } @@ -2519,9 +2519,9 @@ static void _call_cbs_insertColumns_3713_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QStringListModel_Adaptor *)cls)->cbs_insertColumns_3713_1 (arg1, arg2, arg3)); } @@ -2548,9 +2548,9 @@ static void _call_cbs_insertRows_3713_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QStringListModel_Adaptor *)cls)->cbs_insertRows_3713_1 (arg1, arg2, arg3)); } @@ -2591,7 +2591,7 @@ static void _call_cbs_itemData_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QMap)((QStringListModel_Adaptor *)cls)->cbs_itemData_c2395_0 (arg1)); } @@ -2664,11 +2664,11 @@ static void _call_cbs_match_c7932_2 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - const QVariant &arg3 = args.read (heap); - int arg4 = args.read (heap); - QFlags arg5 = args.read > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QVariant &arg3 = gsi::arg_reader() (args, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (1, heap); + QFlags arg5 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (Qt::MatchFlags(Qt::MatchStartsWith|Qt::MatchWrap), heap); ret.write > ((QList)((QStringListModel_Adaptor *)cls)->cbs_match_c7932_2 (arg1, arg2, arg3, arg4, arg5)); } @@ -2691,7 +2691,7 @@ static void _call_cbs_mimeData_c3010_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); ret.write ((QMimeData *)((QStringListModel_Adaptor *)cls)->cbs_mimeData_c3010_0 (arg1)); } @@ -2769,11 +2769,11 @@ static void _call_cbs_moveColumns_6659_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - const QModelIndex &arg4 = args.read (heap); - int arg5 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QModelIndex &arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QStringListModel_Adaptor *)cls)->cbs_moveColumns_6659_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -2804,11 +2804,11 @@ static void _call_cbs_moveRows_6659_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - const QModelIndex &arg4 = args.read (heap); - int arg5 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QModelIndex &arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QStringListModel_Adaptor *)cls)->cbs_moveRows_6659_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -2833,8 +2833,8 @@ static void _call_cbs_multiData_c4483_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - QModelRoleDataSpan arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + QModelRoleDataSpan arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStringListModel_Adaptor *)cls)->cbs_multiData_c4483_0 (arg1, arg2); } @@ -2912,9 +2912,9 @@ static void _call_cbs_removeColumns_3713_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QStringListModel_Adaptor *)cls)->cbs_removeColumns_3713_1 (arg1, arg2, arg3)); } @@ -2941,9 +2941,9 @@ static void _call_cbs_removeRows_3713_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QStringListModel_Adaptor *)cls)->cbs_removeRows_3713_1 (arg1, arg2, arg3)); } @@ -3025,7 +3025,7 @@ static void _call_cbs_rowCount_c2395_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((int)((QStringListModel_Adaptor *)cls)->cbs_rowCount_c2395_1 (arg1)); } @@ -3236,9 +3236,9 @@ static void _call_cbs_setData_5065_1 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::EditRole, heap); ret.write ((bool)((QStringListModel_Adaptor *)cls)->cbs_setData_5065_1 (arg1, arg2, arg3)); } @@ -3267,10 +3267,10 @@ static void _call_cbs_setHeaderData_5242_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - const QVariant &arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + const QVariant &arg3 = gsi::arg_reader() (args, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::EditRole, heap); ret.write ((bool)((QStringListModel_Adaptor *)cls)->cbs_setHeaderData_5242_1 (arg1, arg2, arg3, arg4)); } @@ -3295,8 +3295,8 @@ static void _call_cbs_setItemData_5414_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QMap &arg2 = args.read & > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QMap &arg2 = gsi::arg_reader & >() (args, heap); ret.write ((bool)((QStringListModel_Adaptor *)cls)->cbs_setItemData_5414_0 (arg1, arg2)); } @@ -3323,9 +3323,9 @@ static void _call_cbs_sibling_c3713_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QStringListModel_Adaptor *)cls)->cbs_sibling_c3713_0 (arg1, arg2, arg3)); } @@ -3350,8 +3350,8 @@ static void _call_cbs_sort_2340_1 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::AscendingOrder), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStringListModel_Adaptor *)cls)->cbs_sort_2340_1 (arg1, arg2); } @@ -3375,7 +3375,7 @@ static void _call_cbs_span_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QSize)((QStringListModel_Adaptor *)cls)->cbs_span_c2395_0 (arg1)); } @@ -3455,7 +3455,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStringListModel_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt6/QtCore/gsiDeclQThread.cc b/src/gsiqt/qt6/QtCore/gsiDeclQThread.cc index 5dd5ecdfd..adf015e02 100644 --- a/src/gsiqt/qt6/QtCore/gsiDeclQThread.cc +++ b/src/gsiqt/qt6/QtCore/gsiDeclQThread.cc @@ -775,7 +775,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QThread_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -799,7 +799,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QThread_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -841,7 +841,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QThread_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -865,7 +865,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QThread_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -890,8 +890,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QThread_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1077,7 +1077,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QThread_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt6/QtCore/gsiDeclQThreadPool.cc b/src/gsiqt/qt6/QtCore/gsiDeclQThreadPool.cc index 8b63b2523..50ffa42e4 100644 --- a/src/gsiqt/qt6/QtCore/gsiDeclQThreadPool.cc +++ b/src/gsiqt/qt6/QtCore/gsiDeclQThreadPool.cc @@ -620,7 +620,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QThreadPool_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -644,7 +644,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QThreadPool_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -686,7 +686,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QThreadPool_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -710,7 +710,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QThreadPool_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -735,8 +735,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QThreadPool_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -841,7 +841,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QThreadPool_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt6/QtCore/gsiDeclQTimeLine.cc b/src/gsiqt/qt6/QtCore/gsiDeclQTimeLine.cc index 853bc2a29..c19df90d2 100644 --- a/src/gsiqt/qt6/QtCore/gsiDeclQTimeLine.cc +++ b/src/gsiqt/qt6/QtCore/gsiDeclQTimeLine.cc @@ -838,7 +838,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeLine_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -862,7 +862,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeLine_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -904,7 +904,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeLine_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -928,7 +928,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTimeLine_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -953,8 +953,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTimeLine_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1109,7 +1109,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeLine_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -1151,7 +1151,7 @@ static void _call_cbs_valueForTime_c767_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((double)((QTimeLine_Adaptor *)cls)->cbs_valueForTime_c767_0 (arg1)); } diff --git a/src/gsiqt/qt6/QtCore/gsiDeclQTimer.cc b/src/gsiqt/qt6/QtCore/gsiDeclQTimer.cc index 88763bc6c..9b0bbef9c 100644 --- a/src/gsiqt/qt6/QtCore/gsiDeclQTimer.cc +++ b/src/gsiqt/qt6/QtCore/gsiDeclQTimer.cc @@ -505,7 +505,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimer_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -529,7 +529,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimer_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -571,7 +571,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimer_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -595,7 +595,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTimer_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -620,8 +620,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTimer_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -740,7 +740,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimer_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt6/QtCore/gsiDeclQTimerEvent.cc b/src/gsiqt/qt6/QtCore/gsiDeclQTimerEvent.cc index 2ceaa2f00..898c3d648 100644 --- a/src/gsiqt/qt6/QtCore/gsiDeclQTimerEvent.cc +++ b/src/gsiqt/qt6/QtCore/gsiDeclQTimerEvent.cc @@ -184,7 +184,7 @@ static void _call_cbs_setAccepted_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimerEvent_Adaptor *)cls)->cbs_setAccepted_864_0 (arg1); } diff --git a/src/gsiqt/qt6/QtCore/gsiDeclQTranslator.cc b/src/gsiqt/qt6/QtCore/gsiDeclQTranslator.cc index c62d52242..1b92a292c 100644 --- a/src/gsiqt/qt6/QtCore/gsiDeclQTranslator.cc +++ b/src/gsiqt/qt6/QtCore/gsiDeclQTranslator.cc @@ -481,7 +481,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTranslator_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -505,7 +505,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTranslator_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -547,7 +547,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTranslator_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -571,7 +571,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTranslator_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -596,8 +596,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTranslator_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -721,7 +721,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTranslator_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -751,10 +751,10 @@ static void _call_cbs_translate_c5636_2 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - const char *arg3 = args.read (heap); - int arg4 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + const char *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)((QTranslator_Adaptor *)cls)->cbs_translate_c5636_2 (arg1, arg2, arg3, arg4)); } diff --git a/src/gsiqt/qt6/QtCore/gsiDeclQTransposeProxyModel.cc b/src/gsiqt/qt6/QtCore/gsiDeclQTransposeProxyModel.cc index 55f56a936..18899869c 100644 --- a/src/gsiqt/qt6/QtCore/gsiDeclQTransposeProxyModel.cc +++ b/src/gsiqt/qt6/QtCore/gsiDeclQTransposeProxyModel.cc @@ -1883,7 +1883,7 @@ static void _call_cbs_buddy_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QTransposeProxyModel_Adaptor *)cls)->cbs_buddy_c2395_0 (arg1)); } @@ -1914,11 +1914,11 @@ static void _call_cbs_canDropMimeData_c7425_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMimeData *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - const QModelIndex &arg5 = args.read (heap); + const QMimeData *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + const QModelIndex &arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTransposeProxyModel_Adaptor *)cls)->cbs_canDropMimeData_c7425_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -1941,7 +1941,7 @@ static void _call_cbs_canFetchMore_c2395_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTransposeProxyModel_Adaptor *)cls)->cbs_canFetchMore_c2395_0 (arg1)); } @@ -2008,7 +2008,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTransposeProxyModel_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -2032,7 +2032,7 @@ static void _call_cbs_clearItemData_2395_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTransposeProxyModel_Adaptor *)cls)->cbs_clearItemData_2395_0 (arg1)); } @@ -2055,7 +2055,7 @@ static void _call_cbs_columnCount_c2395_1 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((int)((QTransposeProxyModel_Adaptor *)cls)->cbs_columnCount_c2395_1 (arg1)); } @@ -2306,7 +2306,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTransposeProxyModel_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -2332,8 +2332,8 @@ static void _call_cbs_data_c3054_1 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::DisplayRole, heap); ret.write ((QVariant)((QTransposeProxyModel_Adaptor *)cls)->cbs_data_c3054_1 (arg1, arg2)); } @@ -2425,7 +2425,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTransposeProxyModel_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -2457,11 +2457,11 @@ static void _call_cbs_dropMimeData_7425_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMimeData *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - const QModelIndex &arg5 = args.read (heap); + const QMimeData *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + const QModelIndex &arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTransposeProxyModel_Adaptor *)cls)->cbs_dropMimeData_7425_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -2611,7 +2611,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTransposeProxyModel_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -2636,8 +2636,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTransposeProxyModel_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -2660,7 +2660,7 @@ static void _call_cbs_fetchMore_2395_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTransposeProxyModel_Adaptor *)cls)->cbs_fetchMore_2395_0 (arg1); } @@ -2684,7 +2684,7 @@ static void _call_cbs_flags_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QFlags)((QTransposeProxyModel_Adaptor *)cls)->cbs_flags_c2395_0 (arg1)); } @@ -2707,7 +2707,7 @@ static void _call_cbs_hasChildren_c2395_1 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QTransposeProxyModel_Adaptor *)cls)->cbs_hasChildren_c2395_1 (arg1)); } @@ -2734,9 +2734,9 @@ static void _call_cbs_headerData_c3231_1 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::DisplayRole, heap); ret.write ((QVariant)((QTransposeProxyModel_Adaptor *)cls)->cbs_headerData_c3231_1 (arg1, arg2, arg3)); } @@ -2787,9 +2787,9 @@ static void _call_cbs_index_c3713_1 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((QModelIndex)((QTransposeProxyModel_Adaptor *)cls)->cbs_index_c3713_1 (arg1, arg2, arg3)); } @@ -2816,9 +2816,9 @@ static void _call_cbs_insertColumns_3713_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QTransposeProxyModel_Adaptor *)cls)->cbs_insertColumns_3713_1 (arg1, arg2, arg3)); } @@ -2845,9 +2845,9 @@ static void _call_cbs_insertRows_3713_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QTransposeProxyModel_Adaptor *)cls)->cbs_insertRows_3713_1 (arg1, arg2, arg3)); } @@ -2888,7 +2888,7 @@ static void _call_cbs_itemData_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QMap)((QTransposeProxyModel_Adaptor *)cls)->cbs_itemData_c2395_0 (arg1)); } @@ -2953,7 +2953,7 @@ static void _call_cbs_mapFromSource_c2395_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QTransposeProxyModel_Adaptor *)cls)->cbs_mapFromSource_c2395_0 (arg1)); } @@ -2976,7 +2976,7 @@ static void _call_cbs_mapSelectionFromSource_c2727_0 (const qt_gsi::GenericMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QItemSelection &arg1 = args.read (heap); + const QItemSelection &arg1 = gsi::arg_reader() (args, heap); ret.write ((QItemSelection)((QTransposeProxyModel_Adaptor *)cls)->cbs_mapSelectionFromSource_c2727_0 (arg1)); } @@ -2999,7 +2999,7 @@ static void _call_cbs_mapSelectionToSource_c2727_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QItemSelection &arg1 = args.read (heap); + const QItemSelection &arg1 = gsi::arg_reader() (args, heap); ret.write ((QItemSelection)((QTransposeProxyModel_Adaptor *)cls)->cbs_mapSelectionToSource_c2727_0 (arg1)); } @@ -3022,7 +3022,7 @@ static void _call_cbs_mapToSource_c2395_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QTransposeProxyModel_Adaptor *)cls)->cbs_mapToSource_c2395_0 (arg1)); } @@ -3053,11 +3053,11 @@ static void _call_cbs_match_c7932_2 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - const QVariant &arg3 = args.read (heap); - int arg4 = args.read (heap); - QFlags arg5 = args.read > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QVariant &arg3 = gsi::arg_reader() (args, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (1, heap); + QFlags arg5 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (Qt::MatchFlags(Qt::MatchStartsWith|Qt::MatchWrap), heap); ret.write > ((QList)((QTransposeProxyModel_Adaptor *)cls)->cbs_match_c7932_2 (arg1, arg2, arg3, arg4, arg5)); } @@ -3080,7 +3080,7 @@ static void _call_cbs_mimeData_c3010_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); ret.write ((QMimeData *)((QTransposeProxyModel_Adaptor *)cls)->cbs_mimeData_c3010_0 (arg1)); } @@ -3158,11 +3158,11 @@ static void _call_cbs_moveColumns_6659_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - const QModelIndex &arg4 = args.read (heap); - int arg5 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QModelIndex &arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTransposeProxyModel_Adaptor *)cls)->cbs_moveColumns_6659_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -3193,11 +3193,11 @@ static void _call_cbs_moveRows_6659_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - const QModelIndex &arg4 = args.read (heap); - int arg5 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QModelIndex &arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTransposeProxyModel_Adaptor *)cls)->cbs_moveRows_6659_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -3222,8 +3222,8 @@ static void _call_cbs_multiData_c4483_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - QModelRoleDataSpan arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + QModelRoleDataSpan arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTransposeProxyModel_Adaptor *)cls)->cbs_multiData_c4483_0 (arg1, arg2); } @@ -3265,7 +3265,7 @@ static void _call_cbs_parent_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QTransposeProxyModel_Adaptor *)cls)->cbs_parent_c2395_0 (arg1)); } @@ -3324,9 +3324,9 @@ static void _call_cbs_removeColumns_3713_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QTransposeProxyModel_Adaptor *)cls)->cbs_removeColumns_3713_1 (arg1, arg2, arg3)); } @@ -3353,9 +3353,9 @@ static void _call_cbs_removeRows_3713_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QTransposeProxyModel_Adaptor *)cls)->cbs_removeRows_3713_1 (arg1, arg2, arg3)); } @@ -3437,7 +3437,7 @@ static void _call_cbs_rowCount_c2395_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((int)((QTransposeProxyModel_Adaptor *)cls)->cbs_rowCount_c2395_1 (arg1)); } @@ -3648,9 +3648,9 @@ static void _call_cbs_setData_5065_1 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::EditRole, heap); ret.write ((bool)((QTransposeProxyModel_Adaptor *)cls)->cbs_setData_5065_1 (arg1, arg2, arg3)); } @@ -3679,10 +3679,10 @@ static void _call_cbs_setHeaderData_5242_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - const QVariant &arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + const QVariant &arg3 = gsi::arg_reader() (args, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::EditRole, heap); ret.write ((bool)((QTransposeProxyModel_Adaptor *)cls)->cbs_setHeaderData_5242_1 (arg1, arg2, arg3, arg4)); } @@ -3707,8 +3707,8 @@ static void _call_cbs_setItemData_5414_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QMap &arg2 = args.read & > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QMap &arg2 = gsi::arg_reader & >() (args, heap); ret.write ((bool)((QTransposeProxyModel_Adaptor *)cls)->cbs_setItemData_5414_0 (arg1, arg2)); } @@ -3731,7 +3731,7 @@ static void _call_cbs_setSourceModel_2419_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractItemModel *arg1 = args.read (heap); + QAbstractItemModel *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTransposeProxyModel_Adaptor *)cls)->cbs_setSourceModel_2419_0 (arg1); } @@ -3759,9 +3759,9 @@ static void _call_cbs_sibling_c3713_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QTransposeProxyModel_Adaptor *)cls)->cbs_sibling_c3713_0 (arg1, arg2, arg3)); } @@ -3786,8 +3786,8 @@ static void _call_cbs_sort_2340_1 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::AscendingOrder), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTransposeProxyModel_Adaptor *)cls)->cbs_sort_2340_1 (arg1, arg2); } @@ -3825,7 +3825,7 @@ static void _call_cbs_span_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QSize)((QTransposeProxyModel_Adaptor *)cls)->cbs_span_c2395_0 (arg1)); } @@ -3905,7 +3905,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTransposeProxyModel_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt6/QtCore/gsiDeclQVariantAnimation.cc b/src/gsiqt/qt6/QtCore/gsiDeclQVariantAnimation.cc index cd52b7b2d..030ab7679 100644 --- a/src/gsiqt/qt6/QtCore/gsiDeclQVariantAnimation.cc +++ b/src/gsiqt/qt6/QtCore/gsiDeclQVariantAnimation.cc @@ -662,7 +662,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVariantAnimation_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -704,7 +704,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVariantAnimation_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -764,7 +764,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVariantAnimation_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -807,7 +807,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QVariantAnimation_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -832,8 +832,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QVariantAnimation_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -874,9 +874,9 @@ static void _call_cbs_interpolated_c5093_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVariant &arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); - double arg3 = args.read (heap); + const QVariant &arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QVariantAnimation_Adaptor *)cls)->cbs_interpolated_c5093_0 (arg1, arg2, arg3)); } @@ -1002,7 +1002,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVariantAnimation_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -1026,7 +1026,7 @@ static void _call_cbs_updateCurrentTime_767_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVariantAnimation_Adaptor *)cls)->cbs_updateCurrentTime_767_0 (arg1); } @@ -1050,7 +1050,7 @@ static void _call_cbs_updateCurrentValue_2119_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVariant &arg1 = args.read (heap); + const QVariant &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVariantAnimation_Adaptor *)cls)->cbs_updateCurrentValue_2119_0 (arg1); } @@ -1074,7 +1074,7 @@ static void _call_cbs_updateDirection_3310_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVariantAnimation_Adaptor *)cls)->cbs_updateDirection_3310_0 (arg1); } @@ -1100,8 +1100,8 @@ static void _call_cbs_updateState_5680_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVariantAnimation_Adaptor *)cls)->cbs_updateState_5680_0 (arg1, arg2); } diff --git a/src/gsiqt/qt6/QtCore/gsiDeclQXmlStreamEntityResolver.cc b/src/gsiqt/qt6/QtCore/gsiDeclQXmlStreamEntityResolver.cc index 3b4f57c3f..754dd9d78 100644 --- a/src/gsiqt/qt6/QtCore/gsiDeclQXmlStreamEntityResolver.cc +++ b/src/gsiqt/qt6/QtCore/gsiDeclQXmlStreamEntityResolver.cc @@ -172,8 +172,8 @@ static void _call_cbs_resolveEntity_3942_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((QString)((QXmlStreamEntityResolver_Adaptor *)cls)->cbs_resolveEntity_3942_0 (arg1, arg2)); } @@ -196,7 +196,7 @@ static void _call_cbs_resolveUndeclaredEntity_2025_0 (const qt_gsi::GenericMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QXmlStreamEntityResolver_Adaptor *)cls)->cbs_resolveUndeclaredEntity_2025_0 (arg1)); } diff --git a/src/gsiqt/qt6/QtCore5Compat/gsiDeclQTextCodec.cc b/src/gsiqt/qt6/QtCore5Compat/gsiDeclQTextCodec.cc index 38452a07f..e734cf70e 100644 --- a/src/gsiqt/qt6/QtCore5Compat/gsiDeclQTextCodec.cc +++ b/src/gsiqt/qt6/QtCore5Compat/gsiDeclQTextCodec.cc @@ -613,9 +613,9 @@ static void _call_cbs_convertFromUnicode_c5514_0 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type * arg1 = args.read::target_type * > (heap); - int arg2 = args.read (heap); - QTextCodec::ConverterState *arg3 = args.read (heap); + const qt_gsi::Converter::target_type * arg1 = gsi::arg_reader::target_type * >() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + QTextCodec::ConverterState *arg3 = gsi::arg_reader() (args, heap); ret.write ((QByteArray)((QTextCodec_Adaptor *)cls)->cbs_convertFromUnicode_c5514_0 (arg1, arg2, arg3)); } @@ -642,9 +642,9 @@ static void _call_cbs_convertToUnicode_c5465_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - int arg2 = args.read (heap); - QTextCodec::ConverterState *arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + QTextCodec::ConverterState *arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)((QTextCodec_Adaptor *)cls)->cbs_convertToUnicode_c5465_0 (arg1, arg2, arg3)); } diff --git a/src/gsiqt/qt6/QtCore5Compat/gsiDeclQXmlContentHandler.cc b/src/gsiqt/qt6/QtCore5Compat/gsiDeclQXmlContentHandler.cc index ea9d12e59..923920cdb 100644 --- a/src/gsiqt/qt6/QtCore5Compat/gsiDeclQXmlContentHandler.cc +++ b/src/gsiqt/qt6/QtCore5Compat/gsiDeclQXmlContentHandler.cc @@ -555,7 +555,7 @@ static void _call_cbs_characters_2025_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlContentHandler_Adaptor *)cls)->cbs_characters_2025_0 (arg1)); } @@ -601,9 +601,9 @@ static void _call_cbs_endElement_5859_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QString &arg3 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlContentHandler_Adaptor *)cls)->cbs_endElement_5859_0 (arg1, arg2, arg3)); } @@ -626,7 +626,7 @@ static void _call_cbs_endPrefixMapping_2025_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlContentHandler_Adaptor *)cls)->cbs_endPrefixMapping_2025_0 (arg1)); } @@ -668,7 +668,7 @@ static void _call_cbs_ignorableWhitespace_2025_0 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlContentHandler_Adaptor *)cls)->cbs_ignorableWhitespace_2025_0 (arg1)); } @@ -693,8 +693,8 @@ static void _call_cbs_processingInstruction_3942_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlContentHandler_Adaptor *)cls)->cbs_processingInstruction_3942_0 (arg1, arg2)); } @@ -717,7 +717,7 @@ static void _call_cbs_setDocumentLocator_1732_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QXmlLocator *arg1 = args.read (heap); + QXmlLocator *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlContentHandler_Adaptor *)cls)->cbs_setDocumentLocator_1732_0 (arg1); } @@ -741,7 +741,7 @@ static void _call_cbs_skippedEntity_2025_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlContentHandler_Adaptor *)cls)->cbs_skippedEntity_2025_0 (arg1)); } @@ -789,10 +789,10 @@ static void _call_cbs_startElement_8513_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QString &arg3 = args.read (heap); - const QXmlAttributes &arg4 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); + const QXmlAttributes &arg4 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlContentHandler_Adaptor *)cls)->cbs_startElement_8513_0 (arg1, arg2, arg3, arg4)); } @@ -817,8 +817,8 @@ static void _call_cbs_startPrefixMapping_3942_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlContentHandler_Adaptor *)cls)->cbs_startPrefixMapping_3942_0 (arg1, arg2)); } diff --git a/src/gsiqt/qt6/QtCore5Compat/gsiDeclQXmlDTDHandler.cc b/src/gsiqt/qt6/QtCore5Compat/gsiDeclQXmlDTDHandler.cc index c757332d8..b50ad794f 100644 --- a/src/gsiqt/qt6/QtCore5Compat/gsiDeclQXmlDTDHandler.cc +++ b/src/gsiqt/qt6/QtCore5Compat/gsiDeclQXmlDTDHandler.cc @@ -244,9 +244,9 @@ static void _call_cbs_notationDecl_5859_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QString &arg3 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlDTDHandler_Adaptor *)cls)->cbs_notationDecl_5859_0 (arg1, arg2, arg3)); } @@ -275,10 +275,10 @@ static void _call_cbs_unparsedEntityDecl_7776_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QString &arg3 = args.read (heap); - const QString &arg4 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); + const QString &arg4 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlDTDHandler_Adaptor *)cls)->cbs_unparsedEntityDecl_7776_0 (arg1, arg2, arg3, arg4)); } diff --git a/src/gsiqt/qt6/QtCore5Compat/gsiDeclQXmlDeclHandler.cc b/src/gsiqt/qt6/QtCore5Compat/gsiDeclQXmlDeclHandler.cc index 8850eb28d..706b26943 100644 --- a/src/gsiqt/qt6/QtCore5Compat/gsiDeclQXmlDeclHandler.cc +++ b/src/gsiqt/qt6/QtCore5Compat/gsiDeclQXmlDeclHandler.cc @@ -274,11 +274,11 @@ static void _call_cbs_attributeDecl_9693_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QString &arg3 = args.read (heap); - const QString &arg4 = args.read (heap); - const QString &arg5 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); + const QString &arg4 = gsi::arg_reader() (args, heap); + const QString &arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlDeclHandler_Adaptor *)cls)->cbs_attributeDecl_9693_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -324,9 +324,9 @@ static void _call_cbs_externalEntityDecl_5859_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QString &arg3 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlDeclHandler_Adaptor *)cls)->cbs_externalEntityDecl_5859_0 (arg1, arg2, arg3)); } @@ -351,8 +351,8 @@ static void _call_cbs_internalEntityDecl_3942_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlDeclHandler_Adaptor *)cls)->cbs_internalEntityDecl_3942_0 (arg1, arg2)); } diff --git a/src/gsiqt/qt6/QtCore5Compat/gsiDeclQXmlDefaultHandler.cc b/src/gsiqt/qt6/QtCore5Compat/gsiDeclQXmlDefaultHandler.cc index e48a870c4..fe03dd1c5 100644 --- a/src/gsiqt/qt6/QtCore5Compat/gsiDeclQXmlDefaultHandler.cc +++ b/src/gsiqt/qt6/QtCore5Compat/gsiDeclQXmlDefaultHandler.cc @@ -1279,11 +1279,11 @@ static void _call_cbs_attributeDecl_9693_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QString &arg3 = args.read (heap); - const QString &arg4 = args.read (heap); - const QString &arg5 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); + const QString &arg4 = gsi::arg_reader() (args, heap); + const QString &arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlDefaultHandler_Adaptor *)cls)->cbs_attributeDecl_9693_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -1306,7 +1306,7 @@ static void _call_cbs_characters_2025_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlDefaultHandler_Adaptor *)cls)->cbs_characters_2025_0 (arg1)); } @@ -1329,7 +1329,7 @@ static void _call_cbs_comment_2025_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlDefaultHandler_Adaptor *)cls)->cbs_comment_2025_0 (arg1)); } @@ -1413,9 +1413,9 @@ static void _call_cbs_endElement_5859_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QString &arg3 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlDefaultHandler_Adaptor *)cls)->cbs_endElement_5859_0 (arg1, arg2, arg3)); } @@ -1438,7 +1438,7 @@ static void _call_cbs_endEntity_2025_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlDefaultHandler_Adaptor *)cls)->cbs_endEntity_2025_0 (arg1)); } @@ -1461,7 +1461,7 @@ static void _call_cbs_endPrefixMapping_2025_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlDefaultHandler_Adaptor *)cls)->cbs_endPrefixMapping_2025_0 (arg1)); } @@ -1484,7 +1484,7 @@ static void _call_cbs_error_3149_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlParseException &arg1 = args.read (heap); + const QXmlParseException &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlDefaultHandler_Adaptor *)cls)->cbs_error_3149_0 (arg1)); } @@ -1530,9 +1530,9 @@ static void _call_cbs_externalEntityDecl_5859_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QString &arg3 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlDefaultHandler_Adaptor *)cls)->cbs_externalEntityDecl_5859_0 (arg1, arg2, arg3)); } @@ -1555,7 +1555,7 @@ static void _call_cbs_fatalError_3149_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlParseException &arg1 = args.read (heap); + const QXmlParseException &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlDefaultHandler_Adaptor *)cls)->cbs_fatalError_3149_0 (arg1)); } @@ -1578,7 +1578,7 @@ static void _call_cbs_ignorableWhitespace_2025_0 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlDefaultHandler_Adaptor *)cls)->cbs_ignorableWhitespace_2025_0 (arg1)); } @@ -1603,8 +1603,8 @@ static void _call_cbs_internalEntityDecl_3942_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlDefaultHandler_Adaptor *)cls)->cbs_internalEntityDecl_3942_0 (arg1, arg2)); } @@ -1631,9 +1631,9 @@ static void _call_cbs_notationDecl_5859_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QString &arg3 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlDefaultHandler_Adaptor *)cls)->cbs_notationDecl_5859_0 (arg1, arg2, arg3)); } @@ -1658,8 +1658,8 @@ static void _call_cbs_processingInstruction_3942_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlDefaultHandler_Adaptor *)cls)->cbs_processingInstruction_3942_0 (arg1, arg2)); } @@ -1682,7 +1682,7 @@ static void _call_cbs_setDocumentLocator_1732_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QXmlLocator *arg1 = args.read (heap); + QXmlLocator *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlDefaultHandler_Adaptor *)cls)->cbs_setDocumentLocator_1732_0 (arg1); } @@ -1706,7 +1706,7 @@ static void _call_cbs_skippedEntity_2025_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlDefaultHandler_Adaptor *)cls)->cbs_skippedEntity_2025_0 (arg1)); } @@ -1752,9 +1752,9 @@ static void _call_cbs_startDTD_5859_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QString &arg3 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlDefaultHandler_Adaptor *)cls)->cbs_startDTD_5859_0 (arg1, arg2, arg3)); } @@ -1802,10 +1802,10 @@ static void _call_cbs_startElement_8513_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QString &arg3 = args.read (heap); - const QXmlAttributes &arg4 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); + const QXmlAttributes &arg4 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlDefaultHandler_Adaptor *)cls)->cbs_startElement_8513_0 (arg1, arg2, arg3, arg4)); } @@ -1828,7 +1828,7 @@ static void _call_cbs_startEntity_2025_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlDefaultHandler_Adaptor *)cls)->cbs_startEntity_2025_0 (arg1)); } @@ -1853,8 +1853,8 @@ static void _call_cbs_startPrefixMapping_3942_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlDefaultHandler_Adaptor *)cls)->cbs_startPrefixMapping_3942_0 (arg1, arg2)); } @@ -1883,10 +1883,10 @@ static void _call_cbs_unparsedEntityDecl_7776_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QString &arg3 = args.read (heap); - const QString &arg4 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); + const QString &arg4 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlDefaultHandler_Adaptor *)cls)->cbs_unparsedEntityDecl_7776_0 (arg1, arg2, arg3, arg4)); } @@ -1909,7 +1909,7 @@ static void _call_cbs_warning_3149_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlParseException &arg1 = args.read (heap); + const QXmlParseException &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlDefaultHandler_Adaptor *)cls)->cbs_warning_3149_0 (arg1)); } diff --git a/src/gsiqt/qt6/QtCore5Compat/gsiDeclQXmlErrorHandler.cc b/src/gsiqt/qt6/QtCore5Compat/gsiDeclQXmlErrorHandler.cc index 1c2d8c351..bc32d0585 100644 --- a/src/gsiqt/qt6/QtCore5Compat/gsiDeclQXmlErrorHandler.cc +++ b/src/gsiqt/qt6/QtCore5Compat/gsiDeclQXmlErrorHandler.cc @@ -239,7 +239,7 @@ static void _call_cbs_error_3149_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlParseException &arg1 = args.read (heap); + const QXmlParseException &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlErrorHandler_Adaptor *)cls)->cbs_error_3149_0 (arg1)); } @@ -281,7 +281,7 @@ static void _call_cbs_fatalError_3149_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlParseException &arg1 = args.read (heap); + const QXmlParseException &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlErrorHandler_Adaptor *)cls)->cbs_fatalError_3149_0 (arg1)); } @@ -304,7 +304,7 @@ static void _call_cbs_warning_3149_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlParseException &arg1 = args.read (heap); + const QXmlParseException &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlErrorHandler_Adaptor *)cls)->cbs_warning_3149_0 (arg1)); } diff --git a/src/gsiqt/qt6/QtCore5Compat/gsiDeclQXmlInputSource.cc b/src/gsiqt/qt6/QtCore5Compat/gsiDeclQXmlInputSource.cc index e63cc733d..360175ae0 100644 --- a/src/gsiqt/qt6/QtCore5Compat/gsiDeclQXmlInputSource.cc +++ b/src/gsiqt/qt6/QtCore5Compat/gsiDeclQXmlInputSource.cc @@ -344,8 +344,8 @@ static void _call_cbs_fromRawData_3065_1 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - bool arg2 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (false, heap); ret.write ((QString)((QXmlInputSource_Adaptor *)cls)->cbs_fromRawData_3065_1 (arg1, arg2)); } @@ -407,7 +407,7 @@ static void _call_cbs_setData_2025_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlInputSource_Adaptor *)cls)->cbs_setData_2025_0 (arg1); } diff --git a/src/gsiqt/qt6/QtCore5Compat/gsiDeclQXmlLexicalHandler.cc b/src/gsiqt/qt6/QtCore5Compat/gsiDeclQXmlLexicalHandler.cc index 2fceb44cb..9eaf9ea81 100644 --- a/src/gsiqt/qt6/QtCore5Compat/gsiDeclQXmlLexicalHandler.cc +++ b/src/gsiqt/qt6/QtCore5Compat/gsiDeclQXmlLexicalHandler.cc @@ -379,7 +379,7 @@ static void _call_cbs_comment_2025_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlLexicalHandler_Adaptor *)cls)->cbs_comment_2025_0 (arg1)); } @@ -440,7 +440,7 @@ static void _call_cbs_endEntity_2025_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlLexicalHandler_Adaptor *)cls)->cbs_endEntity_2025_0 (arg1)); } @@ -505,9 +505,9 @@ static void _call_cbs_startDTD_5859_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QString &arg3 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlLexicalHandler_Adaptor *)cls)->cbs_startDTD_5859_0 (arg1, arg2, arg3)); } @@ -530,7 +530,7 @@ static void _call_cbs_startEntity_2025_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlLexicalHandler_Adaptor *)cls)->cbs_startEntity_2025_0 (arg1)); } diff --git a/src/gsiqt/qt6/QtCore5Compat/gsiDeclQXmlSimpleReader.cc b/src/gsiqt/qt6/QtCore5Compat/gsiDeclQXmlSimpleReader.cc index 701a967a7..810567e36 100644 --- a/src/gsiqt/qt6/QtCore5Compat/gsiDeclQXmlSimpleReader.cc +++ b/src/gsiqt/qt6/QtCore5Compat/gsiDeclQXmlSimpleReader.cc @@ -952,8 +952,8 @@ static void _call_cbs_feature_c2967_1 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - bool *arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + bool *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); ret.write ((bool)((QXmlSimpleReader_Adaptor *)cls)->cbs_feature_c2967_1 (arg1, arg2)); } @@ -976,7 +976,7 @@ static void _call_cbs_hasFeature_c2025_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlSimpleReader_Adaptor *)cls)->cbs_hasFeature_c2025_0 (arg1)); } @@ -999,7 +999,7 @@ static void _call_cbs_hasProperty_c2025_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlSimpleReader_Adaptor *)cls)->cbs_hasProperty_c2025_0 (arg1)); } @@ -1041,7 +1041,7 @@ static void _call_cbs_parse_2856_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlInputSource *arg1 = args.read (heap); + const QXmlInputSource *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlSimpleReader_Adaptor *)cls)->cbs_parse_2856_0 (arg1)); } @@ -1066,8 +1066,8 @@ static void _call_cbs_parse_3612_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlInputSource *arg1 = args.read (heap); - bool arg2 = args.read (heap); + const QXmlInputSource *arg1 = gsi::arg_reader() (args, heap); + bool arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlSimpleReader_Adaptor *)cls)->cbs_parse_3612_0 (arg1, arg2)); } @@ -1111,8 +1111,8 @@ static void _call_cbs_property_c2967_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - bool *arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + bool *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); ret.write ((void *)((QXmlSimpleReader_Adaptor *)cls)->cbs_property_c2967_1 (arg1, arg2)); } @@ -1135,7 +1135,7 @@ static void _call_cbs_setContentHandler_2441_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QXmlContentHandler *arg1 = args.read (heap); + QXmlContentHandler *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlSimpleReader_Adaptor *)cls)->cbs_setContentHandler_2441_0 (arg1); } @@ -1159,7 +1159,7 @@ static void _call_cbs_setDTDHandler_1930_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QXmlDTDHandler *arg1 = args.read (heap); + QXmlDTDHandler *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlSimpleReader_Adaptor *)cls)->cbs_setDTDHandler_1930_0 (arg1); } @@ -1183,7 +1183,7 @@ static void _call_cbs_setDeclHandler_2086_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QXmlDeclHandler *arg1 = args.read (heap); + QXmlDeclHandler *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlSimpleReader_Adaptor *)cls)->cbs_setDeclHandler_2086_0 (arg1); } @@ -1207,7 +1207,7 @@ static void _call_cbs_setEntityResolver_2495_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QXmlEntityResolver *arg1 = args.read (heap); + QXmlEntityResolver *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlSimpleReader_Adaptor *)cls)->cbs_setEntityResolver_2495_0 (arg1); } @@ -1231,7 +1231,7 @@ static void _call_cbs_setErrorHandler_2232_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QXmlErrorHandler *arg1 = args.read (heap); + QXmlErrorHandler *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlSimpleReader_Adaptor *)cls)->cbs_setErrorHandler_2232_0 (arg1); } @@ -1257,8 +1257,8 @@ static void _call_cbs_setFeature_2781_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - bool arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + bool arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlSimpleReader_Adaptor *)cls)->cbs_setFeature_2781_0 (arg1, arg2); } @@ -1282,7 +1282,7 @@ static void _call_cbs_setLexicalHandler_2416_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QXmlLexicalHandler *arg1 = args.read (heap); + QXmlLexicalHandler *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlSimpleReader_Adaptor *)cls)->cbs_setLexicalHandler_2416_0 (arg1); } @@ -1308,8 +1308,8 @@ static void _call_cbs_setProperty_2973_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - void *arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlSimpleReader_Adaptor *)cls)->cbs_setProperty_2973_0 (arg1, arg2); } diff --git a/src/gsiqt/qt6/QtGui/gsiDeclQAbstractFileIconProvider.cc b/src/gsiqt/qt6/QtGui/gsiDeclQAbstractFileIconProvider.cc index a812a082e..67aed7dcd 100644 --- a/src/gsiqt/qt6/QtGui/gsiDeclQAbstractFileIconProvider.cc +++ b/src/gsiqt/qt6/QtGui/gsiDeclQAbstractFileIconProvider.cc @@ -274,7 +274,7 @@ static void _call_cbs_icon_c3884_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QIcon)((QAbstractFileIconProvider_Adaptor *)cls)->cbs_icon_c3884_0 (arg1)); } @@ -297,7 +297,7 @@ static void _call_cbs_icon_c2174_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFileInfo &arg1 = args.read (heap); + const QFileInfo &arg1 = gsi::arg_reader() (args, heap); ret.write ((QIcon)((QAbstractFileIconProvider_Adaptor *)cls)->cbs_icon_c2174_0 (arg1)); } @@ -339,7 +339,7 @@ static void _call_cbs_setOptions_4402_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractFileIconProvider_Adaptor *)cls)->cbs_setOptions_4402_0 (arg1); } @@ -363,7 +363,7 @@ static void _call_cbs_type_c2174_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFileInfo &arg1 = args.read (heap); + const QFileInfo &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QAbstractFileIconProvider_Adaptor *)cls)->cbs_type_c2174_0 (arg1)); } diff --git a/src/gsiqt/qt6/QtGui/gsiDeclQAbstractTextDocumentLayout.cc b/src/gsiqt/qt6/QtGui/gsiDeclQAbstractTextDocumentLayout.cc index 924a5b317..bc853b9a2 100644 --- a/src/gsiqt/qt6/QtGui/gsiDeclQAbstractTextDocumentLayout.cc +++ b/src/gsiqt/qt6/QtGui/gsiDeclQAbstractTextDocumentLayout.cc @@ -817,7 +817,7 @@ static void _call_cbs_blockBoundingRect_c2306_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextBlock &arg1 = args.read (heap); + const QTextBlock &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRectF)((QAbstractTextDocumentLayout_Adaptor *)cls)->cbs_blockBoundingRect_c2306_0 (arg1)); } @@ -840,7 +840,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractTextDocumentLayout_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -864,7 +864,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractTextDocumentLayout_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -906,7 +906,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractTextDocumentLayout_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -934,9 +934,9 @@ static void _call_cbs_documentChanged_2085_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractTextDocumentLayout_Adaptor *)cls)->cbs_documentChanged_2085_0 (arg1, arg2, arg3); } @@ -999,8 +999,8 @@ static void _call_cbs_draw_6787_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QAbstractTextDocumentLayout::PaintContext &arg2 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QAbstractTextDocumentLayout::PaintContext &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractTextDocumentLayout_Adaptor *)cls)->cbs_draw_6787_0 (arg1, arg2); } @@ -1032,11 +1032,11 @@ static void _call_cbs_drawInlineObject_8199_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QRectF &arg2 = args.read (heap); - QTextInlineObject arg3 = args.read (heap); - int arg4 = args.read (heap); - const QTextFormat &arg5 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QRectF &arg2 = gsi::arg_reader() (args, heap); + QTextInlineObject arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + const QTextFormat &arg5 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractTextDocumentLayout_Adaptor *)cls)->cbs_drawInlineObject_8199_0 (arg1, arg2, arg3, arg4, arg5); } @@ -1060,7 +1060,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractTextDocumentLayout_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1085,8 +1085,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractTextDocumentLayout_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1145,7 +1145,7 @@ static void _call_cbs_frameBoundingRect_c1615_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTextFrame *arg1 = args.read (heap); + QTextFrame *arg1 = gsi::arg_reader() (args, heap); ret.write ((QRectF)((QAbstractTextDocumentLayout_Adaptor *)cls)->cbs_frameBoundingRect_c1615_0 (arg1)); } @@ -1170,8 +1170,8 @@ static void _call_cbs_hitTest_c4147_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QAbstractTextDocumentLayout_Adaptor *)cls)->cbs_hitTest_c4147_0 (arg1, arg2)); } @@ -1271,9 +1271,9 @@ static void _call_cbs_positionInlineObject_5127_0 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTextInlineObject arg1 = args.read (heap); - int arg2 = args.read (heap); - const QTextFormat &arg3 = args.read (heap); + QTextInlineObject arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QTextFormat &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractTextDocumentLayout_Adaptor *)cls)->cbs_positionInlineObject_5127_0 (arg1, arg2, arg3); } @@ -1319,9 +1319,9 @@ static void _call_cbs_resizeInlineObject_5127_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTextInlineObject arg1 = args.read (heap); - int arg2 = args.read (heap); - const QTextFormat &arg3 = args.read (heap); + QTextInlineObject arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QTextFormat &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractTextDocumentLayout_Adaptor *)cls)->cbs_resizeInlineObject_5127_0 (arg1, arg2, arg3); } @@ -1373,7 +1373,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractTextDocumentLayout_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt6/QtGui/gsiDeclQAccessibleActionInterface.cc b/src/gsiqt/qt6/QtGui/gsiDeclQAccessibleActionInterface.cc index bfcab5544..5f09c340c 100644 --- a/src/gsiqt/qt6/QtGui/gsiDeclQAccessibleActionInterface.cc +++ b/src/gsiqt/qt6/QtGui/gsiDeclQAccessibleActionInterface.cc @@ -511,7 +511,7 @@ static void _call_cbs_doAction_2025_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAccessibleActionInterface_Adaptor *)cls)->cbs_doAction_2025_0 (arg1); } @@ -535,7 +535,7 @@ static void _call_cbs_keyBindingsForAction_c2025_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QStringList)((QAccessibleActionInterface_Adaptor *)cls)->cbs_keyBindingsForAction_c2025_0 (arg1)); } @@ -558,7 +558,7 @@ static void _call_cbs_localizedActionDescription_c2025_0 (const qt_gsi::GenericM { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QAccessibleActionInterface_Adaptor *)cls)->cbs_localizedActionDescription_c2025_0 (arg1)); } @@ -581,7 +581,7 @@ static void _call_cbs_localizedActionName_c2025_0 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QAccessibleActionInterface_Adaptor *)cls)->cbs_localizedActionName_c2025_0 (arg1)); } diff --git a/src/gsiqt/qt6/QtGui/gsiDeclQAccessibleEditableTextInterface.cc b/src/gsiqt/qt6/QtGui/gsiDeclQAccessibleEditableTextInterface.cc index e706f335e..6865be61f 100644 --- a/src/gsiqt/qt6/QtGui/gsiDeclQAccessibleEditableTextInterface.cc +++ b/src/gsiqt/qt6/QtGui/gsiDeclQAccessibleEditableTextInterface.cc @@ -227,8 +227,8 @@ static void _call_cbs_deleteText_1426_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAccessibleEditableTextInterface_Adaptor *)cls)->cbs_deleteText_1426_0 (arg1, arg2); } @@ -254,8 +254,8 @@ static void _call_cbs_insertText_2684_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAccessibleEditableTextInterface_Adaptor *)cls)->cbs_insertText_2684_0 (arg1, arg2); } @@ -283,9 +283,9 @@ static void _call_cbs_replaceText_3343_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QString &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAccessibleEditableTextInterface_Adaptor *)cls)->cbs_replaceText_3343_0 (arg1, arg2, arg3); } diff --git a/src/gsiqt/qt6/QtGui/gsiDeclQAccessibleTableInterface.cc b/src/gsiqt/qt6/QtGui/gsiDeclQAccessibleTableInterface.cc index f5035488c..6a7edc4f5 100644 --- a/src/gsiqt/qt6/QtGui/gsiDeclQAccessibleTableInterface.cc +++ b/src/gsiqt/qt6/QtGui/gsiDeclQAccessibleTableInterface.cc @@ -813,8 +813,8 @@ static void _call_cbs_cellAt_c1426_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write ((QAccessibleInterface *)((QAccessibleTableInterface_Adaptor *)cls)->cbs_cellAt_c1426_0 (arg1, arg2)); } @@ -856,7 +856,7 @@ static void _call_cbs_columnDescription_c767_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QAccessibleTableInterface_Adaptor *)cls)->cbs_columnDescription_c767_0 (arg1)); } @@ -879,7 +879,7 @@ static void _call_cbs_isColumnSelected_c767_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAccessibleTableInterface_Adaptor *)cls)->cbs_isColumnSelected_c767_0 (arg1)); } @@ -902,7 +902,7 @@ static void _call_cbs_isRowSelected_c767_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAccessibleTableInterface_Adaptor *)cls)->cbs_isRowSelected_c767_0 (arg1)); } @@ -925,7 +925,7 @@ static void _call_cbs_modelChange_3790_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAccessibleTableModelChangeEvent *arg1 = args.read (heap); + QAccessibleTableModelChangeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAccessibleTableInterface_Adaptor *)cls)->cbs_modelChange_3790_0 (arg1); } @@ -968,7 +968,7 @@ static void _call_cbs_rowDescription_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QAccessibleTableInterface_Adaptor *)cls)->cbs_rowDescription_c767_0 (arg1)); } @@ -991,7 +991,7 @@ static void _call_cbs_selectColumn_767_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAccessibleTableInterface_Adaptor *)cls)->cbs_selectColumn_767_0 (arg1)); } @@ -1014,7 +1014,7 @@ static void _call_cbs_selectRow_767_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAccessibleTableInterface_Adaptor *)cls)->cbs_selectRow_767_0 (arg1)); } @@ -1170,7 +1170,7 @@ static void _call_cbs_unselectColumn_767_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAccessibleTableInterface_Adaptor *)cls)->cbs_unselectColumn_767_0 (arg1)); } @@ -1193,7 +1193,7 @@ static void _call_cbs_unselectRow_767_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAccessibleTableInterface_Adaptor *)cls)->cbs_unselectRow_767_0 (arg1)); } diff --git a/src/gsiqt/qt6/QtGui/gsiDeclQAccessibleTextInterface.cc b/src/gsiqt/qt6/QtGui/gsiDeclQAccessibleTextInterface.cc index ce1263998..1949d71c8 100644 --- a/src/gsiqt/qt6/QtGui/gsiDeclQAccessibleTextInterface.cc +++ b/src/gsiqt/qt6/QtGui/gsiDeclQAccessibleTextInterface.cc @@ -742,8 +742,8 @@ static void _call_cbs_addSelection_1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAccessibleTextInterface_Adaptor *)cls)->cbs_addSelection_1426_0 (arg1, arg2); } @@ -771,9 +771,9 @@ static void _call_cbs_attributes_c2457_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int *arg2 = args.read (heap); - int *arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int *arg2 = gsi::arg_reader() (args, heap); + int *arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)((QAccessibleTextInterface_Adaptor *)cls)->cbs_attributes_c2457_0 (arg1, arg2, arg3)); } @@ -815,7 +815,7 @@ static void _call_cbs_characterRect_c767_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QAccessibleTextInterface_Adaptor *)cls)->cbs_characterRect_c767_0 (arg1)); } @@ -857,7 +857,7 @@ static void _call_cbs_offsetAtPoint_c1916_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QAccessibleTextInterface_Adaptor *)cls)->cbs_offsetAtPoint_c1916_0 (arg1)); } @@ -880,7 +880,7 @@ static void _call_cbs_removeSelection_767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAccessibleTextInterface_Adaptor *)cls)->cbs_removeSelection_767_0 (arg1); } @@ -906,8 +906,8 @@ static void _call_cbs_scrollToSubstring_1426_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAccessibleTextInterface_Adaptor *)cls)->cbs_scrollToSubstring_1426_0 (arg1, arg2); } @@ -935,9 +935,9 @@ static void _call_cbs_selection_c2457_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int *arg2 = args.read (heap); - int *arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int *arg2 = gsi::arg_reader() (args, heap); + int *arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAccessibleTextInterface_Adaptor *)cls)->cbs_selection_c2457_0 (arg1, arg2, arg3); } @@ -980,7 +980,7 @@ static void _call_cbs_setCursorPosition_767_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAccessibleTextInterface_Adaptor *)cls)->cbs_setCursorPosition_767_0 (arg1); } @@ -1008,9 +1008,9 @@ static void _call_cbs_setSelection_2085_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAccessibleTextInterface_Adaptor *)cls)->cbs_setSelection_2085_0 (arg1, arg2, arg3); } @@ -1036,8 +1036,8 @@ static void _call_cbs_text_c1426_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write ((QString)((QAccessibleTextInterface_Adaptor *)cls)->cbs_text_c1426_0 (arg1, arg2)); } @@ -1066,10 +1066,10 @@ static void _call_cbs_textAfterOffset_c5663_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int *arg3 = args.read (heap); - int *arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int *arg3 = gsi::arg_reader() (args, heap); + int *arg4 = gsi::arg_reader() (args, heap); ret.write ((QString)((QAccessibleTextInterface_Adaptor *)cls)->cbs_textAfterOffset_c5663_0 (arg1, arg2, arg3, arg4)); } @@ -1098,10 +1098,10 @@ static void _call_cbs_textAtOffset_c5663_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int *arg3 = args.read (heap); - int *arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int *arg3 = gsi::arg_reader() (args, heap); + int *arg4 = gsi::arg_reader() (args, heap); ret.write ((QString)((QAccessibleTextInterface_Adaptor *)cls)->cbs_textAtOffset_c5663_0 (arg1, arg2, arg3, arg4)); } @@ -1130,10 +1130,10 @@ static void _call_cbs_textBeforeOffset_c5663_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int *arg3 = args.read (heap); - int *arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int *arg3 = gsi::arg_reader() (args, heap); + int *arg4 = gsi::arg_reader() (args, heap); ret.write ((QString)((QAccessibleTextInterface_Adaptor *)cls)->cbs_textBeforeOffset_c5663_0 (arg1, arg2, arg3, arg4)); } diff --git a/src/gsiqt/qt6/QtGui/gsiDeclQAccessibleValueInterface.cc b/src/gsiqt/qt6/QtGui/gsiDeclQAccessibleValueInterface.cc index 7abc47795..94f3d4042 100644 --- a/src/gsiqt/qt6/QtGui/gsiDeclQAccessibleValueInterface.cc +++ b/src/gsiqt/qt6/QtGui/gsiDeclQAccessibleValueInterface.cc @@ -337,7 +337,7 @@ static void _call_cbs_setCurrentValue_2119_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVariant &arg1 = args.read (heap); + const QVariant &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAccessibleValueInterface_Adaptor *)cls)->cbs_setCurrentValue_2119_0 (arg1); } diff --git a/src/gsiqt/qt6/QtGui/gsiDeclQAccessible_ActivationObserver.cc b/src/gsiqt/qt6/QtGui/gsiDeclQAccessible_ActivationObserver.cc index ab183bfc0..0b55649f8 100644 --- a/src/gsiqt/qt6/QtGui/gsiDeclQAccessible_ActivationObserver.cc +++ b/src/gsiqt/qt6/QtGui/gsiDeclQAccessible_ActivationObserver.cc @@ -133,7 +133,7 @@ static void _call_cbs_accessibilityActiveChanged_864_0 (const qt_gsi::GenericMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAccessible_ActivationObserver_Adaptor *)cls)->cbs_accessibilityActiveChanged_864_0 (arg1); } diff --git a/src/gsiqt/qt6/QtGui/gsiDeclQAction.cc b/src/gsiqt/qt6/QtGui/gsiDeclQAction.cc index 5003c0df6..cf0a6288b 100644 --- a/src/gsiqt/qt6/QtGui/gsiDeclQAction.cc +++ b/src/gsiqt/qt6/QtGui/gsiDeclQAction.cc @@ -1412,7 +1412,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAction_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1436,7 +1436,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAction_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1478,7 +1478,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAction_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1520,7 +1520,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAction_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1545,8 +1545,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAction_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1665,7 +1665,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAction_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt6/QtGui/gsiDeclQActionEvent.cc b/src/gsiqt/qt6/QtGui/gsiDeclQActionEvent.cc index 5bba9615e..be7e94295 100644 --- a/src/gsiqt/qt6/QtGui/gsiDeclQActionEvent.cc +++ b/src/gsiqt/qt6/QtGui/gsiDeclQActionEvent.cc @@ -162,7 +162,7 @@ static void _call_cbs_setAccepted_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QActionEvent_Adaptor *)cls)->cbs_setAccepted_864_0 (arg1); } diff --git a/src/gsiqt/qt6/QtGui/gsiDeclQActionGroup.cc b/src/gsiqt/qt6/QtGui/gsiDeclQActionGroup.cc index c21541c9f..2785f5a15 100644 --- a/src/gsiqt/qt6/QtGui/gsiDeclQActionGroup.cc +++ b/src/gsiqt/qt6/QtGui/gsiDeclQActionGroup.cc @@ -579,7 +579,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QActionGroup_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -603,7 +603,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QActionGroup_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -645,7 +645,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QActionGroup_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -669,7 +669,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QActionGroup_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -694,8 +694,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QActionGroup_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -818,7 +818,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QActionGroup_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt6/QtGui/gsiDeclQApplicationStateChangeEvent.cc b/src/gsiqt/qt6/QtGui/gsiDeclQApplicationStateChangeEvent.cc index 0ca7431fe..2ab17b23f 100644 --- a/src/gsiqt/qt6/QtGui/gsiDeclQApplicationStateChangeEvent.cc +++ b/src/gsiqt/qt6/QtGui/gsiDeclQApplicationStateChangeEvent.cc @@ -133,7 +133,7 @@ static void _call_cbs_setAccepted_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QApplicationStateChangeEvent_Adaptor *)cls)->cbs_setAccepted_864_0 (arg1); } diff --git a/src/gsiqt/qt6/QtGui/gsiDeclQBitmap.cc b/src/gsiqt/qt6/QtGui/gsiDeclQBitmap.cc index 7c321863c..5b8ac22e0 100644 --- a/src/gsiqt/qt6/QtGui/gsiDeclQBitmap.cc +++ b/src/gsiqt/qt6/QtGui/gsiDeclQBitmap.cc @@ -472,7 +472,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QBitmap_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -496,7 +496,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QBitmap_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -538,7 +538,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QBitmap_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } diff --git a/src/gsiqt/qt6/QtGui/gsiDeclQCloseEvent.cc b/src/gsiqt/qt6/QtGui/gsiDeclQCloseEvent.cc index 84fab7045..bf5a0b5ca 100644 --- a/src/gsiqt/qt6/QtGui/gsiDeclQCloseEvent.cc +++ b/src/gsiqt/qt6/QtGui/gsiDeclQCloseEvent.cc @@ -113,7 +113,7 @@ static void _call_cbs_setAccepted_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCloseEvent_Adaptor *)cls)->cbs_setAccepted_864_0 (arg1); } diff --git a/src/gsiqt/qt6/QtGui/gsiDeclQContextMenuEvent.cc b/src/gsiqt/qt6/QtGui/gsiDeclQContextMenuEvent.cc index e20890739..285b57236 100644 --- a/src/gsiqt/qt6/QtGui/gsiDeclQContextMenuEvent.cc +++ b/src/gsiqt/qt6/QtGui/gsiDeclQContextMenuEvent.cc @@ -289,7 +289,7 @@ static void _call_cbs_setAccepted_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QContextMenuEvent_Adaptor *)cls)->cbs_setAccepted_864_0 (arg1); } @@ -313,7 +313,7 @@ static void _call_cbs_setTimestamp_1103_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - quint64 arg1 = args.read (heap); + quint64 arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QContextMenuEvent_Adaptor *)cls)->cbs_setTimestamp_1103_0 (arg1); } diff --git a/src/gsiqt/qt6/QtGui/gsiDeclQDoubleValidator.cc b/src/gsiqt/qt6/QtGui/gsiDeclQDoubleValidator.cc index 2b0ac2e3f..a7a4708af 100644 --- a/src/gsiqt/qt6/QtGui/gsiDeclQDoubleValidator.cc +++ b/src/gsiqt/qt6/QtGui/gsiDeclQDoubleValidator.cc @@ -621,7 +621,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleValidator_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -645,7 +645,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleValidator_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -705,7 +705,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleValidator_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -729,7 +729,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDoubleValidator_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -754,8 +754,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDoubleValidator_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -778,7 +778,7 @@ static void _call_cbs_fixup_c1330_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QString &arg1 = args.read (heap); + QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleValidator_Adaptor *)cls)->cbs_fixup_c1330_0 (arg1); } @@ -902,7 +902,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleValidator_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -946,8 +946,8 @@ static void _call_cbs_validate_c2171_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QString &arg1 = args.read (heap); - int &arg2 = args.read (heap); + QString &arg1 = gsi::arg_reader() (args, heap); + int &arg2 = gsi::arg_reader() (args, heap); ret.write::target_type > ((qt_gsi::Converter::target_type)((QDoubleValidator_Adaptor *)cls)->cbs_validate_c2171_0 (arg1, arg2)); } diff --git a/src/gsiqt/qt6/QtGui/gsiDeclQDrag.cc b/src/gsiqt/qt6/QtGui/gsiDeclQDrag.cc index 513905a55..1223f633f 100644 --- a/src/gsiqt/qt6/QtGui/gsiDeclQDrag.cc +++ b/src/gsiqt/qt6/QtGui/gsiDeclQDrag.cc @@ -592,7 +592,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDrag_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -616,7 +616,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDrag_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -658,7 +658,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDrag_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -682,7 +682,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDrag_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -707,8 +707,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDrag_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -831,7 +831,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDrag_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt6/QtGui/gsiDeclQDragEnterEvent.cc b/src/gsiqt/qt6/QtGui/gsiDeclQDragEnterEvent.cc index 014bb0be1..0e4098b17 100644 --- a/src/gsiqt/qt6/QtGui/gsiDeclQDragEnterEvent.cc +++ b/src/gsiqt/qt6/QtGui/gsiDeclQDragEnterEvent.cc @@ -134,7 +134,7 @@ static void _call_cbs_setAccepted_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDragEnterEvent_Adaptor *)cls)->cbs_setAccepted_864_0 (arg1); } diff --git a/src/gsiqt/qt6/QtGui/gsiDeclQDragLeaveEvent.cc b/src/gsiqt/qt6/QtGui/gsiDeclQDragLeaveEvent.cc index b107ff015..d5110f3a1 100644 --- a/src/gsiqt/qt6/QtGui/gsiDeclQDragLeaveEvent.cc +++ b/src/gsiqt/qt6/QtGui/gsiDeclQDragLeaveEvent.cc @@ -113,7 +113,7 @@ static void _call_cbs_setAccepted_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDragLeaveEvent_Adaptor *)cls)->cbs_setAccepted_864_0 (arg1); } diff --git a/src/gsiqt/qt6/QtGui/gsiDeclQDragMoveEvent.cc b/src/gsiqt/qt6/QtGui/gsiDeclQDragMoveEvent.cc index 6adaa18bf..58304753d 100644 --- a/src/gsiqt/qt6/QtGui/gsiDeclQDragMoveEvent.cc +++ b/src/gsiqt/qt6/QtGui/gsiDeclQDragMoveEvent.cc @@ -235,7 +235,7 @@ static void _call_cbs_setAccepted_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDragMoveEvent_Adaptor *)cls)->cbs_setAccepted_864_0 (arg1); } diff --git a/src/gsiqt/qt6/QtGui/gsiDeclQDropEvent.cc b/src/gsiqt/qt6/QtGui/gsiDeclQDropEvent.cc index 3cd3da261..cb0a5e205 100644 --- a/src/gsiqt/qt6/QtGui/gsiDeclQDropEvent.cc +++ b/src/gsiqt/qt6/QtGui/gsiDeclQDropEvent.cc @@ -372,7 +372,7 @@ static void _call_cbs_setAccepted_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDropEvent_Adaptor *)cls)->cbs_setAccepted_864_0 (arg1); } diff --git a/src/gsiqt/qt6/QtGui/gsiDeclQEnterEvent.cc b/src/gsiqt/qt6/QtGui/gsiDeclQEnterEvent.cc index 0ad880a2c..0dad536c0 100644 --- a/src/gsiqt/qt6/QtGui/gsiDeclQEnterEvent.cc +++ b/src/gsiqt/qt6/QtGui/gsiDeclQEnterEvent.cc @@ -403,7 +403,7 @@ static void _call_cbs_setAccepted_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QEnterEvent_Adaptor *)cls)->cbs_setAccepted_864_0 (arg1); } @@ -427,7 +427,7 @@ static void _call_cbs_setTimestamp_1103_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - quint64 arg1 = args.read (heap); + quint64 arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QEnterEvent_Adaptor *)cls)->cbs_setTimestamp_1103_0 (arg1); } diff --git a/src/gsiqt/qt6/QtGui/gsiDeclQExposeEvent.cc b/src/gsiqt/qt6/QtGui/gsiDeclQExposeEvent.cc index 205c7cbd8..b692d9d1f 100644 --- a/src/gsiqt/qt6/QtGui/gsiDeclQExposeEvent.cc +++ b/src/gsiqt/qt6/QtGui/gsiDeclQExposeEvent.cc @@ -134,7 +134,7 @@ static void _call_cbs_setAccepted_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QExposeEvent_Adaptor *)cls)->cbs_setAccepted_864_0 (arg1); } diff --git a/src/gsiqt/qt6/QtGui/gsiDeclQFileOpenEvent.cc b/src/gsiqt/qt6/QtGui/gsiDeclQFileOpenEvent.cc index 9a9d38943..44d471420 100644 --- a/src/gsiqt/qt6/QtGui/gsiDeclQFileOpenEvent.cc +++ b/src/gsiqt/qt6/QtGui/gsiDeclQFileOpenEvent.cc @@ -198,7 +198,7 @@ static void _call_cbs_setAccepted_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileOpenEvent_Adaptor *)cls)->cbs_setAccepted_864_0 (arg1); } diff --git a/src/gsiqt/qt6/QtGui/gsiDeclQFileSystemModel.cc b/src/gsiqt/qt6/QtGui/gsiDeclQFileSystemModel.cc index c1dc7a18f..74a05a188 100644 --- a/src/gsiqt/qt6/QtGui/gsiDeclQFileSystemModel.cc +++ b/src/gsiqt/qt6/QtGui/gsiDeclQFileSystemModel.cc @@ -2407,7 +2407,7 @@ static void _call_cbs_buddy_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QFileSystemModel_Adaptor *)cls)->cbs_buddy_c2395_0 (arg1)); } @@ -2438,11 +2438,11 @@ static void _call_cbs_canDropMimeData_c7425_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMimeData *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - const QModelIndex &arg5 = args.read (heap); + const QMimeData *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + const QModelIndex &arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFileSystemModel_Adaptor *)cls)->cbs_canDropMimeData_c7425_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -2465,7 +2465,7 @@ static void _call_cbs_canFetchMore_c2395_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFileSystemModel_Adaptor *)cls)->cbs_canFetchMore_c2395_0 (arg1)); } @@ -2532,7 +2532,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileSystemModel_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -2556,7 +2556,7 @@ static void _call_cbs_clearItemData_2395_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFileSystemModel_Adaptor *)cls)->cbs_clearItemData_2395_0 (arg1)); } @@ -2579,7 +2579,7 @@ static void _call_cbs_columnCount_c2395_1 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((int)((QFileSystemModel_Adaptor *)cls)->cbs_columnCount_c2395_1 (arg1)); } @@ -2806,7 +2806,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileSystemModel_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -2832,8 +2832,8 @@ static void _call_cbs_data_c3054_1 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::DisplayRole, heap); ret.write ((QVariant)((QFileSystemModel_Adaptor *)cls)->cbs_data_c3054_1 (arg1, arg2)); } @@ -2943,7 +2943,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileSystemModel_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -2975,11 +2975,11 @@ static void _call_cbs_dropMimeData_7425_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMimeData *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - const QModelIndex &arg5 = args.read (heap); + const QMimeData *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + const QModelIndex &arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFileSystemModel_Adaptor *)cls)->cbs_dropMimeData_7425_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -3129,7 +3129,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFileSystemModel_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -3154,8 +3154,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFileSystemModel_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -3178,7 +3178,7 @@ static void _call_cbs_fetchMore_2395_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileSystemModel_Adaptor *)cls)->cbs_fetchMore_2395_0 (arg1); } @@ -3226,7 +3226,7 @@ static void _call_cbs_flags_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QFlags)((QFileSystemModel_Adaptor *)cls)->cbs_flags_c2395_0 (arg1)); } @@ -3249,7 +3249,7 @@ static void _call_cbs_hasChildren_c2395_1 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QFileSystemModel_Adaptor *)cls)->cbs_hasChildren_c2395_1 (arg1)); } @@ -3276,9 +3276,9 @@ static void _call_cbs_headerData_c3231_1 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::DisplayRole, heap); ret.write ((QVariant)((QFileSystemModel_Adaptor *)cls)->cbs_headerData_c3231_1 (arg1, arg2, arg3)); } @@ -3329,9 +3329,9 @@ static void _call_cbs_index_c3713_1 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((QModelIndex)((QFileSystemModel_Adaptor *)cls)->cbs_index_c3713_1 (arg1, arg2, arg3)); } @@ -3358,9 +3358,9 @@ static void _call_cbs_insertColumns_3713_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QFileSystemModel_Adaptor *)cls)->cbs_insertColumns_3713_1 (arg1, arg2, arg3)); } @@ -3387,9 +3387,9 @@ static void _call_cbs_insertRows_3713_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QFileSystemModel_Adaptor *)cls)->cbs_insertRows_3713_1 (arg1, arg2, arg3)); } @@ -3430,7 +3430,7 @@ static void _call_cbs_itemData_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QMap)((QFileSystemModel_Adaptor *)cls)->cbs_itemData_c2395_0 (arg1)); } @@ -3503,11 +3503,11 @@ static void _call_cbs_match_c7932_2 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - const QVariant &arg3 = args.read (heap); - int arg4 = args.read (heap); - QFlags arg5 = args.read > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QVariant &arg3 = gsi::arg_reader() (args, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (1, heap); + QFlags arg5 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (Qt::MatchFlags(Qt::MatchStartsWith|Qt::MatchWrap), heap); ret.write > ((QList)((QFileSystemModel_Adaptor *)cls)->cbs_match_c7932_2 (arg1, arg2, arg3, arg4, arg5)); } @@ -3530,7 +3530,7 @@ static void _call_cbs_mimeData_c3010_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); ret.write ((QMimeData *)((QFileSystemModel_Adaptor *)cls)->cbs_mimeData_c3010_0 (arg1)); } @@ -3608,11 +3608,11 @@ static void _call_cbs_moveColumns_6659_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - const QModelIndex &arg4 = args.read (heap); - int arg5 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QModelIndex &arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFileSystemModel_Adaptor *)cls)->cbs_moveColumns_6659_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -3643,11 +3643,11 @@ static void _call_cbs_moveRows_6659_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - const QModelIndex &arg4 = args.read (heap); - int arg5 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QModelIndex &arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFileSystemModel_Adaptor *)cls)->cbs_moveRows_6659_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -3672,8 +3672,8 @@ static void _call_cbs_multiData_c4483_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - QModelRoleDataSpan arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + QModelRoleDataSpan arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileSystemModel_Adaptor *)cls)->cbs_multiData_c4483_0 (arg1, arg2); } @@ -3715,7 +3715,7 @@ static void _call_cbs_parent_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QFileSystemModel_Adaptor *)cls)->cbs_parent_c2395_0 (arg1)); } @@ -3774,9 +3774,9 @@ static void _call_cbs_removeColumns_3713_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QFileSystemModel_Adaptor *)cls)->cbs_removeColumns_3713_1 (arg1, arg2, arg3)); } @@ -3803,9 +3803,9 @@ static void _call_cbs_removeRows_3713_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QFileSystemModel_Adaptor *)cls)->cbs_removeRows_3713_1 (arg1, arg2, arg3)); } @@ -3905,7 +3905,7 @@ static void _call_cbs_rowCount_c2395_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((int)((QFileSystemModel_Adaptor *)cls)->cbs_rowCount_c2395_1 (arg1)); } @@ -4116,9 +4116,9 @@ static void _call_cbs_setData_5065_1 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::EditRole, heap); ret.write ((bool)((QFileSystemModel_Adaptor *)cls)->cbs_setData_5065_1 (arg1, arg2, arg3)); } @@ -4147,10 +4147,10 @@ static void _call_cbs_setHeaderData_5242_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - const QVariant &arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + const QVariant &arg3 = gsi::arg_reader() (args, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::EditRole, heap); ret.write ((bool)((QFileSystemModel_Adaptor *)cls)->cbs_setHeaderData_5242_1 (arg1, arg2, arg3, arg4)); } @@ -4175,8 +4175,8 @@ static void _call_cbs_setItemData_5414_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QMap &arg2 = args.read & > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QMap &arg2 = gsi::arg_reader & >() (args, heap); ret.write ((bool)((QFileSystemModel_Adaptor *)cls)->cbs_setItemData_5414_0 (arg1, arg2)); } @@ -4203,9 +4203,9 @@ static void _call_cbs_sibling_c3713_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QFileSystemModel_Adaptor *)cls)->cbs_sibling_c3713_0 (arg1, arg2, arg3)); } @@ -4230,8 +4230,8 @@ static void _call_cbs_sort_2340_1 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::AscendingOrder), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileSystemModel_Adaptor *)cls)->cbs_sort_2340_1 (arg1, arg2); } @@ -4255,7 +4255,7 @@ static void _call_cbs_span_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QSize)((QFileSystemModel_Adaptor *)cls)->cbs_span_c2395_0 (arg1)); } @@ -4335,7 +4335,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileSystemModel_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt6/QtGui/gsiDeclQFocusEvent.cc b/src/gsiqt/qt6/QtGui/gsiDeclQFocusEvent.cc index f5ad2b697..9ca7f2b4e 100644 --- a/src/gsiqt/qt6/QtGui/gsiDeclQFocusEvent.cc +++ b/src/gsiqt/qt6/QtGui/gsiDeclQFocusEvent.cc @@ -174,7 +174,7 @@ static void _call_cbs_setAccepted_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFocusEvent_Adaptor *)cls)->cbs_setAccepted_864_0 (arg1); } diff --git a/src/gsiqt/qt6/QtGui/gsiDeclQGenericPlugin.cc b/src/gsiqt/qt6/QtGui/gsiDeclQGenericPlugin.cc index c3916afbb..d979b4183 100644 --- a/src/gsiqt/qt6/QtGui/gsiDeclQGenericPlugin.cc +++ b/src/gsiqt/qt6/QtGui/gsiDeclQGenericPlugin.cc @@ -325,7 +325,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGenericPlugin_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -351,8 +351,8 @@ static void _call_cbs_create_3942_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((QObject *)((QGenericPlugin_Adaptor *)cls)->cbs_create_3942_0 (arg1, arg2)); } @@ -375,7 +375,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGenericPlugin_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -417,7 +417,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGenericPlugin_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -441,7 +441,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGenericPlugin_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -466,8 +466,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGenericPlugin_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -572,7 +572,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGenericPlugin_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt6/QtGui/gsiDeclQGuiApplication.cc b/src/gsiqt/qt6/QtGui/gsiDeclQGuiApplication.cc index 1d95e08ac..a2cffd71a 100644 --- a/src/gsiqt/qt6/QtGui/gsiDeclQGuiApplication.cc +++ b/src/gsiqt/qt6/QtGui/gsiDeclQGuiApplication.cc @@ -1321,7 +1321,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGuiApplication_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1363,7 +1363,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGuiApplication_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1405,7 +1405,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGuiApplication_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1429,7 +1429,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGuiApplication_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1454,8 +1454,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGuiApplication_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1799,7 +1799,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGuiApplication_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt6/QtGui/gsiDeclQHelpEvent.cc b/src/gsiqt/qt6/QtGui/gsiDeclQHelpEvent.cc index 7bed35184..8e4c374f4 100644 --- a/src/gsiqt/qt6/QtGui/gsiDeclQHelpEvent.cc +++ b/src/gsiqt/qt6/QtGui/gsiDeclQHelpEvent.cc @@ -220,7 +220,7 @@ static void _call_cbs_setAccepted_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHelpEvent_Adaptor *)cls)->cbs_setAccepted_864_0 (arg1); } diff --git a/src/gsiqt/qt6/QtGui/gsiDeclQHideEvent.cc b/src/gsiqt/qt6/QtGui/gsiDeclQHideEvent.cc index 202dcd158..2097de7c9 100644 --- a/src/gsiqt/qt6/QtGui/gsiDeclQHideEvent.cc +++ b/src/gsiqt/qt6/QtGui/gsiDeclQHideEvent.cc @@ -113,7 +113,7 @@ static void _call_cbs_setAccepted_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHideEvent_Adaptor *)cls)->cbs_setAccepted_864_0 (arg1); } diff --git a/src/gsiqt/qt6/QtGui/gsiDeclQHoverEvent.cc b/src/gsiqt/qt6/QtGui/gsiDeclQHoverEvent.cc index 01d727fc4..552af676a 100644 --- a/src/gsiqt/qt6/QtGui/gsiDeclQHoverEvent.cc +++ b/src/gsiqt/qt6/QtGui/gsiDeclQHoverEvent.cc @@ -348,7 +348,7 @@ static void _call_cbs_setAccepted_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHoverEvent_Adaptor *)cls)->cbs_setAccepted_864_0 (arg1); } @@ -372,7 +372,7 @@ static void _call_cbs_setTimestamp_1103_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - quint64 arg1 = args.read (heap); + quint64 arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHoverEvent_Adaptor *)cls)->cbs_setTimestamp_1103_0 (arg1); } diff --git a/src/gsiqt/qt6/QtGui/gsiDeclQIconDragEvent.cc b/src/gsiqt/qt6/QtGui/gsiDeclQIconDragEvent.cc index 39e40717a..fe125c2d0 100644 --- a/src/gsiqt/qt6/QtGui/gsiDeclQIconDragEvent.cc +++ b/src/gsiqt/qt6/QtGui/gsiDeclQIconDragEvent.cc @@ -113,7 +113,7 @@ static void _call_cbs_setAccepted_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QIconDragEvent_Adaptor *)cls)->cbs_setAccepted_864_0 (arg1); } diff --git a/src/gsiqt/qt6/QtGui/gsiDeclQIconEngine.cc b/src/gsiqt/qt6/QtGui/gsiDeclQIconEngine.cc index 3d913ba5b..71216d604 100644 --- a/src/gsiqt/qt6/QtGui/gsiDeclQIconEngine.cc +++ b/src/gsiqt/qt6/QtGui/gsiDeclQIconEngine.cc @@ -651,9 +651,9 @@ static void _call_cbs_actualSize_4543_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSize &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg3 = args.read::target_type & > (heap); + const QSize &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg3 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QSize)((QIconEngine_Adaptor *)cls)->cbs_actualSize_4543_0 (arg1, arg2, arg3)); } @@ -682,10 +682,10 @@ static void _call_cbs_addFile_6460_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QSize &arg2 = args.read (heap); - const qt_gsi::Converter::target_type & arg3 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg4 = args.read::target_type & > (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QSize &arg2 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg3 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg4 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QIconEngine_Adaptor *)cls)->cbs_addFile_6460_0 (arg1, arg2, arg3, arg4); } @@ -713,9 +713,9 @@ static void _call_cbs_addPixmap_4755_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPixmap &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg3 = args.read::target_type & > (heap); + const QPixmap &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg3 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QIconEngine_Adaptor *)cls)->cbs_addPixmap_4755_0 (arg1, arg2, arg3); } @@ -741,8 +741,8 @@ static void _call_cbs_availableSizes_2846_2 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QIcon::Normal), heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QIcon::Off), heap); ret.write > ((QList)((QIconEngine_Adaptor *)cls)->cbs_availableSizes_2846_2 (arg1, arg2)); } @@ -847,10 +847,10 @@ static void _call_cbs_paint_5848_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QRect &arg2 = args.read (heap); - const qt_gsi::Converter::target_type & arg3 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg4 = args.read::target_type & > (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QRect &arg2 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg3 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg4 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QIconEngine_Adaptor *)cls)->cbs_paint_5848_0 (arg1, arg2, arg3, arg4); } @@ -878,9 +878,9 @@ static void _call_cbs_pixmap_4543_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSize &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg3 = args.read::target_type & > (heap); + const QSize &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg3 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QPixmap)((QIconEngine_Adaptor *)cls)->cbs_pixmap_4543_0 (arg1, arg2, arg3)); } @@ -903,7 +903,7 @@ static void _call_cbs_read_1697_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDataStream &arg1 = args.read (heap); + QDataStream &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QIconEngine_Adaptor *)cls)->cbs_read_1697_0 (arg1)); } @@ -932,10 +932,10 @@ static void _call_cbs_scaledPixmap_5506_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSize &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg3 = args.read::target_type & > (heap); - double arg4 = args.read (heap); + const QSize &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg3 = gsi::arg_reader::target_type & >() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); ret.write ((QPixmap)((QIconEngine_Adaptor *)cls)->cbs_scaledPixmap_5506_0 (arg1, arg2, arg3, arg4)); } @@ -960,8 +960,8 @@ static void _call_cbs_virtual_hook_1715_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - void *arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QIconEngine_Adaptor *)cls)->cbs_virtual_hook_1715_0 (arg1, arg2); } @@ -985,7 +985,7 @@ static void _call_cbs_write_c1697_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDataStream &arg1 = args.read (heap); + QDataStream &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QIconEngine_Adaptor *)cls)->cbs_write_c1697_0 (arg1)); } diff --git a/src/gsiqt/qt6/QtGui/gsiDeclQIconEnginePlugin.cc b/src/gsiqt/qt6/QtGui/gsiDeclQIconEnginePlugin.cc index 698e2f43d..b42c2fdf4 100644 --- a/src/gsiqt/qt6/QtGui/gsiDeclQIconEnginePlugin.cc +++ b/src/gsiqt/qt6/QtGui/gsiDeclQIconEnginePlugin.cc @@ -322,7 +322,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QIconEnginePlugin_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -346,7 +346,7 @@ static void _call_cbs_create_2025_1 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); ret.write ((QIconEngine *)((QIconEnginePlugin_Adaptor *)cls)->cbs_create_2025_1 (arg1)); } @@ -369,7 +369,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QIconEnginePlugin_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -411,7 +411,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QIconEnginePlugin_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -435,7 +435,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QIconEnginePlugin_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -460,8 +460,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QIconEnginePlugin_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -566,7 +566,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QIconEnginePlugin_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt6/QtGui/gsiDeclQImage.cc b/src/gsiqt/qt6/QtGui/gsiDeclQImage.cc index f8c596c91..8d6b9b6e1 100644 --- a/src/gsiqt/qt6/QtGui/gsiDeclQImage.cc +++ b/src/gsiqt/qt6/QtGui/gsiDeclQImage.cc @@ -2416,7 +2416,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QImage_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -2440,7 +2440,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QImage_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2525,7 +2525,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QImage_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } diff --git a/src/gsiqt/qt6/QtGui/gsiDeclQImageIOHandler.cc b/src/gsiqt/qt6/QtGui/gsiDeclQImageIOHandler.cc index e78485cd5..c1728009b 100644 --- a/src/gsiqt/qt6/QtGui/gsiDeclQImageIOHandler.cc +++ b/src/gsiqt/qt6/QtGui/gsiDeclQImageIOHandler.cc @@ -741,7 +741,7 @@ static void _call_cbs_jumpToImage_767_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QImageIOHandler_Adaptor *)cls)->cbs_jumpToImage_767_0 (arg1)); } @@ -821,7 +821,7 @@ static void _call_cbs_option_c3086_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QImageIOHandler_Adaptor *)cls)->cbs_option_c3086_0 (arg1)); } @@ -844,7 +844,7 @@ static void _call_cbs_read_1186_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QImage *arg1 = args.read (heap); + QImage *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QImageIOHandler_Adaptor *)cls)->cbs_read_1186_0 (arg1)); } @@ -869,8 +869,8 @@ static void _call_cbs_setOption_5097_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QVariant &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QImageIOHandler_Adaptor *)cls)->cbs_setOption_5097_0 (arg1, arg2); } @@ -894,7 +894,7 @@ static void _call_cbs_supportsOption_c3086_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((bool)((QImageIOHandler_Adaptor *)cls)->cbs_supportsOption_c3086_0 (arg1)); } @@ -917,7 +917,7 @@ static void _call_cbs_write_1877_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QImage &arg1 = args.read (heap); + const QImage &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QImageIOHandler_Adaptor *)cls)->cbs_write_1877_0 (arg1)); } diff --git a/src/gsiqt/qt6/QtGui/gsiDeclQImageIOPlugin.cc b/src/gsiqt/qt6/QtGui/gsiDeclQImageIOPlugin.cc index d2578e6ed..480fe7fae 100644 --- a/src/gsiqt/qt6/QtGui/gsiDeclQImageIOPlugin.cc +++ b/src/gsiqt/qt6/QtGui/gsiDeclQImageIOPlugin.cc @@ -370,8 +370,8 @@ static void _call_cbs_capabilities_c3648_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QIODevice *arg1 = args.read (heap); - const QByteArray &arg2 = args.read (heap); + QIODevice *arg1 = gsi::arg_reader() (args, heap); + const QByteArray &arg2 = gsi::arg_reader() (args, heap); ret.write > ((QFlags)((QImageIOPlugin_Adaptor *)cls)->cbs_capabilities_c3648_0 (arg1, arg2)); } @@ -394,7 +394,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QImageIOPlugin_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -420,8 +420,8 @@ static void _call_cbs_create_c3648_1 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QIODevice *arg1 = args.read (heap); - const QByteArray &arg2 = args.read (heap); + QIODevice *arg1 = gsi::arg_reader() (args, heap); + const QByteArray &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QByteArray(), heap); ret.write ((QImageIOHandler *)((QImageIOPlugin_Adaptor *)cls)->cbs_create_c3648_1 (arg1, arg2)); } @@ -444,7 +444,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QImageIOPlugin_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -486,7 +486,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QImageIOPlugin_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -510,7 +510,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QImageIOPlugin_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -535,8 +535,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QImageIOPlugin_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -641,7 +641,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QImageIOPlugin_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt6/QtGui/gsiDeclQInputDevice.cc b/src/gsiqt/qt6/QtGui/gsiDeclQInputDevice.cc index 20da00a9c..b95815d09 100644 --- a/src/gsiqt/qt6/QtGui/gsiDeclQInputDevice.cc +++ b/src/gsiqt/qt6/QtGui/gsiDeclQInputDevice.cc @@ -530,7 +530,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDevice_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -554,7 +554,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDevice_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -596,7 +596,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDevice_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -620,7 +620,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QInputDevice_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -645,8 +645,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QInputDevice_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -751,7 +751,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDevice_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt6/QtGui/gsiDeclQInputEvent.cc b/src/gsiqt/qt6/QtGui/gsiDeclQInputEvent.cc index 6592160d7..f4b208ff1 100644 --- a/src/gsiqt/qt6/QtGui/gsiDeclQInputEvent.cc +++ b/src/gsiqt/qt6/QtGui/gsiDeclQInputEvent.cc @@ -252,7 +252,7 @@ static void _call_cbs_setAccepted_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputEvent_Adaptor *)cls)->cbs_setAccepted_864_0 (arg1); } @@ -276,7 +276,7 @@ static void _call_cbs_setTimestamp_1103_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - quint64 arg1 = args.read (heap); + quint64 arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputEvent_Adaptor *)cls)->cbs_setTimestamp_1103_0 (arg1); } diff --git a/src/gsiqt/qt6/QtGui/gsiDeclQInputMethodEvent.cc b/src/gsiqt/qt6/QtGui/gsiDeclQInputMethodEvent.cc index e4f50ab78..8e4845cce 100644 --- a/src/gsiqt/qt6/QtGui/gsiDeclQInputMethodEvent.cc +++ b/src/gsiqt/qt6/QtGui/gsiDeclQInputMethodEvent.cc @@ -113,7 +113,7 @@ static void _call_cbs_setAccepted_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputMethodEvent_Adaptor *)cls)->cbs_setAccepted_864_0 (arg1); } diff --git a/src/gsiqt/qt6/QtGui/gsiDeclQInputMethodQueryEvent.cc b/src/gsiqt/qt6/QtGui/gsiDeclQInputMethodQueryEvent.cc index d33a9cd03..5ddc72281 100644 --- a/src/gsiqt/qt6/QtGui/gsiDeclQInputMethodQueryEvent.cc +++ b/src/gsiqt/qt6/QtGui/gsiDeclQInputMethodQueryEvent.cc @@ -177,7 +177,7 @@ static void _call_cbs_setAccepted_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputMethodQueryEvent_Adaptor *)cls)->cbs_setAccepted_864_0 (arg1); } diff --git a/src/gsiqt/qt6/QtGui/gsiDeclQIntValidator.cc b/src/gsiqt/qt6/QtGui/gsiDeclQIntValidator.cc index bfde81ed2..e6b9472e4 100644 --- a/src/gsiqt/qt6/QtGui/gsiDeclQIntValidator.cc +++ b/src/gsiqt/qt6/QtGui/gsiDeclQIntValidator.cc @@ -548,7 +548,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QIntValidator_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -572,7 +572,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QIntValidator_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -614,7 +614,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QIntValidator_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -638,7 +638,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QIntValidator_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -663,8 +663,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QIntValidator_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -687,7 +687,7 @@ static void _call_cbs_fixup_c1330_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QString &arg1 = args.read (heap); + QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QIntValidator_Adaptor *)cls)->cbs_fixup_c1330_0 (arg1); } @@ -793,7 +793,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QIntValidator_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -837,8 +837,8 @@ static void _call_cbs_validate_c2171_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QString &arg1 = args.read (heap); - int &arg2 = args.read (heap); + QString &arg1 = gsi::arg_reader() (args, heap); + int &arg2 = gsi::arg_reader() (args, heap); ret.write::target_type > ((qt_gsi::Converter::target_type)((QIntValidator_Adaptor *)cls)->cbs_validate_c2171_0 (arg1, arg2)); } diff --git a/src/gsiqt/qt6/QtGui/gsiDeclQKeyEvent.cc b/src/gsiqt/qt6/QtGui/gsiDeclQKeyEvent.cc index 0b4de5456..9fc5a58a3 100644 --- a/src/gsiqt/qt6/QtGui/gsiDeclQKeyEvent.cc +++ b/src/gsiqt/qt6/QtGui/gsiDeclQKeyEvent.cc @@ -407,7 +407,7 @@ static void _call_cbs_setAccepted_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QKeyEvent_Adaptor *)cls)->cbs_setAccepted_864_0 (arg1); } @@ -431,7 +431,7 @@ static void _call_cbs_setTimestamp_1103_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - quint64 arg1 = args.read (heap); + quint64 arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QKeyEvent_Adaptor *)cls)->cbs_setTimestamp_1103_0 (arg1); } diff --git a/src/gsiqt/qt6/QtGui/gsiDeclQMouseEvent.cc b/src/gsiqt/qt6/QtGui/gsiDeclQMouseEvent.cc index db1d18679..1ffb18d97 100644 --- a/src/gsiqt/qt6/QtGui/gsiDeclQMouseEvent.cc +++ b/src/gsiqt/qt6/QtGui/gsiDeclQMouseEvent.cc @@ -594,7 +594,7 @@ static void _call_cbs_setAccepted_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMouseEvent_Adaptor *)cls)->cbs_setAccepted_864_0 (arg1); } @@ -618,7 +618,7 @@ static void _call_cbs_setTimestamp_1103_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - quint64 arg1 = args.read (heap); + quint64 arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMouseEvent_Adaptor *)cls)->cbs_setTimestamp_1103_0 (arg1); } diff --git a/src/gsiqt/qt6/QtGui/gsiDeclQMoveEvent.cc b/src/gsiqt/qt6/QtGui/gsiDeclQMoveEvent.cc index eea50f5c0..d5be7b5a1 100644 --- a/src/gsiqt/qt6/QtGui/gsiDeclQMoveEvent.cc +++ b/src/gsiqt/qt6/QtGui/gsiDeclQMoveEvent.cc @@ -153,7 +153,7 @@ static void _call_cbs_setAccepted_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMoveEvent_Adaptor *)cls)->cbs_setAccepted_864_0 (arg1); } diff --git a/src/gsiqt/qt6/QtGui/gsiDeclQMovie.cc b/src/gsiqt/qt6/QtGui/gsiDeclQMovie.cc index 0bff053c8..e670348ed 100644 --- a/src/gsiqt/qt6/QtGui/gsiDeclQMovie.cc +++ b/src/gsiqt/qt6/QtGui/gsiDeclQMovie.cc @@ -965,7 +965,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMovie_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -989,7 +989,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMovie_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1031,7 +1031,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMovie_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1073,7 +1073,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMovie_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1098,8 +1098,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMovie_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1286,7 +1286,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMovie_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt6/QtGui/gsiDeclQNativeGestureEvent.cc b/src/gsiqt/qt6/QtGui/gsiDeclQNativeGestureEvent.cc index 616d5c8f8..8be224d87 100644 --- a/src/gsiqt/qt6/QtGui/gsiDeclQNativeGestureEvent.cc +++ b/src/gsiqt/qt6/QtGui/gsiDeclQNativeGestureEvent.cc @@ -463,7 +463,7 @@ static void _call_cbs_setAccepted_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNativeGestureEvent_Adaptor *)cls)->cbs_setAccepted_864_0 (arg1); } @@ -487,7 +487,7 @@ static void _call_cbs_setTimestamp_1103_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - quint64 arg1 = args.read (heap); + quint64 arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNativeGestureEvent_Adaptor *)cls)->cbs_setTimestamp_1103_0 (arg1); } diff --git a/src/gsiqt/qt6/QtGui/gsiDeclQOffscreenSurface.cc b/src/gsiqt/qt6/QtGui/gsiDeclQOffscreenSurface.cc index ba05b80b1..3e680a256 100644 --- a/src/gsiqt/qt6/QtGui/gsiDeclQOffscreenSurface.cc +++ b/src/gsiqt/qt6/QtGui/gsiDeclQOffscreenSurface.cc @@ -575,7 +575,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QOffscreenSurface_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -599,7 +599,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QOffscreenSurface_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -641,7 +641,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QOffscreenSurface_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -665,7 +665,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QOffscreenSurface_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -690,8 +690,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QOffscreenSurface_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -892,7 +892,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QOffscreenSurface_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt6/QtGui/gsiDeclQPagedPaintDevice.cc b/src/gsiqt/qt6/QtGui/gsiDeclQPagedPaintDevice.cc index 9449ad6a1..1873893a1 100644 --- a/src/gsiqt/qt6/QtGui/gsiDeclQPagedPaintDevice.cc +++ b/src/gsiqt/qt6/QtGui/gsiDeclQPagedPaintDevice.cc @@ -413,7 +413,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPagedPaintDevice_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -437,7 +437,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QPagedPaintDevice_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -498,7 +498,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QPagedPaintDevice_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -521,7 +521,7 @@ static void _call_cbs_setPageLayout_2413_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPageLayout &arg1 = args.read (heap); + const QPageLayout &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPagedPaintDevice_Adaptor *)cls)->cbs_setPageLayout_2413_0 (arg1)); } @@ -546,8 +546,8 @@ static void _call_cbs_setPageMargins_4145_1 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMarginsF &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QMarginsF &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QPageLayout::Millimeter), heap); ret.write ((bool)((QPagedPaintDevice_Adaptor *)cls)->cbs_setPageMargins_4145_1 (arg1, arg2)); } @@ -570,7 +570,7 @@ static void _call_cbs_setPageOrientation_2816_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((bool)((QPagedPaintDevice_Adaptor *)cls)->cbs_setPageOrientation_2816_0 (arg1)); } @@ -593,7 +593,7 @@ static void _call_cbs_setPageRanges_2383_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPageRanges &arg1 = args.read (heap); + const QPageRanges &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPagedPaintDevice_Adaptor *)cls)->cbs_setPageRanges_2383_0 (arg1); } @@ -617,7 +617,7 @@ static void _call_cbs_setPageSize_2186_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPageSize &arg1 = args.read (heap); + const QPageSize &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPagedPaintDevice_Adaptor *)cls)->cbs_setPageSize_2186_0 (arg1)); } diff --git a/src/gsiqt/qt6/QtGui/gsiDeclQPaintDevice.cc b/src/gsiqt/qt6/QtGui/gsiDeclQPaintDevice.cc index 5c7b7f5a8..4b6bc4383 100644 --- a/src/gsiqt/qt6/QtGui/gsiDeclQPaintDevice.cc +++ b/src/gsiqt/qt6/QtGui/gsiDeclQPaintDevice.cc @@ -418,7 +418,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPaintDevice_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -442,7 +442,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QPaintDevice_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -484,7 +484,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QPaintDevice_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } diff --git a/src/gsiqt/qt6/QtGui/gsiDeclQPaintDeviceWindow.cc b/src/gsiqt/qt6/QtGui/gsiDeclQPaintDeviceWindow.cc index c71a0a8af..86a8a5540 100644 --- a/src/gsiqt/qt6/QtGui/gsiDeclQPaintDeviceWindow.cc +++ b/src/gsiqt/qt6/QtGui/gsiDeclQPaintDeviceWindow.cc @@ -1062,7 +1062,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPaintDeviceWindow_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1086,7 +1086,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPaintDeviceWindow_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1128,7 +1128,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPaintDeviceWindow_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1170,7 +1170,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPaintDeviceWindow_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1194,7 +1194,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPaintDeviceWindow_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1219,8 +1219,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPaintDeviceWindow_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1243,7 +1243,7 @@ static void _call_cbs_exposeEvent_1845_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QExposeEvent *arg1 = args.read (heap); + QExposeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPaintDeviceWindow_Adaptor *)cls)->cbs_exposeEvent_1845_0 (arg1); } @@ -1267,7 +1267,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPaintDeviceWindow_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1328,7 +1328,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPaintDeviceWindow_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -1389,7 +1389,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPaintDeviceWindow_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -1413,7 +1413,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPaintDeviceWindow_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -1455,7 +1455,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPaintDeviceWindow_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -1479,7 +1479,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPaintDeviceWindow_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -1539,7 +1539,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QPaintDeviceWindow_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -1616,7 +1616,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPaintDeviceWindow_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -1640,7 +1640,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPaintDeviceWindow_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -1664,7 +1664,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPaintDeviceWindow_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -1688,7 +1688,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPaintDeviceWindow_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -1712,7 +1712,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPaintDeviceWindow_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -1740,9 +1740,9 @@ static void _call_cbs_nativeEvent_6949_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - QIntegerForSizeof::Signed *arg3 = args.read::Signed * > (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + QIntegerForSizeof::Signed *arg3 = gsi::arg_reader::Signed * >() (args, heap); ret.write ((bool)((QPaintDeviceWindow_Adaptor *)cls)->cbs_nativeEvent_6949_0 (arg1, arg2, arg3)); } @@ -1801,7 +1801,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPaintDeviceWindow_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -1843,7 +1843,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QPaintDeviceWindow_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -1866,7 +1866,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPaintDeviceWindow_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -1976,7 +1976,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPaintDeviceWindow_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2038,7 +2038,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPaintDeviceWindow_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2062,7 +2062,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPaintDeviceWindow_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2086,7 +2086,7 @@ static void _call_cbs_touchEvent_1732_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTouchEvent *arg1 = args.read (heap); + QTouchEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPaintDeviceWindow_Adaptor *)cls)->cbs_touchEvent_1732_0 (arg1); } @@ -2164,7 +2164,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPaintDeviceWindow_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt6/QtGui/gsiDeclQPaintEngine.cc b/src/gsiqt/qt6/QtGui/gsiDeclQPaintEngine.cc index daaf7e0b2..2bb453609 100644 --- a/src/gsiqt/qt6/QtGui/gsiDeclQPaintEngine.cc +++ b/src/gsiqt/qt6/QtGui/gsiDeclQPaintEngine.cc @@ -929,7 +929,7 @@ static void _call_cbs_begin_1803_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintDevice *arg1 = args.read (heap); + QPaintDevice *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPaintEngine_Adaptor *)cls)->cbs_begin_1803_0 (arg1)); } @@ -971,7 +971,7 @@ static void _call_cbs_createPixmap_928_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QSize arg1 = args.read (heap); + QSize arg1 = gsi::arg_reader() (args, heap); ret.write ((QPixmap)((QPaintEngine_Adaptor *)cls)->cbs_createPixmap_928_0 (arg1)); } @@ -996,8 +996,8 @@ static void _call_cbs_createPixmapFromImage_4260_1 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QImage arg1 = args.read (heap); - QFlags arg2 = args.read > (heap); + QImage arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (Qt::AutoColor, heap); ret.write ((QPixmap)((QPaintEngine_Adaptor *)cls)->cbs_createPixmapFromImage_4260_1 (arg1, arg2)); } @@ -1020,7 +1020,7 @@ static void _call_cbs_drawEllipse_1862_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPaintEngine_Adaptor *)cls)->cbs_drawEllipse_1862_0 (arg1); } @@ -1044,7 +1044,7 @@ static void _call_cbs_drawEllipse_1792_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPaintEngine_Adaptor *)cls)->cbs_drawEllipse_1792_0 (arg1); } @@ -1074,10 +1074,10 @@ static void _call_cbs_drawImage_8645_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); - const QImage &arg2 = args.read (heap); - const QRectF &arg3 = args.read (heap); - QFlags arg4 = args.read > (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); + const QImage &arg2 = gsi::arg_reader() (args, heap); + const QRectF &arg3 = gsi::arg_reader() (args, heap); + QFlags arg4 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (Qt::AutoColor, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPaintEngine_Adaptor *)cls)->cbs_drawImage_8645_1 (arg1, arg2, arg3, arg4); } @@ -1101,7 +1101,7 @@ static void _call_cbs_drawPath_2514_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPaintEngine_Adaptor *)cls)->cbs_drawPath_2514_0 (arg1); } @@ -1129,9 +1129,9 @@ static void _call_cbs_drawPixmap_5525_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); - const QPixmap &arg2 = args.read (heap); - const QRectF &arg3 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); + const QPixmap &arg2 = gsi::arg_reader() (args, heap); + const QRectF &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPaintEngine_Adaptor *)cls)->cbs_drawPixmap_5525_0 (arg1, arg2, arg3); } @@ -1157,8 +1157,8 @@ static void _call_cbs_drawTextItem_4092_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); - const QTextItem &arg2 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); + const QTextItem &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPaintEngine_Adaptor *)cls)->cbs_drawTextItem_4092_0 (arg1, arg2); } @@ -1186,9 +1186,9 @@ static void _call_cbs_drawTiledPixmap_5649_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); - const QPixmap &arg2 = args.read (heap); - const QPointF &arg3 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); + const QPixmap &arg2 = gsi::arg_reader() (args, heap); + const QPointF &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPaintEngine_Adaptor *)cls)->cbs_drawTiledPixmap_5649_0 (arg1, arg2, arg3); } @@ -1250,7 +1250,7 @@ static void _call_cbs_updateState_3013_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPaintEngineState &arg1 = args.read (heap); + const QPaintEngineState &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPaintEngine_Adaptor *)cls)->cbs_updateState_3013_0 (arg1); } diff --git a/src/gsiqt/qt6/QtGui/gsiDeclQPaintEvent.cc b/src/gsiqt/qt6/QtGui/gsiDeclQPaintEvent.cc index 09c88a465..ac75d886f 100644 --- a/src/gsiqt/qt6/QtGui/gsiDeclQPaintEvent.cc +++ b/src/gsiqt/qt6/QtGui/gsiDeclQPaintEvent.cc @@ -175,7 +175,7 @@ static void _call_cbs_setAccepted_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPaintEvent_Adaptor *)cls)->cbs_setAccepted_864_0 (arg1); } diff --git a/src/gsiqt/qt6/QtGui/gsiDeclQPdfWriter.cc b/src/gsiqt/qt6/QtGui/gsiDeclQPdfWriter.cc index 068c9c86e..ac9e4f017 100644 --- a/src/gsiqt/qt6/QtGui/gsiDeclQPdfWriter.cc +++ b/src/gsiqt/qt6/QtGui/gsiDeclQPdfWriter.cc @@ -770,7 +770,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPdfWriter_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -794,7 +794,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPdfWriter_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -836,7 +836,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPdfWriter_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -860,7 +860,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPdfWriter_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -885,8 +885,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPdfWriter_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -909,7 +909,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPdfWriter_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -951,7 +951,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QPdfWriter_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -1048,7 +1048,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QPdfWriter_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -1099,7 +1099,7 @@ static void _call_cbs_setPageLayout_2413_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPageLayout &arg1 = args.read (heap); + const QPageLayout &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPdfWriter_Adaptor *)cls)->cbs_setPageLayout_2413_0 (arg1)); } @@ -1124,8 +1124,8 @@ static void _call_cbs_setPageMargins_4145_1 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMarginsF &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QMarginsF &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QPageLayout::Millimeter), heap); ret.write ((bool)((QPdfWriter_Adaptor *)cls)->cbs_setPageMargins_4145_1 (arg1, arg2)); } @@ -1148,7 +1148,7 @@ static void _call_cbs_setPageOrientation_2816_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((bool)((QPdfWriter_Adaptor *)cls)->cbs_setPageOrientation_2816_0 (arg1)); } @@ -1171,7 +1171,7 @@ static void _call_cbs_setPageRanges_2383_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPageRanges &arg1 = args.read (heap); + const QPageRanges &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPdfWriter_Adaptor *)cls)->cbs_setPageRanges_2383_0 (arg1); } @@ -1195,7 +1195,7 @@ static void _call_cbs_setPageSize_2186_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPageSize &arg1 = args.read (heap); + const QPageSize &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPdfWriter_Adaptor *)cls)->cbs_setPageSize_2186_0 (arg1)); } @@ -1237,7 +1237,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPdfWriter_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt6/QtGui/gsiDeclQPicture.cc b/src/gsiqt/qt6/QtGui/gsiDeclQPicture.cc index d79e314d6..0bc5f24d4 100644 --- a/src/gsiqt/qt6/QtGui/gsiDeclQPicture.cc +++ b/src/gsiqt/qt6/QtGui/gsiDeclQPicture.cc @@ -532,7 +532,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPicture_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -556,7 +556,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QPicture_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -598,7 +598,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QPicture_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -623,8 +623,8 @@ static void _call_cbs_setData_3395_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - unsigned int arg2 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + unsigned int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPicture_Adaptor *)cls)->cbs_setData_3395_0 (arg1, arg2); } diff --git a/src/gsiqt/qt6/QtGui/gsiDeclQPixmap.cc b/src/gsiqt/qt6/QtGui/gsiDeclQPixmap.cc index 55b1d33b7..96ae63f4b 100644 --- a/src/gsiqt/qt6/QtGui/gsiDeclQPixmap.cc +++ b/src/gsiqt/qt6/QtGui/gsiDeclQPixmap.cc @@ -1256,7 +1256,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPixmap_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -1280,7 +1280,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QPixmap_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -1322,7 +1322,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QPixmap_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } diff --git a/src/gsiqt/qt6/QtGui/gsiDeclQPlatformSurfaceEvent.cc b/src/gsiqt/qt6/QtGui/gsiDeclQPlatformSurfaceEvent.cc index 0a7e26108..0e6d32da8 100644 --- a/src/gsiqt/qt6/QtGui/gsiDeclQPlatformSurfaceEvent.cc +++ b/src/gsiqt/qt6/QtGui/gsiDeclQPlatformSurfaceEvent.cc @@ -133,7 +133,7 @@ static void _call_cbs_setAccepted_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlatformSurfaceEvent_Adaptor *)cls)->cbs_setAccepted_864_0 (arg1); } diff --git a/src/gsiqt/qt6/QtGui/gsiDeclQPointerEvent.cc b/src/gsiqt/qt6/QtGui/gsiDeclQPointerEvent.cc index 901f06b6f..c91bf1eb1 100644 --- a/src/gsiqt/qt6/QtGui/gsiDeclQPointerEvent.cc +++ b/src/gsiqt/qt6/QtGui/gsiDeclQPointerEvent.cc @@ -621,7 +621,7 @@ static void _call_cbs_setAccepted_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPointerEvent_Adaptor *)cls)->cbs_setAccepted_864_0 (arg1); } @@ -645,7 +645,7 @@ static void _call_cbs_setTimestamp_1103_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - quint64 arg1 = args.read (heap); + quint64 arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPointerEvent_Adaptor *)cls)->cbs_setTimestamp_1103_0 (arg1); } diff --git a/src/gsiqt/qt6/QtGui/gsiDeclQPointingDevice.cc b/src/gsiqt/qt6/QtGui/gsiDeclQPointingDevice.cc index 46b411265..94f30a2c1 100644 --- a/src/gsiqt/qt6/QtGui/gsiDeclQPointingDevice.cc +++ b/src/gsiqt/qt6/QtGui/gsiDeclQPointingDevice.cc @@ -557,7 +557,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPointingDevice_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -581,7 +581,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPointingDevice_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -623,7 +623,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPointingDevice_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -647,7 +647,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPointingDevice_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -672,8 +672,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPointingDevice_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -805,7 +805,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPointingDevice_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt6/QtGui/gsiDeclQRasterWindow.cc b/src/gsiqt/qt6/QtGui/gsiDeclQRasterWindow.cc index 91445f0a0..63fa7443f 100644 --- a/src/gsiqt/qt6/QtGui/gsiDeclQRasterWindow.cc +++ b/src/gsiqt/qt6/QtGui/gsiDeclQRasterWindow.cc @@ -930,7 +930,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRasterWindow_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -954,7 +954,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRasterWindow_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -996,7 +996,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRasterWindow_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1038,7 +1038,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRasterWindow_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1062,7 +1062,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QRasterWindow_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1087,8 +1087,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QRasterWindow_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1111,7 +1111,7 @@ static void _call_cbs_exposeEvent_1845_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QExposeEvent *arg1 = args.read (heap); + QExposeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRasterWindow_Adaptor *)cls)->cbs_exposeEvent_1845_0 (arg1); } @@ -1135,7 +1135,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRasterWindow_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1196,7 +1196,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRasterWindow_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -1257,7 +1257,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRasterWindow_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -1281,7 +1281,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRasterWindow_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -1323,7 +1323,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRasterWindow_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -1347,7 +1347,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRasterWindow_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -1407,7 +1407,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QRasterWindow_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -1484,7 +1484,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRasterWindow_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -1508,7 +1508,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRasterWindow_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -1532,7 +1532,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRasterWindow_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -1556,7 +1556,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRasterWindow_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -1580,7 +1580,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRasterWindow_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -1608,9 +1608,9 @@ static void _call_cbs_nativeEvent_6949_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - QIntegerForSizeof::Signed *arg3 = args.read::Signed * > (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + QIntegerForSizeof::Signed *arg3 = gsi::arg_reader::Signed * >() (args, heap); ret.write ((bool)((QRasterWindow_Adaptor *)cls)->cbs_nativeEvent_6949_0 (arg1, arg2, arg3)); } @@ -1669,7 +1669,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRasterWindow_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -1711,7 +1711,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QRasterWindow_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -1734,7 +1734,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRasterWindow_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -1844,7 +1844,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRasterWindow_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -1906,7 +1906,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRasterWindow_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -1930,7 +1930,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRasterWindow_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -1954,7 +1954,7 @@ static void _call_cbs_touchEvent_1732_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTouchEvent *arg1 = args.read (heap); + QTouchEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRasterWindow_Adaptor *)cls)->cbs_touchEvent_1732_0 (arg1); } @@ -2032,7 +2032,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRasterWindow_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt6/QtGui/gsiDeclQRegularExpressionValidator.cc b/src/gsiqt/qt6/QtGui/gsiDeclQRegularExpressionValidator.cc index 4b488fe39..07f92a57b 100644 --- a/src/gsiqt/qt6/QtGui/gsiDeclQRegularExpressionValidator.cc +++ b/src/gsiqt/qt6/QtGui/gsiDeclQRegularExpressionValidator.cc @@ -439,7 +439,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRegularExpressionValidator_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -463,7 +463,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRegularExpressionValidator_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -505,7 +505,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRegularExpressionValidator_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -529,7 +529,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QRegularExpressionValidator_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -554,8 +554,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QRegularExpressionValidator_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -578,7 +578,7 @@ static void _call_cbs_fixup_c1330_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QString &arg1 = args.read (heap); + QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRegularExpressionValidator_Adaptor *)cls)->cbs_fixup_c1330_0 (arg1); } @@ -702,7 +702,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRegularExpressionValidator_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -728,8 +728,8 @@ static void _call_cbs_validate_c2171_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QString &arg1 = args.read (heap); - int &arg2 = args.read (heap); + QString &arg1 = gsi::arg_reader() (args, heap); + int &arg2 = gsi::arg_reader() (args, heap); ret.write::target_type > ((qt_gsi::Converter::target_type)((QRegularExpressionValidator_Adaptor *)cls)->cbs_validate_c2171_0 (arg1, arg2)); } diff --git a/src/gsiqt/qt6/QtGui/gsiDeclQResizeEvent.cc b/src/gsiqt/qt6/QtGui/gsiDeclQResizeEvent.cc index 54f03bf20..0a54dc86f 100644 --- a/src/gsiqt/qt6/QtGui/gsiDeclQResizeEvent.cc +++ b/src/gsiqt/qt6/QtGui/gsiDeclQResizeEvent.cc @@ -153,7 +153,7 @@ static void _call_cbs_setAccepted_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QResizeEvent_Adaptor *)cls)->cbs_setAccepted_864_0 (arg1); } diff --git a/src/gsiqt/qt6/QtGui/gsiDeclQScreen.cc b/src/gsiqt/qt6/QtGui/gsiDeclQScreen.cc index b69e6cc11..cfa5b0dc6 100644 --- a/src/gsiqt/qt6/QtGui/gsiDeclQScreen.cc +++ b/src/gsiqt/qt6/QtGui/gsiDeclQScreen.cc @@ -929,7 +929,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScreen_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -953,7 +953,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScreen_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -995,7 +995,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScreen_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1019,7 +1019,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QScreen_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1044,8 +1044,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QScreen_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1297,7 +1297,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScreen_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt6/QtGui/gsiDeclQScreenOrientationChangeEvent.cc b/src/gsiqt/qt6/QtGui/gsiDeclQScreenOrientationChangeEvent.cc index 02a99728d..978518764 100644 --- a/src/gsiqt/qt6/QtGui/gsiDeclQScreenOrientationChangeEvent.cc +++ b/src/gsiqt/qt6/QtGui/gsiDeclQScreenOrientationChangeEvent.cc @@ -153,7 +153,7 @@ static void _call_cbs_setAccepted_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScreenOrientationChangeEvent_Adaptor *)cls)->cbs_setAccepted_864_0 (arg1); } diff --git a/src/gsiqt/qt6/QtGui/gsiDeclQScrollEvent.cc b/src/gsiqt/qt6/QtGui/gsiDeclQScrollEvent.cc index e5ded4c69..a985e875b 100644 --- a/src/gsiqt/qt6/QtGui/gsiDeclQScrollEvent.cc +++ b/src/gsiqt/qt6/QtGui/gsiDeclQScrollEvent.cc @@ -172,7 +172,7 @@ static void _call_cbs_setAccepted_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollEvent_Adaptor *)cls)->cbs_setAccepted_864_0 (arg1); } diff --git a/src/gsiqt/qt6/QtGui/gsiDeclQScrollPrepareEvent.cc b/src/gsiqt/qt6/QtGui/gsiDeclQScrollPrepareEvent.cc index 05ec6865a..09caf25fd 100644 --- a/src/gsiqt/qt6/QtGui/gsiDeclQScrollPrepareEvent.cc +++ b/src/gsiqt/qt6/QtGui/gsiDeclQScrollPrepareEvent.cc @@ -247,7 +247,7 @@ static void _call_cbs_setAccepted_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollPrepareEvent_Adaptor *)cls)->cbs_setAccepted_864_0 (arg1); } diff --git a/src/gsiqt/qt6/QtGui/gsiDeclQShortcut.cc b/src/gsiqt/qt6/QtGui/gsiDeclQShortcut.cc index 5990a3008..c7b69bf80 100644 --- a/src/gsiqt/qt6/QtGui/gsiDeclQShortcut.cc +++ b/src/gsiqt/qt6/QtGui/gsiDeclQShortcut.cc @@ -688,7 +688,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QShortcut_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -712,7 +712,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QShortcut_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -754,7 +754,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QShortcut_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -778,7 +778,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QShortcut_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -803,8 +803,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QShortcut_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -909,7 +909,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QShortcut_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt6/QtGui/gsiDeclQShortcutEvent.cc b/src/gsiqt/qt6/QtGui/gsiDeclQShortcutEvent.cc index b71f45628..f4b49e385 100644 --- a/src/gsiqt/qt6/QtGui/gsiDeclQShortcutEvent.cc +++ b/src/gsiqt/qt6/QtGui/gsiDeclQShortcutEvent.cc @@ -178,7 +178,7 @@ static void _call_cbs_setAccepted_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QShortcutEvent_Adaptor *)cls)->cbs_setAccepted_864_0 (arg1); } diff --git a/src/gsiqt/qt6/QtGui/gsiDeclQShowEvent.cc b/src/gsiqt/qt6/QtGui/gsiDeclQShowEvent.cc index 273f1ecac..db5e4dd77 100644 --- a/src/gsiqt/qt6/QtGui/gsiDeclQShowEvent.cc +++ b/src/gsiqt/qt6/QtGui/gsiDeclQShowEvent.cc @@ -113,7 +113,7 @@ static void _call_cbs_setAccepted_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QShowEvent_Adaptor *)cls)->cbs_setAccepted_864_0 (arg1); } diff --git a/src/gsiqt/qt6/QtGui/gsiDeclQSinglePointEvent.cc b/src/gsiqt/qt6/QtGui/gsiDeclQSinglePointEvent.cc index 86c986626..c9d8b628f 100644 --- a/src/gsiqt/qt6/QtGui/gsiDeclQSinglePointEvent.cc +++ b/src/gsiqt/qt6/QtGui/gsiDeclQSinglePointEvent.cc @@ -384,7 +384,7 @@ static void _call_cbs_setAccepted_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSinglePointEvent_Adaptor *)cls)->cbs_setAccepted_864_0 (arg1); } @@ -408,7 +408,7 @@ static void _call_cbs_setTimestamp_1103_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - quint64 arg1 = args.read (heap); + quint64 arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSinglePointEvent_Adaptor *)cls)->cbs_setTimestamp_1103_0 (arg1); } diff --git a/src/gsiqt/qt6/QtGui/gsiDeclQStandardItem.cc b/src/gsiqt/qt6/QtGui/gsiDeclQStandardItem.cc index 9b21c3616..493626df8 100644 --- a/src/gsiqt/qt6/QtGui/gsiDeclQStandardItem.cc +++ b/src/gsiqt/qt6/QtGui/gsiDeclQStandardItem.cc @@ -1978,7 +1978,7 @@ static void _call_cbs_data_c767_1 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::UserRole + 1, heap); ret.write ((QVariant)((QStandardItem_Adaptor *)cls)->cbs_data_c767_1 (arg1)); } @@ -2016,7 +2016,7 @@ static void _call_cbs_multiData_c2196_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QModelRoleDataSpan arg1 = args.read (heap); + QModelRoleDataSpan arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItem_Adaptor *)cls)->cbs_multiData_c2196_0 (arg1); } @@ -2040,7 +2040,7 @@ static void _call_cbs_operator_lt__c2610_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStandardItem &arg1 = args.read (heap); + const QStandardItem &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QStandardItem_Adaptor *)cls)->cbs_operator_lt__c2610_0 (arg1)); } @@ -2063,7 +2063,7 @@ static void _call_cbs_read_1697_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDataStream &arg1 = args.read (heap); + QDataStream &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItem_Adaptor *)cls)->cbs_read_1697_0 (arg1); } @@ -2089,8 +2089,8 @@ static void _call_cbs_setData_2778_1 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVariant &arg1 = args.read (heap); - int arg2 = args.read (heap); + const QVariant &arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::UserRole + 1, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItem_Adaptor *)cls)->cbs_setData_2778_1 (arg1, arg2); } @@ -2133,7 +2133,7 @@ static void _call_cbs_write_c1697_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDataStream &arg1 = args.read (heap); + QDataStream &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItem_Adaptor *)cls)->cbs_write_c1697_0 (arg1); } diff --git a/src/gsiqt/qt6/QtGui/gsiDeclQStandardItemModel.cc b/src/gsiqt/qt6/QtGui/gsiDeclQStandardItemModel.cc index 40a20e604..6368951c4 100644 --- a/src/gsiqt/qt6/QtGui/gsiDeclQStandardItemModel.cc +++ b/src/gsiqt/qt6/QtGui/gsiDeclQStandardItemModel.cc @@ -2661,7 +2661,7 @@ static void _call_cbs_buddy_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QStandardItemModel_Adaptor *)cls)->cbs_buddy_c2395_0 (arg1)); } @@ -2692,11 +2692,11 @@ static void _call_cbs_canDropMimeData_c7425_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMimeData *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - const QModelIndex &arg5 = args.read (heap); + const QMimeData *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + const QModelIndex &arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QStandardItemModel_Adaptor *)cls)->cbs_canDropMimeData_c7425_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -2719,7 +2719,7 @@ static void _call_cbs_canFetchMore_c2395_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QStandardItemModel_Adaptor *)cls)->cbs_canFetchMore_c2395_0 (arg1)); } @@ -2786,7 +2786,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItemModel_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -2810,7 +2810,7 @@ static void _call_cbs_clearItemData_2395_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QStandardItemModel_Adaptor *)cls)->cbs_clearItemData_2395_0 (arg1)); } @@ -2833,7 +2833,7 @@ static void _call_cbs_columnCount_c2395_1 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((int)((QStandardItemModel_Adaptor *)cls)->cbs_columnCount_c2395_1 (arg1)); } @@ -3060,7 +3060,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItemModel_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -3086,8 +3086,8 @@ static void _call_cbs_data_c3054_1 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::DisplayRole, heap); ret.write ((QVariant)((QStandardItemModel_Adaptor *)cls)->cbs_data_c3054_1 (arg1, arg2)); } @@ -3179,7 +3179,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItemModel_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -3211,11 +3211,11 @@ static void _call_cbs_dropMimeData_7425_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMimeData *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - const QModelIndex &arg5 = args.read (heap); + const QMimeData *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + const QModelIndex &arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QStandardItemModel_Adaptor *)cls)->cbs_dropMimeData_7425_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -3365,7 +3365,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QStandardItemModel_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -3390,8 +3390,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QStandardItemModel_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -3414,7 +3414,7 @@ static void _call_cbs_fetchMore_2395_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItemModel_Adaptor *)cls)->cbs_fetchMore_2395_0 (arg1); } @@ -3438,7 +3438,7 @@ static void _call_cbs_flags_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QFlags)((QStandardItemModel_Adaptor *)cls)->cbs_flags_c2395_0 (arg1)); } @@ -3461,7 +3461,7 @@ static void _call_cbs_hasChildren_c2395_1 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QStandardItemModel_Adaptor *)cls)->cbs_hasChildren_c2395_1 (arg1)); } @@ -3488,9 +3488,9 @@ static void _call_cbs_headerData_c3231_1 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::DisplayRole, heap); ret.write ((QVariant)((QStandardItemModel_Adaptor *)cls)->cbs_headerData_c3231_1 (arg1, arg2, arg3)); } @@ -3541,9 +3541,9 @@ static void _call_cbs_index_c3713_1 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((QModelIndex)((QStandardItemModel_Adaptor *)cls)->cbs_index_c3713_1 (arg1, arg2, arg3)); } @@ -3570,9 +3570,9 @@ static void _call_cbs_insertColumns_3713_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QStandardItemModel_Adaptor *)cls)->cbs_insertColumns_3713_1 (arg1, arg2, arg3)); } @@ -3599,9 +3599,9 @@ static void _call_cbs_insertRows_3713_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QStandardItemModel_Adaptor *)cls)->cbs_insertRows_3713_1 (arg1, arg2, arg3)); } @@ -3660,7 +3660,7 @@ static void _call_cbs_itemData_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QMap)((QStandardItemModel_Adaptor *)cls)->cbs_itemData_c2395_0 (arg1)); } @@ -3733,11 +3733,11 @@ static void _call_cbs_match_c7932_2 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - const QVariant &arg3 = args.read (heap); - int arg4 = args.read (heap); - QFlags arg5 = args.read > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QVariant &arg3 = gsi::arg_reader() (args, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (1, heap); + QFlags arg5 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (Qt::MatchFlags(Qt::MatchStartsWith|Qt::MatchWrap), heap); ret.write > ((QList)((QStandardItemModel_Adaptor *)cls)->cbs_match_c7932_2 (arg1, arg2, arg3, arg4, arg5)); } @@ -3760,7 +3760,7 @@ static void _call_cbs_mimeData_c3010_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); ret.write ((QMimeData *)((QStandardItemModel_Adaptor *)cls)->cbs_mimeData_c3010_0 (arg1)); } @@ -3838,11 +3838,11 @@ static void _call_cbs_moveColumns_6659_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - const QModelIndex &arg4 = args.read (heap); - int arg5 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QModelIndex &arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QStandardItemModel_Adaptor *)cls)->cbs_moveColumns_6659_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -3873,11 +3873,11 @@ static void _call_cbs_moveRows_6659_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - const QModelIndex &arg4 = args.read (heap); - int arg5 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QModelIndex &arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QStandardItemModel_Adaptor *)cls)->cbs_moveRows_6659_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -3902,8 +3902,8 @@ static void _call_cbs_multiData_c4483_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - QModelRoleDataSpan arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + QModelRoleDataSpan arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItemModel_Adaptor *)cls)->cbs_multiData_c4483_0 (arg1, arg2); } @@ -3945,7 +3945,7 @@ static void _call_cbs_parent_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QStandardItemModel_Adaptor *)cls)->cbs_parent_c2395_0 (arg1)); } @@ -4004,9 +4004,9 @@ static void _call_cbs_removeColumns_3713_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QStandardItemModel_Adaptor *)cls)->cbs_removeColumns_3713_1 (arg1, arg2, arg3)); } @@ -4033,9 +4033,9 @@ static void _call_cbs_removeRows_3713_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QStandardItemModel_Adaptor *)cls)->cbs_removeRows_3713_1 (arg1, arg2, arg3)); } @@ -4117,7 +4117,7 @@ static void _call_cbs_rowCount_c2395_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((int)((QStandardItemModel_Adaptor *)cls)->cbs_rowCount_c2395_1 (arg1)); } @@ -4328,9 +4328,9 @@ static void _call_cbs_setData_5065_1 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::EditRole, heap); ret.write ((bool)((QStandardItemModel_Adaptor *)cls)->cbs_setData_5065_1 (arg1, arg2, arg3)); } @@ -4359,10 +4359,10 @@ static void _call_cbs_setHeaderData_5242_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - const QVariant &arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + const QVariant &arg3 = gsi::arg_reader() (args, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::EditRole, heap); ret.write ((bool)((QStandardItemModel_Adaptor *)cls)->cbs_setHeaderData_5242_1 (arg1, arg2, arg3, arg4)); } @@ -4387,8 +4387,8 @@ static void _call_cbs_setItemData_5414_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QMap &arg2 = args.read & > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QMap &arg2 = gsi::arg_reader & >() (args, heap); ret.write ((bool)((QStandardItemModel_Adaptor *)cls)->cbs_setItemData_5414_0 (arg1, arg2)); } @@ -4415,9 +4415,9 @@ static void _call_cbs_sibling_c3713_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QStandardItemModel_Adaptor *)cls)->cbs_sibling_c3713_0 (arg1, arg2, arg3)); } @@ -4442,8 +4442,8 @@ static void _call_cbs_sort_2340_1 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::AscendingOrder), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItemModel_Adaptor *)cls)->cbs_sort_2340_1 (arg1, arg2); } @@ -4467,7 +4467,7 @@ static void _call_cbs_span_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QSize)((QStandardItemModel_Adaptor *)cls)->cbs_span_c2395_0 (arg1)); } @@ -4547,7 +4547,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItemModel_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt6/QtGui/gsiDeclQStatusTipEvent.cc b/src/gsiqt/qt6/QtGui/gsiDeclQStatusTipEvent.cc index 401651a6f..bf119a0d3 100644 --- a/src/gsiqt/qt6/QtGui/gsiDeclQStatusTipEvent.cc +++ b/src/gsiqt/qt6/QtGui/gsiDeclQStatusTipEvent.cc @@ -133,7 +133,7 @@ static void _call_cbs_setAccepted_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStatusTipEvent_Adaptor *)cls)->cbs_setAccepted_864_0 (arg1); } diff --git a/src/gsiqt/qt6/QtGui/gsiDeclQStyleHints.cc b/src/gsiqt/qt6/QtGui/gsiDeclQStyleHints.cc index 002398fe9..a4e6a6f55 100644 --- a/src/gsiqt/qt6/QtGui/gsiDeclQStyleHints.cc +++ b/src/gsiqt/qt6/QtGui/gsiDeclQStyleHints.cc @@ -930,7 +930,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStyleHints_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -972,7 +972,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStyleHints_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1014,7 +1014,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStyleHints_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1038,7 +1038,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QStyleHints_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1063,8 +1063,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QStyleHints_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1313,7 +1313,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStyleHints_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt6/QtGui/gsiDeclQSyntaxHighlighter.cc b/src/gsiqt/qt6/QtGui/gsiDeclQSyntaxHighlighter.cc index 2f22ccf91..8e19802f9 100644 --- a/src/gsiqt/qt6/QtGui/gsiDeclQSyntaxHighlighter.cc +++ b/src/gsiqt/qt6/QtGui/gsiDeclQSyntaxHighlighter.cc @@ -450,7 +450,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSyntaxHighlighter_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -516,7 +516,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSyntaxHighlighter_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -558,7 +558,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSyntaxHighlighter_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -582,7 +582,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSyntaxHighlighter_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -607,8 +607,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSyntaxHighlighter_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -649,7 +649,7 @@ static void _call_cbs_highlightBlock_2025_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSyntaxHighlighter_Adaptor *)cls)->cbs_highlightBlock_2025_0 (arg1); } @@ -882,7 +882,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSyntaxHighlighter_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt6/QtGui/gsiDeclQTabletEvent.cc b/src/gsiqt/qt6/QtGui/gsiDeclQTabletEvent.cc index d4cd48c48..51164dc77 100644 --- a/src/gsiqt/qt6/QtGui/gsiDeclQTabletEvent.cc +++ b/src/gsiqt/qt6/QtGui/gsiDeclQTabletEvent.cc @@ -492,7 +492,7 @@ static void _call_cbs_setAccepted_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabletEvent_Adaptor *)cls)->cbs_setAccepted_864_0 (arg1); } @@ -516,7 +516,7 @@ static void _call_cbs_setTimestamp_1103_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - quint64 arg1 = args.read (heap); + quint64 arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabletEvent_Adaptor *)cls)->cbs_setTimestamp_1103_0 (arg1); } diff --git a/src/gsiqt/qt6/QtGui/gsiDeclQTextBlockGroup.cc b/src/gsiqt/qt6/QtGui/gsiDeclQTextBlockGroup.cc index 17f51596d..95de3d4b6 100644 --- a/src/gsiqt/qt6/QtGui/gsiDeclQTextBlockGroup.cc +++ b/src/gsiqt/qt6/QtGui/gsiDeclQTextBlockGroup.cc @@ -315,7 +315,7 @@ static void _call_cbs_blockFormatChanged_2306_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextBlock &arg1 = args.read (heap); + const QTextBlock &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBlockGroup_Adaptor *)cls)->cbs_blockFormatChanged_2306_0 (arg1); } @@ -339,7 +339,7 @@ static void _call_cbs_blockInserted_2306_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextBlock &arg1 = args.read (heap); + const QTextBlock &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBlockGroup_Adaptor *)cls)->cbs_blockInserted_2306_0 (arg1); } @@ -377,7 +377,7 @@ static void _call_cbs_blockRemoved_2306_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextBlock &arg1 = args.read (heap); + const QTextBlock &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBlockGroup_Adaptor *)cls)->cbs_blockRemoved_2306_0 (arg1); } @@ -401,7 +401,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBlockGroup_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -425,7 +425,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBlockGroup_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -467,7 +467,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBlockGroup_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -491,7 +491,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextBlockGroup_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -516,8 +516,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextBlockGroup_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -641,7 +641,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBlockGroup_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt6/QtGui/gsiDeclQTextDocument.cc b/src/gsiqt/qt6/QtGui/gsiDeclQTextDocument.cc index 2eccff2fc..6bbca94cf 100644 --- a/src/gsiqt/qt6/QtGui/gsiDeclQTextDocument.cc +++ b/src/gsiqt/qt6/QtGui/gsiDeclQTextDocument.cc @@ -2094,7 +2094,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextDocument_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -2176,7 +2176,7 @@ static void _call_cbs_createObject_2432_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextFormat &arg1 = args.read (heap); + const QTextFormat &arg1 = gsi::arg_reader() (args, heap); ret.write ((QTextObject *)((QTextDocument_Adaptor *)cls)->cbs_createObject_2432_0 (arg1)); } @@ -2217,7 +2217,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextDocument_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -2259,7 +2259,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextDocument_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -2297,7 +2297,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextDocument_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -2322,8 +2322,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextDocument_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -2366,8 +2366,8 @@ static void _call_cbs_loadResource_2360_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QUrl &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QUrl &arg2 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QTextDocument_Adaptor *)cls)->cbs_loadResource_2360_0 (arg1, arg2)); } @@ -2490,7 +2490,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextDocument_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt6/QtGui/gsiDeclQTextFrame.cc b/src/gsiqt/qt6/QtGui/gsiDeclQTextFrame.cc index 6047b993b..c8050b5f5 100644 --- a/src/gsiqt/qt6/QtGui/gsiDeclQTextFrame.cc +++ b/src/gsiqt/qt6/QtGui/gsiDeclQTextFrame.cc @@ -420,7 +420,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextFrame_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -444,7 +444,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextFrame_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -486,7 +486,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextFrame_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -510,7 +510,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextFrame_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -535,8 +535,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextFrame_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -660,7 +660,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextFrame_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt6/QtGui/gsiDeclQTextList.cc b/src/gsiqt/qt6/QtGui/gsiDeclQTextList.cc index 744100f5b..9475b7b78 100644 --- a/src/gsiqt/qt6/QtGui/gsiDeclQTextList.cc +++ b/src/gsiqt/qt6/QtGui/gsiDeclQTextList.cc @@ -510,7 +510,7 @@ static void _call_cbs_blockFormatChanged_2306_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextBlock &arg1 = args.read (heap); + const QTextBlock &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextList_Adaptor *)cls)->cbs_blockFormatChanged_2306_0 (arg1); } @@ -534,7 +534,7 @@ static void _call_cbs_blockInserted_2306_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextBlock &arg1 = args.read (heap); + const QTextBlock &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextList_Adaptor *)cls)->cbs_blockInserted_2306_0 (arg1); } @@ -572,7 +572,7 @@ static void _call_cbs_blockRemoved_2306_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextBlock &arg1 = args.read (heap); + const QTextBlock &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextList_Adaptor *)cls)->cbs_blockRemoved_2306_0 (arg1); } @@ -596,7 +596,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextList_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -620,7 +620,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextList_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -662,7 +662,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextList_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -686,7 +686,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextList_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -711,8 +711,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextList_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -817,7 +817,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextList_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt6/QtGui/gsiDeclQTextObject.cc b/src/gsiqt/qt6/QtGui/gsiDeclQTextObject.cc index 29a758d36..042874376 100644 --- a/src/gsiqt/qt6/QtGui/gsiDeclQTextObject.cc +++ b/src/gsiqt/qt6/QtGui/gsiDeclQTextObject.cc @@ -325,7 +325,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextObject_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -349,7 +349,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextObject_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -391,7 +391,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextObject_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -415,7 +415,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextObject_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -440,8 +440,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextObject_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -565,7 +565,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextObject_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt6/QtGui/gsiDeclQTextObjectInterface.cc b/src/gsiqt/qt6/QtGui/gsiDeclQTextObjectInterface.cc index e14fa65b1..3bc03ba1c 100644 --- a/src/gsiqt/qt6/QtGui/gsiDeclQTextObjectInterface.cc +++ b/src/gsiqt/qt6/QtGui/gsiDeclQTextObjectInterface.cc @@ -207,11 +207,11 @@ static void _call_cbs_drawObject_8010_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QRectF &arg2 = args.read (heap); - QTextDocument *arg3 = args.read (heap); - int arg4 = args.read (heap); - const QTextFormat &arg5 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QRectF &arg2 = gsi::arg_reader() (args, heap); + QTextDocument *arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + const QTextFormat &arg5 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextObjectInterface_Adaptor *)cls)->cbs_drawObject_8010_0 (arg1, arg2, arg3, arg4, arg5); } @@ -239,9 +239,9 @@ static void _call_cbs_intrinsicSize_4938_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTextDocument *arg1 = args.read (heap); - int arg2 = args.read (heap); - const QTextFormat &arg3 = args.read (heap); + QTextDocument *arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QTextFormat &arg3 = gsi::arg_reader() (args, heap); ret.write ((QSizeF)((QTextObjectInterface_Adaptor *)cls)->cbs_intrinsicSize_4938_0 (arg1, arg2, arg3)); } diff --git a/src/gsiqt/qt6/QtGui/gsiDeclQTextTable.cc b/src/gsiqt/qt6/QtGui/gsiDeclQTextTable.cc index cbd69533e..129d563fb 100644 --- a/src/gsiqt/qt6/QtGui/gsiDeclQTextTable.cc +++ b/src/gsiqt/qt6/QtGui/gsiDeclQTextTable.cc @@ -699,7 +699,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextTable_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -723,7 +723,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextTable_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -765,7 +765,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextTable_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -789,7 +789,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextTable_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -814,8 +814,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextTable_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -920,7 +920,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextTable_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt6/QtGui/gsiDeclQToolBarChangeEvent.cc b/src/gsiqt/qt6/QtGui/gsiDeclQToolBarChangeEvent.cc index 38119c08f..165c2a0c6 100644 --- a/src/gsiqt/qt6/QtGui/gsiDeclQToolBarChangeEvent.cc +++ b/src/gsiqt/qt6/QtGui/gsiDeclQToolBarChangeEvent.cc @@ -133,7 +133,7 @@ static void _call_cbs_setAccepted_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBarChangeEvent_Adaptor *)cls)->cbs_setAccepted_864_0 (arg1); } diff --git a/src/gsiqt/qt6/QtGui/gsiDeclQTouchEvent.cc b/src/gsiqt/qt6/QtGui/gsiDeclQTouchEvent.cc index 3ba99dc8a..75bb8a0ae 100644 --- a/src/gsiqt/qt6/QtGui/gsiDeclQTouchEvent.cc +++ b/src/gsiqt/qt6/QtGui/gsiDeclQTouchEvent.cc @@ -407,7 +407,7 @@ static void _call_cbs_setAccepted_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTouchEvent_Adaptor *)cls)->cbs_setAccepted_864_0 (arg1); } @@ -431,7 +431,7 @@ static void _call_cbs_setTimestamp_1103_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - quint64 arg1 = args.read (heap); + quint64 arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTouchEvent_Adaptor *)cls)->cbs_setTimestamp_1103_0 (arg1); } diff --git a/src/gsiqt/qt6/QtGui/gsiDeclQUndoCommand.cc b/src/gsiqt/qt6/QtGui/gsiDeclQUndoCommand.cc index 309f0939c..724f2f7c0 100644 --- a/src/gsiqt/qt6/QtGui/gsiDeclQUndoCommand.cc +++ b/src/gsiqt/qt6/QtGui/gsiDeclQUndoCommand.cc @@ -417,7 +417,7 @@ static void _call_cbs_mergeWith_2507_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QUndoCommand *arg1 = args.read (heap); + const QUndoCommand *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QUndoCommand_Adaptor *)cls)->cbs_mergeWith_2507_0 (arg1)); } diff --git a/src/gsiqt/qt6/QtGui/gsiDeclQUndoGroup.cc b/src/gsiqt/qt6/QtGui/gsiDeclQUndoGroup.cc index 016df2615..f6e8a0ffc 100644 --- a/src/gsiqt/qt6/QtGui/gsiDeclQUndoGroup.cc +++ b/src/gsiqt/qt6/QtGui/gsiDeclQUndoGroup.cc @@ -644,7 +644,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoGroup_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -686,7 +686,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoGroup_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -728,7 +728,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoGroup_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -752,7 +752,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QUndoGroup_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -777,8 +777,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QUndoGroup_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -919,7 +919,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoGroup_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt6/QtGui/gsiDeclQUndoStack.cc b/src/gsiqt/qt6/QtGui/gsiDeclQUndoStack.cc index 75fb4ba1e..dd9754474 100644 --- a/src/gsiqt/qt6/QtGui/gsiDeclQUndoStack.cc +++ b/src/gsiqt/qt6/QtGui/gsiDeclQUndoStack.cc @@ -817,7 +817,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoStack_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -859,7 +859,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoStack_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -901,7 +901,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoStack_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -925,7 +925,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QUndoStack_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -950,8 +950,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QUndoStack_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1092,7 +1092,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoStack_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt6/QtGui/gsiDeclQValidator.cc b/src/gsiqt/qt6/QtGui/gsiDeclQValidator.cc index 4a3687223..022b5a15d 100644 --- a/src/gsiqt/qt6/QtGui/gsiDeclQValidator.cc +++ b/src/gsiqt/qt6/QtGui/gsiDeclQValidator.cc @@ -421,7 +421,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QValidator_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -445,7 +445,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QValidator_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -487,7 +487,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QValidator_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -511,7 +511,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QValidator_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -536,8 +536,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QValidator_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -560,7 +560,7 @@ static void _call_cbs_fixup_c1330_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QString &arg1 = args.read (heap); + QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QValidator_Adaptor *)cls)->cbs_fixup_c1330_0 (arg1); } @@ -666,7 +666,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QValidator_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -692,8 +692,8 @@ static void _call_cbs_validate_c2171_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QString &arg1 = args.read (heap); - int &arg2 = args.read (heap); + QString &arg1 = gsi::arg_reader() (args, heap); + int &arg2 = gsi::arg_reader() (args, heap); ret.write::target_type > ((qt_gsi::Converter::target_type)((QValidator_Adaptor *)cls)->cbs_validate_c2171_0 (arg1, arg2)); } diff --git a/src/gsiqt/qt6/QtGui/gsiDeclQWhatsThisClickedEvent.cc b/src/gsiqt/qt6/QtGui/gsiDeclQWhatsThisClickedEvent.cc index 68520c557..376661d2b 100644 --- a/src/gsiqt/qt6/QtGui/gsiDeclQWhatsThisClickedEvent.cc +++ b/src/gsiqt/qt6/QtGui/gsiDeclQWhatsThisClickedEvent.cc @@ -133,7 +133,7 @@ static void _call_cbs_setAccepted_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWhatsThisClickedEvent_Adaptor *)cls)->cbs_setAccepted_864_0 (arg1); } diff --git a/src/gsiqt/qt6/QtGui/gsiDeclQWheelEvent.cc b/src/gsiqt/qt6/QtGui/gsiDeclQWheelEvent.cc index 142b0ae5a..5aca36086 100644 --- a/src/gsiqt/qt6/QtGui/gsiDeclQWheelEvent.cc +++ b/src/gsiqt/qt6/QtGui/gsiDeclQWheelEvent.cc @@ -443,7 +443,7 @@ static void _call_cbs_setAccepted_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWheelEvent_Adaptor *)cls)->cbs_setAccepted_864_0 (arg1); } @@ -467,7 +467,7 @@ static void _call_cbs_setTimestamp_1103_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - quint64 arg1 = args.read (heap); + quint64 arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWheelEvent_Adaptor *)cls)->cbs_setTimestamp_1103_0 (arg1); } diff --git a/src/gsiqt/qt6/QtGui/gsiDeclQWindow.cc b/src/gsiqt/qt6/QtGui/gsiDeclQWindow.cc index 18d6be93b..badaad864 100644 --- a/src/gsiqt/qt6/QtGui/gsiDeclQWindow.cc +++ b/src/gsiqt/qt6/QtGui/gsiDeclQWindow.cc @@ -2940,7 +2940,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWindow_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -2964,7 +2964,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWindow_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -3006,7 +3006,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWindow_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -3048,7 +3048,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWindow_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -3072,7 +3072,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QWindow_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -3097,8 +3097,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QWindow_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -3121,7 +3121,7 @@ static void _call_cbs_exposeEvent_1845_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QExposeEvent *arg1 = args.read (heap); + QExposeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWindow_Adaptor *)cls)->cbs_exposeEvent_1845_0 (arg1); } @@ -3145,7 +3145,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWindow_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -3206,7 +3206,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWindow_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -3267,7 +3267,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWindow_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -3309,7 +3309,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWindow_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -3333,7 +3333,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWindow_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -3447,7 +3447,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWindow_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -3471,7 +3471,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWindow_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -3495,7 +3495,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWindow_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -3519,7 +3519,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWindow_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -3543,7 +3543,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWindow_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -3571,9 +3571,9 @@ static void _call_cbs_nativeEvent_6949_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - QIntegerForSizeof::Signed *arg3 = args.read::Signed * > (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + QIntegerForSizeof::Signed *arg3 = gsi::arg_reader::Signed * >() (args, heap); ret.write ((bool)((QWindow_Adaptor *)cls)->cbs_nativeEvent_6949_0 (arg1, arg2, arg3)); } @@ -3632,7 +3632,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWindow_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -3674,7 +3674,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWindow_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -3765,7 +3765,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWindow_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -3827,7 +3827,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWindow_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -3851,7 +3851,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWindow_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -3875,7 +3875,7 @@ static void _call_cbs_touchEvent_1732_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTouchEvent *arg1 = args.read (heap); + QTouchEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWindow_Adaptor *)cls)->cbs_touchEvent_1732_0 (arg1); } @@ -3953,7 +3953,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWindow_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt6/QtGui/gsiDeclQWindowStateChangeEvent.cc b/src/gsiqt/qt6/QtGui/gsiDeclQWindowStateChangeEvent.cc index 2be2b34cf..b114690eb 100644 --- a/src/gsiqt/qt6/QtGui/gsiDeclQWindowStateChangeEvent.cc +++ b/src/gsiqt/qt6/QtGui/gsiDeclQWindowStateChangeEvent.cc @@ -158,7 +158,7 @@ static void _call_cbs_setAccepted_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWindowStateChangeEvent_Adaptor *)cls)->cbs_setAccepted_864_0 (arg1); } diff --git a/src/gsiqt/qt6/QtMultimedia/gsiDeclQAudioDecoder.cc b/src/gsiqt/qt6/QtMultimedia/gsiDeclQAudioDecoder.cc index 66be48f10..51b9193c8 100644 --- a/src/gsiqt/qt6/QtMultimedia/gsiDeclQAudioDecoder.cc +++ b/src/gsiqt/qt6/QtMultimedia/gsiDeclQAudioDecoder.cc @@ -656,7 +656,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAudioDecoder_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -680,7 +680,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAudioDecoder_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -722,7 +722,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAudioDecoder_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -782,7 +782,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAudioDecoder_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -807,8 +807,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAudioDecoder_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -995,7 +995,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAudioDecoder_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt6/QtMultimedia/gsiDeclQAudioInput.cc b/src/gsiqt/qt6/QtMultimedia/gsiDeclQAudioInput.cc index f0b2e2349..16795a11b 100644 --- a/src/gsiqt/qt6/QtMultimedia/gsiDeclQAudioInput.cc +++ b/src/gsiqt/qt6/QtMultimedia/gsiDeclQAudioInput.cc @@ -450,7 +450,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAudioInput_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -474,7 +474,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAudioInput_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -530,7 +530,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAudioInput_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -554,7 +554,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAudioInput_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -579,8 +579,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAudioInput_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -703,7 +703,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAudioInput_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt6/QtMultimedia/gsiDeclQAudioOutput.cc b/src/gsiqt/qt6/QtMultimedia/gsiDeclQAudioOutput.cc index 3a2159bb7..836fbb796 100644 --- a/src/gsiqt/qt6/QtMultimedia/gsiDeclQAudioOutput.cc +++ b/src/gsiqt/qt6/QtMultimedia/gsiDeclQAudioOutput.cc @@ -450,7 +450,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAudioOutput_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -474,7 +474,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAudioOutput_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -530,7 +530,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAudioOutput_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -554,7 +554,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAudioOutput_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -579,8 +579,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAudioOutput_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -703,7 +703,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAudioOutput_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt6/QtMultimedia/gsiDeclQAudioSink.cc b/src/gsiqt/qt6/QtMultimedia/gsiDeclQAudioSink.cc index d551ce8ad..225e158f5 100644 --- a/src/gsiqt/qt6/QtMultimedia/gsiDeclQAudioSink.cc +++ b/src/gsiqt/qt6/QtMultimedia/gsiDeclQAudioSink.cc @@ -636,7 +636,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAudioSink_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -660,7 +660,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAudioSink_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -702,7 +702,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAudioSink_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -726,7 +726,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAudioSink_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -751,8 +751,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAudioSink_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -875,7 +875,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAudioSink_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt6/QtMultimedia/gsiDeclQAudioSource.cc b/src/gsiqt/qt6/QtMultimedia/gsiDeclQAudioSource.cc index e41a352ea..a66172adb 100644 --- a/src/gsiqt/qt6/QtMultimedia/gsiDeclQAudioSource.cc +++ b/src/gsiqt/qt6/QtMultimedia/gsiDeclQAudioSource.cc @@ -636,7 +636,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAudioSource_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -660,7 +660,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAudioSource_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -702,7 +702,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAudioSource_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -726,7 +726,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAudioSource_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -751,8 +751,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAudioSource_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -875,7 +875,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAudioSource_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt6/QtMultimedia/gsiDeclQCamera.cc b/src/gsiqt/qt6/QtMultimedia/gsiDeclQCamera.cc index 883da2f16..1a632b64f 100644 --- a/src/gsiqt/qt6/QtMultimedia/gsiDeclQCamera.cc +++ b/src/gsiqt/qt6/QtMultimedia/gsiDeclQCamera.cc @@ -1590,7 +1590,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCamera_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1642,7 +1642,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCamera_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1698,7 +1698,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCamera_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1757,7 +1757,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCamera_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1782,8 +1782,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCamera_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -2148,7 +2148,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCamera_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt6/QtMultimedia/gsiDeclQImageCapture.cc b/src/gsiqt/qt6/QtMultimedia/gsiDeclQImageCapture.cc index e05e2e6c3..31d0f4347 100644 --- a/src/gsiqt/qt6/QtMultimedia/gsiDeclQImageCapture.cc +++ b/src/gsiqt/qt6/QtMultimedia/gsiDeclQImageCapture.cc @@ -738,7 +738,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QImageCapture_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -762,7 +762,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QImageCapture_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -804,7 +804,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QImageCapture_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -866,7 +866,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QImageCapture_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -891,8 +891,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QImageCapture_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1173,7 +1173,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QImageCapture_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt6/QtMultimedia/gsiDeclQMediaCaptureSession.cc b/src/gsiqt/qt6/QtMultimedia/gsiDeclQMediaCaptureSession.cc index b6d0c4ebb..d52f20d12 100644 --- a/src/gsiqt/qt6/QtMultimedia/gsiDeclQMediaCaptureSession.cc +++ b/src/gsiqt/qt6/QtMultimedia/gsiDeclQMediaCaptureSession.cc @@ -633,7 +633,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaCaptureSession_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -657,7 +657,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaCaptureSession_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -699,7 +699,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaCaptureSession_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -723,7 +723,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMediaCaptureSession_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -748,8 +748,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMediaCaptureSession_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -882,7 +882,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaCaptureSession_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt6/QtMultimedia/gsiDeclQMediaDevices.cc b/src/gsiqt/qt6/QtMultimedia/gsiDeclQMediaDevices.cc index 86e3fcf15..154e9bd54 100644 --- a/src/gsiqt/qt6/QtMultimedia/gsiDeclQMediaDevices.cc +++ b/src/gsiqt/qt6/QtMultimedia/gsiDeclQMediaDevices.cc @@ -431,7 +431,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaDevices_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -455,7 +455,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaDevices_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -497,7 +497,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaDevices_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -521,7 +521,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMediaDevices_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -546,8 +546,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMediaDevices_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -652,7 +652,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaDevices_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt6/QtMultimedia/gsiDeclQMediaPlayer.cc b/src/gsiqt/qt6/QtMultimedia/gsiDeclQMediaPlayer.cc index c8e1697b0..ae5c6137f 100644 --- a/src/gsiqt/qt6/QtMultimedia/gsiDeclQMediaPlayer.cc +++ b/src/gsiqt/qt6/QtMultimedia/gsiDeclQMediaPlayer.cc @@ -1157,7 +1157,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaPlayer_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1181,7 +1181,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaPlayer_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1223,7 +1223,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaPlayer_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1300,7 +1300,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMediaPlayer_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1325,8 +1325,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMediaPlayer_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1603,7 +1603,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaPlayer_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt6/QtMultimedia/gsiDeclQMediaRecorder.cc b/src/gsiqt/qt6/QtMultimedia/gsiDeclQMediaRecorder.cc index f2b28befc..73a547175 100644 --- a/src/gsiqt/qt6/QtMultimedia/gsiDeclQMediaRecorder.cc +++ b/src/gsiqt/qt6/QtMultimedia/gsiDeclQMediaRecorder.cc @@ -1076,7 +1076,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaRecorder_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1100,7 +1100,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaRecorder_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1142,7 +1142,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaRecorder_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1247,7 +1247,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMediaRecorder_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1272,8 +1272,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMediaRecorder_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1438,7 +1438,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaRecorder_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt6/QtMultimedia/gsiDeclQSoundEffect.cc b/src/gsiqt/qt6/QtMultimedia/gsiDeclQSoundEffect.cc index 269445bca..1174c02da 100644 --- a/src/gsiqt/qt6/QtMultimedia/gsiDeclQSoundEffect.cc +++ b/src/gsiqt/qt6/QtMultimedia/gsiDeclQSoundEffect.cc @@ -695,7 +695,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSoundEffect_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -719,7 +719,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSoundEffect_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -761,7 +761,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSoundEffect_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -785,7 +785,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSoundEffect_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -810,8 +810,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSoundEffect_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1014,7 +1014,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSoundEffect_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt6/QtMultimedia/gsiDeclQVideoSink.cc b/src/gsiqt/qt6/QtMultimedia/gsiDeclQVideoSink.cc index 0215c4be7..e49ad2b4a 100644 --- a/src/gsiqt/qt6/QtMultimedia/gsiDeclQVideoSink.cc +++ b/src/gsiqt/qt6/QtMultimedia/gsiDeclQVideoSink.cc @@ -397,7 +397,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVideoSink_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -421,7 +421,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVideoSink_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -463,7 +463,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVideoSink_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -487,7 +487,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QVideoSink_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -512,8 +512,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QVideoSink_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -636,7 +636,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVideoSink_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt6/QtNetwork/gsiDeclQAbstractNetworkCache.cc b/src/gsiqt/qt6/QtNetwork/gsiDeclQAbstractNetworkCache.cc index 918d59797..41f3a2bb5 100644 --- a/src/gsiqt/qt6/QtNetwork/gsiDeclQAbstractNetworkCache.cc +++ b/src/gsiqt/qt6/QtNetwork/gsiDeclQAbstractNetworkCache.cc @@ -585,7 +585,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractNetworkCache_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -629,7 +629,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractNetworkCache_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -653,7 +653,7 @@ static void _call_cbs_data_1701_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QUrl &arg1 = args.read (heap); + const QUrl &arg1 = gsi::arg_reader() (args, heap); ret.write ((QIODevice *)((QAbstractNetworkCache_Adaptor *)cls)->cbs_data_1701_0 (arg1)); } @@ -694,7 +694,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractNetworkCache_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -718,7 +718,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractNetworkCache_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -743,8 +743,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractNetworkCache_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -767,7 +767,7 @@ static void _call_cbs_insert_1447_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QIODevice *arg1 = args.read (heap); + QIODevice *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractNetworkCache_Adaptor *)cls)->cbs_insert_1447_0 (arg1); } @@ -809,7 +809,7 @@ static void _call_cbs_metaData_1701_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QUrl &arg1 = args.read (heap); + const QUrl &arg1 = gsi::arg_reader() (args, heap); ret.write ((QNetworkCacheMetaData)((QAbstractNetworkCache_Adaptor *)cls)->cbs_metaData_1701_0 (arg1)); } @@ -850,7 +850,7 @@ static void _call_cbs_prepare_3377_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkCacheMetaData &arg1 = args.read (heap); + const QNetworkCacheMetaData &arg1 = gsi::arg_reader() (args, heap); ret.write ((QIODevice *)((QAbstractNetworkCache_Adaptor *)cls)->cbs_prepare_3377_0 (arg1)); } @@ -891,7 +891,7 @@ static void _call_cbs_remove_1701_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QUrl &arg1 = args.read (heap); + const QUrl &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractNetworkCache_Adaptor *)cls)->cbs_remove_1701_0 (arg1)); } @@ -942,7 +942,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractNetworkCache_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -966,7 +966,7 @@ static void _call_cbs_updateMetaData_3377_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkCacheMetaData &arg1 = args.read (heap); + const QNetworkCacheMetaData &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractNetworkCache_Adaptor *)cls)->cbs_updateMetaData_3377_0 (arg1); } diff --git a/src/gsiqt/qt6/QtNetwork/gsiDeclQDnsLookup.cc b/src/gsiqt/qt6/QtNetwork/gsiDeclQDnsLookup.cc index 5d488cfbb..a88c6741a 100644 --- a/src/gsiqt/qt6/QtNetwork/gsiDeclQDnsLookup.cc +++ b/src/gsiqt/qt6/QtNetwork/gsiDeclQDnsLookup.cc @@ -698,7 +698,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDnsLookup_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -722,7 +722,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDnsLookup_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -764,7 +764,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDnsLookup_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -788,7 +788,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDnsLookup_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -813,8 +813,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDnsLookup_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -969,7 +969,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDnsLookup_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt6/QtNetwork/gsiDeclQDtls.cc b/src/gsiqt/qt6/QtNetwork/gsiDeclQDtls.cc index 0cb018273..88749ec4b 100644 --- a/src/gsiqt/qt6/QtNetwork/gsiDeclQDtls.cc +++ b/src/gsiqt/qt6/QtNetwork/gsiDeclQDtls.cc @@ -808,7 +808,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDtls_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -832,7 +832,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDtls_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -874,7 +874,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDtls_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -898,7 +898,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDtls_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -923,8 +923,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDtls_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1061,7 +1061,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDtls_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt6/QtNetwork/gsiDeclQDtlsClientVerifier.cc b/src/gsiqt/qt6/QtNetwork/gsiDeclQDtlsClientVerifier.cc index b9e8ea125..d5f5958e4 100644 --- a/src/gsiqt/qt6/QtNetwork/gsiDeclQDtlsClientVerifier.cc +++ b/src/gsiqt/qt6/QtNetwork/gsiDeclQDtlsClientVerifier.cc @@ -399,7 +399,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDtlsClientVerifier_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -423,7 +423,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDtlsClientVerifier_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -465,7 +465,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDtlsClientVerifier_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -489,7 +489,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDtlsClientVerifier_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -514,8 +514,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDtlsClientVerifier_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -620,7 +620,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDtlsClientVerifier_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt6/QtNetwork/gsiDeclQHttpMultiPart.cc b/src/gsiqt/qt6/QtNetwork/gsiDeclQHttpMultiPart.cc index 2d14d84b2..4ee0af438 100644 --- a/src/gsiqt/qt6/QtNetwork/gsiDeclQHttpMultiPart.cc +++ b/src/gsiqt/qt6/QtNetwork/gsiDeclQHttpMultiPart.cc @@ -397,7 +397,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHttpMultiPart_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -421,7 +421,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHttpMultiPart_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -463,7 +463,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHttpMultiPart_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -487,7 +487,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QHttpMultiPart_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -512,8 +512,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QHttpMultiPart_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -618,7 +618,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHttpMultiPart_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt6/QtNetwork/gsiDeclQLocalServer.cc b/src/gsiqt/qt6/QtNetwork/gsiDeclQLocalServer.cc index 3899ef2ed..5644ca591 100644 --- a/src/gsiqt/qt6/QtNetwork/gsiDeclQLocalServer.cc +++ b/src/gsiqt/qt6/QtNetwork/gsiDeclQLocalServer.cc @@ -642,7 +642,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLocalServer_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -666,7 +666,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLocalServer_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -708,7 +708,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLocalServer_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -732,7 +732,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QLocalServer_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -757,8 +757,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QLocalServer_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -800,7 +800,7 @@ static void _call_cbs_incomingConnection_1339_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - quintptr arg1 = args.read (heap); + quintptr arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLocalServer_Adaptor *)cls)->cbs_incomingConnection_1339_0 (arg1); } @@ -939,7 +939,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLocalServer_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt6/QtNetwork/gsiDeclQNetworkAccessManager.cc b/src/gsiqt/qt6/QtNetwork/gsiDeclQNetworkAccessManager.cc index cd2aac9a0..d1fba1035 100644 --- a/src/gsiqt/qt6/QtNetwork/gsiDeclQNetworkAccessManager.cc +++ b/src/gsiqt/qt6/QtNetwork/gsiDeclQNetworkAccessManager.cc @@ -1177,7 +1177,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkAccessManager_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1205,9 +1205,9 @@ static void _call_cbs_createRequest_7733_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QNetworkRequest &arg2 = args.read (heap); - QIODevice *arg3 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QNetworkRequest &arg2 = gsi::arg_reader() (args, heap); + QIODevice *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); ret.write ((QNetworkReply *)((QNetworkAccessManager_Adaptor *)cls)->cbs_createRequest_7733_1 (arg1, arg2, arg3)); } @@ -1230,7 +1230,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkAccessManager_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1272,7 +1272,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkAccessManager_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1314,7 +1314,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QNetworkAccessManager_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1339,8 +1339,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QNetworkAccessManager_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1559,7 +1559,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkAccessManager_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt6/QtNetwork/gsiDeclQNetworkCookieJar.cc b/src/gsiqt/qt6/QtNetwork/gsiDeclQNetworkCookieJar.cc index f04c5c34d..eb037af31 100644 --- a/src/gsiqt/qt6/QtNetwork/gsiDeclQNetworkCookieJar.cc +++ b/src/gsiqt/qt6/QtNetwork/gsiDeclQNetworkCookieJar.cc @@ -509,7 +509,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkCookieJar_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -533,7 +533,7 @@ static void _call_cbs_cookiesForUrl_c1701_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QUrl &arg1 = args.read (heap); + const QUrl &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QList)((QNetworkCookieJar_Adaptor *)cls)->cbs_cookiesForUrl_c1701_0 (arg1)); } @@ -556,7 +556,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkCookieJar_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -580,7 +580,7 @@ static void _call_cbs_deleteCookie_2742_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkCookie &arg1 = args.read (heap); + const QNetworkCookie &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QNetworkCookieJar_Adaptor *)cls)->cbs_deleteCookie_2742_0 (arg1)); } @@ -621,7 +621,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkCookieJar_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -645,7 +645,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QNetworkCookieJar_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -670,8 +670,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QNetworkCookieJar_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -694,7 +694,7 @@ static void _call_cbs_insertCookie_2742_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkCookie &arg1 = args.read (heap); + const QNetworkCookie &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QNetworkCookieJar_Adaptor *)cls)->cbs_insertCookie_2742_0 (arg1)); } @@ -820,8 +820,8 @@ static void _call_cbs_setCookiesFromUrl_4950_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); - const QUrl &arg2 = args.read (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); + const QUrl &arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QNetworkCookieJar_Adaptor *)cls)->cbs_setCookiesFromUrl_4950_0 (arg1, arg2)); } @@ -844,7 +844,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkCookieJar_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -868,7 +868,7 @@ static void _call_cbs_updateCookie_2742_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkCookie &arg1 = args.read (heap); + const QNetworkCookie &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QNetworkCookieJar_Adaptor *)cls)->cbs_updateCookie_2742_0 (arg1)); } @@ -893,8 +893,8 @@ static void _call_cbs_validateCookie_c4335_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkCookie &arg1 = args.read (heap); - const QUrl &arg2 = args.read (heap); + const QNetworkCookie &arg1 = gsi::arg_reader() (args, heap); + const QUrl &arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QNetworkCookieJar_Adaptor *)cls)->cbs_validateCookie_c4335_0 (arg1, arg2)); } diff --git a/src/gsiqt/qt6/QtNetwork/gsiDeclQNetworkDiskCache.cc b/src/gsiqt/qt6/QtNetwork/gsiDeclQNetworkDiskCache.cc index 363c7bc0b..ee7224beb 100644 --- a/src/gsiqt/qt6/QtNetwork/gsiDeclQNetworkDiskCache.cc +++ b/src/gsiqt/qt6/QtNetwork/gsiDeclQNetworkDiskCache.cc @@ -699,7 +699,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkDiskCache_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -743,7 +743,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkDiskCache_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -767,7 +767,7 @@ static void _call_cbs_data_1701_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QUrl &arg1 = args.read (heap); + const QUrl &arg1 = gsi::arg_reader() (args, heap); ret.write ((QIODevice *)((QNetworkDiskCache_Adaptor *)cls)->cbs_data_1701_0 (arg1)); } @@ -808,7 +808,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkDiskCache_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -832,7 +832,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QNetworkDiskCache_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -857,8 +857,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QNetworkDiskCache_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -900,7 +900,7 @@ static void _call_cbs_insert_1447_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QIODevice *arg1 = args.read (heap); + QIODevice *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkDiskCache_Adaptor *)cls)->cbs_insert_1447_0 (arg1); } @@ -942,7 +942,7 @@ static void _call_cbs_metaData_1701_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QUrl &arg1 = args.read (heap); + const QUrl &arg1 = gsi::arg_reader() (args, heap); ret.write ((QNetworkCacheMetaData)((QNetworkDiskCache_Adaptor *)cls)->cbs_metaData_1701_0 (arg1)); } @@ -983,7 +983,7 @@ static void _call_cbs_prepare_3377_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkCacheMetaData &arg1 = args.read (heap); + const QNetworkCacheMetaData &arg1 = gsi::arg_reader() (args, heap); ret.write ((QIODevice *)((QNetworkDiskCache_Adaptor *)cls)->cbs_prepare_3377_0 (arg1)); } @@ -1024,7 +1024,7 @@ static void _call_cbs_remove_1701_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QUrl &arg1 = args.read (heap); + const QUrl &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QNetworkDiskCache_Adaptor *)cls)->cbs_remove_1701_0 (arg1)); } @@ -1075,7 +1075,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkDiskCache_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -1099,7 +1099,7 @@ static void _call_cbs_updateMetaData_3377_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkCacheMetaData &arg1 = args.read (heap); + const QNetworkCacheMetaData &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkDiskCache_Adaptor *)cls)->cbs_updateMetaData_3377_0 (arg1); } diff --git a/src/gsiqt/qt6/QtNetwork/gsiDeclQNetworkProxyFactory.cc b/src/gsiqt/qt6/QtNetwork/gsiDeclQNetworkProxyFactory.cc index 1ff0fae19..6e09c4238 100644 --- a/src/gsiqt/qt6/QtNetwork/gsiDeclQNetworkProxyFactory.cc +++ b/src/gsiqt/qt6/QtNetwork/gsiDeclQNetworkProxyFactory.cc @@ -232,7 +232,7 @@ static void _call_cbs_queryProxy_3220_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkProxyQuery &arg1 = args.read (heap); + const QNetworkProxyQuery &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QNetworkProxyQuery(), heap); ret.write > ((QList)((QNetworkProxyFactory_Adaptor *)cls)->cbs_queryProxy_3220_1 (arg1)); } diff --git a/src/gsiqt/qt6/QtNetwork/gsiDeclQTcpServer.cc b/src/gsiqt/qt6/QtNetwork/gsiDeclQTcpServer.cc index 796bcdf56..7ce00b286 100644 --- a/src/gsiqt/qt6/QtNetwork/gsiDeclQTcpServer.cc +++ b/src/gsiqt/qt6/QtNetwork/gsiDeclQTcpServer.cc @@ -710,7 +710,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTcpServer_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -734,7 +734,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTcpServer_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -776,7 +776,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTcpServer_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -800,7 +800,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTcpServer_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -825,8 +825,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTcpServer_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -868,7 +868,7 @@ static void _call_cbs_incomingConnection_3614_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QIntegerForSizeof::Signed arg1 = args.read::Signed > (heap); + QIntegerForSizeof::Signed arg1 = gsi::arg_reader::Signed >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTcpServer_Adaptor *)cls)->cbs_incomingConnection_3614_0 (arg1); } @@ -1007,7 +1007,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTcpServer_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt6/QtPrintSupport/gsiDeclQAbstractPrintDialog.cc b/src/gsiqt/qt6/QtPrintSupport/gsiDeclQAbstractPrintDialog.cc index 6e25f6b06..f14d273a9 100644 --- a/src/gsiqt/qt6/QtPrintSupport/gsiDeclQAbstractPrintDialog.cc +++ b/src/gsiqt/qt6/QtPrintSupport/gsiDeclQAbstractPrintDialog.cc @@ -1339,7 +1339,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPrintDialog_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1382,7 +1382,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPrintDialog_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1406,7 +1406,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPrintDialog_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1430,7 +1430,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPrintDialog_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1454,7 +1454,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPrintDialog_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1521,7 +1521,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPrintDialog_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1585,7 +1585,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPrintDialog_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1609,7 +1609,7 @@ static void _call_cbs_done_767_0 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPrintDialog_Adaptor *)cls)->cbs_done_767_0 (arg1); } @@ -1633,7 +1633,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPrintDialog_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1657,7 +1657,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPrintDialog_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1681,7 +1681,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPrintDialog_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1705,7 +1705,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPrintDialog_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1729,7 +1729,7 @@ static void _call_cbs_enterEvent_1727_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEnterEvent *arg1 = args.read (heap); + QEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPrintDialog_Adaptor *)cls)->cbs_enterEvent_1727_0 (arg1); } @@ -1753,7 +1753,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractPrintDialog_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1778,8 +1778,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractPrintDialog_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1839,7 +1839,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPrintDialog_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1877,7 +1877,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractPrintDialog_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -1900,7 +1900,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPrintDialog_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -1957,7 +1957,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QAbstractPrintDialog_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -1980,7 +1980,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPrintDialog_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -2004,7 +2004,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPrintDialog_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -2028,7 +2028,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPrintDialog_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2052,7 +2052,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QAbstractPrintDialog_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2093,7 +2093,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPrintDialog_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2117,7 +2117,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPrintDialog_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2141,7 +2141,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPrintDialog_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2165,7 +2165,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QAbstractPrintDialog_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2207,7 +2207,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPrintDialog_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2231,7 +2231,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPrintDialog_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2255,7 +2255,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPrintDialog_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2279,7 +2279,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPrintDialog_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2303,7 +2303,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPrintDialog_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2331,9 +2331,9 @@ static void _call_cbs_nativeEvent_6949_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - QIntegerForSizeof::Signed *arg3 = args.read::Signed * > (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + QIntegerForSizeof::Signed *arg3 = gsi::arg_reader::Signed * >() (args, heap); ret.write ((bool)((QAbstractPrintDialog_Adaptor *)cls)->cbs_nativeEvent_6949_0 (arg1, arg2, arg3)); } @@ -2413,7 +2413,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPrintDialog_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2455,7 +2455,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QAbstractPrintDialog_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -2512,7 +2512,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPrintDialog_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2564,7 +2564,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPrintDialog_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2607,7 +2607,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPrintDialog_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2650,7 +2650,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPrintDialog_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2674,7 +2674,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPrintDialog_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2717,7 +2717,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPrintDialog_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt6/QtPrintSupport/gsiDeclQPrintDialog.cc b/src/gsiqt/qt6/QtPrintSupport/gsiDeclQPrintDialog.cc index 60f08e445..927e38bf8 100644 --- a/src/gsiqt/qt6/QtPrintSupport/gsiDeclQPrintDialog.cc +++ b/src/gsiqt/qt6/QtPrintSupport/gsiDeclQPrintDialog.cc @@ -1405,7 +1405,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintDialog_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1448,7 +1448,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintDialog_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1472,7 +1472,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintDialog_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1496,7 +1496,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintDialog_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1520,7 +1520,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintDialog_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1587,7 +1587,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintDialog_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1651,7 +1651,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintDialog_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1675,7 +1675,7 @@ static void _call_cbs_done_767_0 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintDialog_Adaptor *)cls)->cbs_done_767_0 (arg1); } @@ -1699,7 +1699,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintDialog_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1723,7 +1723,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintDialog_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1747,7 +1747,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintDialog_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1771,7 +1771,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintDialog_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1795,7 +1795,7 @@ static void _call_cbs_enterEvent_1727_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEnterEvent *arg1 = args.read (heap); + QEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintDialog_Adaptor *)cls)->cbs_enterEvent_1727_0 (arg1); } @@ -1819,7 +1819,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPrintDialog_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1844,8 +1844,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPrintDialog_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1905,7 +1905,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintDialog_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1943,7 +1943,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPrintDialog_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -1966,7 +1966,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintDialog_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -2023,7 +2023,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QPrintDialog_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -2046,7 +2046,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintDialog_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -2070,7 +2070,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintDialog_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -2094,7 +2094,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintDialog_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2118,7 +2118,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QPrintDialog_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2159,7 +2159,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintDialog_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2183,7 +2183,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintDialog_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2207,7 +2207,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintDialog_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2231,7 +2231,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QPrintDialog_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2273,7 +2273,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintDialog_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2297,7 +2297,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintDialog_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2321,7 +2321,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintDialog_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2345,7 +2345,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintDialog_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2369,7 +2369,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintDialog_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2397,9 +2397,9 @@ static void _call_cbs_nativeEvent_6949_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - QIntegerForSizeof::Signed *arg3 = args.read::Signed * > (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + QIntegerForSizeof::Signed *arg3 = gsi::arg_reader::Signed * >() (args, heap); ret.write ((bool)((QPrintDialog_Adaptor *)cls)->cbs_nativeEvent_6949_0 (arg1, arg2, arg3)); } @@ -2479,7 +2479,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintDialog_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2521,7 +2521,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QPrintDialog_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -2578,7 +2578,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintDialog_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2630,7 +2630,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintDialog_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2673,7 +2673,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintDialog_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2716,7 +2716,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintDialog_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2740,7 +2740,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintDialog_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2783,7 +2783,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintDialog_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt6/QtPrintSupport/gsiDeclQPrintEngine.cc b/src/gsiqt/qt6/QtPrintSupport/gsiDeclQPrintEngine.cc index 083c7d75d..c105dcb9a 100644 --- a/src/gsiqt/qt6/QtPrintSupport/gsiDeclQPrintEngine.cc +++ b/src/gsiqt/qt6/QtPrintSupport/gsiDeclQPrintEngine.cc @@ -326,7 +326,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QPrintEngine_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -387,7 +387,7 @@ static void _call_cbs_property_c4045_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QPrintEngine_Adaptor *)cls)->cbs_property_c4045_0 (arg1)); } @@ -412,8 +412,8 @@ static void _call_cbs_setProperty_6056_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QVariant &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintEngine_Adaptor *)cls)->cbs_setProperty_6056_0 (arg1, arg2); } diff --git a/src/gsiqt/qt6/QtPrintSupport/gsiDeclQPrintPreviewDialog.cc b/src/gsiqt/qt6/QtPrintSupport/gsiDeclQPrintPreviewDialog.cc index 2c8fbb542..f702959a7 100644 --- a/src/gsiqt/qt6/QtPrintSupport/gsiDeclQPrintPreviewDialog.cc +++ b/src/gsiqt/qt6/QtPrintSupport/gsiDeclQPrintPreviewDialog.cc @@ -1307,7 +1307,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewDialog_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1350,7 +1350,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewDialog_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1374,7 +1374,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewDialog_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1398,7 +1398,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewDialog_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1422,7 +1422,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewDialog_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1489,7 +1489,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewDialog_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1553,7 +1553,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewDialog_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1577,7 +1577,7 @@ static void _call_cbs_done_767_0 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewDialog_Adaptor *)cls)->cbs_done_767_0 (arg1); } @@ -1601,7 +1601,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewDialog_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1625,7 +1625,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewDialog_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1649,7 +1649,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewDialog_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1673,7 +1673,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewDialog_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1697,7 +1697,7 @@ static void _call_cbs_enterEvent_1727_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEnterEvent *arg1 = args.read (heap); + QEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewDialog_Adaptor *)cls)->cbs_enterEvent_1727_0 (arg1); } @@ -1721,7 +1721,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPrintPreviewDialog_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1746,8 +1746,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPrintPreviewDialog_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1807,7 +1807,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewDialog_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1845,7 +1845,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPrintPreviewDialog_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -1868,7 +1868,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewDialog_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -1925,7 +1925,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QPrintPreviewDialog_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -1948,7 +1948,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewDialog_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -1972,7 +1972,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewDialog_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -1996,7 +1996,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewDialog_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2020,7 +2020,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QPrintPreviewDialog_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2061,7 +2061,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewDialog_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2085,7 +2085,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewDialog_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2109,7 +2109,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewDialog_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2133,7 +2133,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QPrintPreviewDialog_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2175,7 +2175,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewDialog_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2199,7 +2199,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewDialog_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2223,7 +2223,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewDialog_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2247,7 +2247,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewDialog_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2271,7 +2271,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewDialog_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2299,9 +2299,9 @@ static void _call_cbs_nativeEvent_6949_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - QIntegerForSizeof::Signed *arg3 = args.read::Signed * > (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + QIntegerForSizeof::Signed *arg3 = gsi::arg_reader::Signed * >() (args, heap); ret.write ((bool)((QPrintPreviewDialog_Adaptor *)cls)->cbs_nativeEvent_6949_0 (arg1, arg2, arg3)); } @@ -2381,7 +2381,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewDialog_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2441,7 +2441,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QPrintPreviewDialog_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -2498,7 +2498,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewDialog_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2550,7 +2550,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewDialog_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2593,7 +2593,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewDialog_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2636,7 +2636,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewDialog_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2660,7 +2660,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewDialog_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2703,7 +2703,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewDialog_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt6/QtPrintSupport/gsiDeclQPrintPreviewWidget.cc b/src/gsiqt/qt6/QtPrintSupport/gsiDeclQPrintPreviewWidget.cc index d3a5b3a0b..3e4cda4a1 100644 --- a/src/gsiqt/qt6/QtPrintSupport/gsiDeclQPrintPreviewWidget.cc +++ b/src/gsiqt/qt6/QtPrintSupport/gsiDeclQPrintPreviewWidget.cc @@ -1492,7 +1492,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewWidget_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1516,7 +1516,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewWidget_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1540,7 +1540,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewWidget_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1564,7 +1564,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewWidget_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1588,7 +1588,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewWidget_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1655,7 +1655,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewWidget_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1719,7 +1719,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewWidget_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1743,7 +1743,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewWidget_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1767,7 +1767,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewWidget_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1791,7 +1791,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewWidget_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1815,7 +1815,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewWidget_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1839,7 +1839,7 @@ static void _call_cbs_enterEvent_1727_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEnterEvent *arg1 = args.read (heap); + QEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewWidget_Adaptor *)cls)->cbs_enterEvent_1727_0 (arg1); } @@ -1863,7 +1863,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPrintPreviewWidget_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1888,8 +1888,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPrintPreviewWidget_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1912,7 +1912,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewWidget_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1950,7 +1950,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPrintPreviewWidget_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -1973,7 +1973,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewWidget_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -2030,7 +2030,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QPrintPreviewWidget_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -2053,7 +2053,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewWidget_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -2077,7 +2077,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewWidget_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -2101,7 +2101,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewWidget_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2125,7 +2125,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QPrintPreviewWidget_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2166,7 +2166,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewWidget_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2190,7 +2190,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewWidget_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2214,7 +2214,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewWidget_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2238,7 +2238,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QPrintPreviewWidget_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2280,7 +2280,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewWidget_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2304,7 +2304,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewWidget_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2328,7 +2328,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewWidget_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2352,7 +2352,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewWidget_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2376,7 +2376,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewWidget_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2404,9 +2404,9 @@ static void _call_cbs_nativeEvent_6949_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - QIntegerForSizeof::Signed *arg3 = args.read::Signed * > (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + QIntegerForSizeof::Signed *arg3 = gsi::arg_reader::Signed * >() (args, heap); ret.write ((bool)((QPrintPreviewWidget_Adaptor *)cls)->cbs_nativeEvent_6949_0 (arg1, arg2, arg3)); } @@ -2466,7 +2466,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewWidget_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2540,7 +2540,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QPrintPreviewWidget_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -2563,7 +2563,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewWidget_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2615,7 +2615,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewWidget_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2658,7 +2658,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewWidget_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2701,7 +2701,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewWidget_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2725,7 +2725,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewWidget_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2768,7 +2768,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewWidget_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt6/QtPrintSupport/gsiDeclQPrinter.cc b/src/gsiqt/qt6/QtPrintSupport/gsiDeclQPrinter.cc index 1e1bccd77..ad7ad6dee 100644 --- a/src/gsiqt/qt6/QtPrintSupport/gsiDeclQPrinter.cc +++ b/src/gsiqt/qt6/QtPrintSupport/gsiDeclQPrinter.cc @@ -1185,7 +1185,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrinter_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -1209,7 +1209,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QPrinter_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -1270,7 +1270,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QPrinter_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -1315,7 +1315,7 @@ static void _call_cbs_setPageLayout_2413_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPageLayout &arg1 = args.read (heap); + const QPageLayout &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPrinter_Adaptor *)cls)->cbs_setPageLayout_2413_0 (arg1)); } @@ -1340,8 +1340,8 @@ static void _call_cbs_setPageMargins_4145_1 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMarginsF &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QMarginsF &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QPageLayout::Millimeter), heap); ret.write ((bool)((QPrinter_Adaptor *)cls)->cbs_setPageMargins_4145_1 (arg1, arg2)); } @@ -1364,7 +1364,7 @@ static void _call_cbs_setPageOrientation_2816_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((bool)((QPrinter_Adaptor *)cls)->cbs_setPageOrientation_2816_0 (arg1)); } @@ -1387,7 +1387,7 @@ static void _call_cbs_setPageRanges_2383_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPageRanges &arg1 = args.read (heap); + const QPageRanges &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrinter_Adaptor *)cls)->cbs_setPageRanges_2383_0 (arg1); } @@ -1411,7 +1411,7 @@ static void _call_cbs_setPageSize_2186_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPageSize &arg1 = args.read (heap); + const QPageSize &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPrinter_Adaptor *)cls)->cbs_setPageSize_2186_0 (arg1)); } diff --git a/src/gsiqt/qt6/QtSql/gsiDeclQSqlDriver.cc b/src/gsiqt/qt6/QtSql/gsiDeclQSqlDriver.cc index 95dca2497..76aca6408 100644 --- a/src/gsiqt/qt6/QtSql/gsiDeclQSqlDriver.cc +++ b/src/gsiqt/qt6/QtSql/gsiDeclQSqlDriver.cc @@ -1267,7 +1267,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlDriver_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1349,7 +1349,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlDriver_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1391,7 +1391,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlDriver_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1417,8 +1417,8 @@ static void _call_cbs_escapeIdentifier_c4919_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QString)((QSqlDriver_Adaptor *)cls)->cbs_escapeIdentifier_c4919_0 (arg1, arg2)); } @@ -1441,7 +1441,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlDriver_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1466,8 +1466,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlDriver_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1492,8 +1492,8 @@ static void _call_cbs_formatValue_c2938_1 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSqlField &arg1 = args.read (heap); - bool arg2 = args.read (heap); + const QSqlField &arg1 = gsi::arg_reader() (args, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (false, heap); ret.write ((QString)((QSqlDriver_Adaptor *)cls)->cbs_formatValue_c2938_1 (arg1, arg2)); } @@ -1535,7 +1535,7 @@ static void _call_cbs_hasFeature_c2893_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((bool)((QSqlDriver_Adaptor *)cls)->cbs_hasFeature_c2893_0 (arg1)); } @@ -1560,8 +1560,8 @@ static void _call_cbs_isIdentifierEscaped_c4919_0 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((bool)((QSqlDriver_Adaptor *)cls)->cbs_isIdentifierEscaped_c4919_0 (arg1, arg2)); } @@ -1621,7 +1621,7 @@ static void _call_cbs_maximumIdentifierLength_c3002_0 (const qt_gsi::GenericMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QSqlDriver_Adaptor *)cls)->cbs_maximumIdentifierLength_c3002_0 (arg1)); } @@ -1696,12 +1696,12 @@ static void _call_cbs_open_10352_5 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QString &arg3 = args.read (heap); - const QString &arg4 = args.read (heap); - int arg5 = args.read (heap); - const QString &arg6 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); + const QString &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); + const QString &arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); + int arg5 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); + const QString &arg6 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); ret.write ((bool)((QSqlDriver_Adaptor *)cls)->cbs_open_10352_5 (arg1, arg2, arg3, arg4, arg5, arg6)); } @@ -1724,7 +1724,7 @@ static void _call_cbs_primaryIndex_c2025_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QSqlIndex)((QSqlDriver_Adaptor *)cls)->cbs_primaryIndex_c2025_0 (arg1)); } @@ -1765,7 +1765,7 @@ static void _call_cbs_record_c2025_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QSqlRecord)((QSqlDriver_Adaptor *)cls)->cbs_record_c2025_0 (arg1)); } @@ -1835,7 +1835,7 @@ static void _call_cbs_setLastError_2220_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSqlError &arg1 = args.read (heap); + const QSqlError &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlDriver_Adaptor *)cls)->cbs_setLastError_2220_0 (arg1); } @@ -1859,7 +1859,7 @@ static void _call_cbs_setOpen_864_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlDriver_Adaptor *)cls)->cbs_setOpen_864_0 (arg1); } @@ -1883,7 +1883,7 @@ static void _call_cbs_setOpenError_864_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlDriver_Adaptor *)cls)->cbs_setOpenError_864_0 (arg1); } @@ -1913,10 +1913,10 @@ static void _call_cbs_sqlStatement_c7794_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QString &arg2 = args.read (heap); - const QSqlRecord &arg3 = args.read (heap); - bool arg4 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QSqlRecord &arg3 = gsi::arg_reader() (args, heap); + bool arg4 = gsi::arg_reader() (args, heap); ret.write ((QString)((QSqlDriver_Adaptor *)cls)->cbs_sqlStatement_c7794_0 (arg1, arg2, arg3, arg4)); } @@ -1941,8 +1941,8 @@ static void _call_cbs_stripDelimiters_c4919_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QString)((QSqlDriver_Adaptor *)cls)->cbs_stripDelimiters_c4919_0 (arg1, arg2)); } @@ -1965,7 +1965,7 @@ static void _call_cbs_subscribeToNotification_2025_0 (const qt_gsi::GenericMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlDriver_Adaptor *)cls)->cbs_subscribeToNotification_2025_0 (arg1)); } @@ -2007,7 +2007,7 @@ static void _call_cbs_tables_c1843_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QStringList)((QSqlDriver_Adaptor *)cls)->cbs_tables_c1843_0 (arg1)); } @@ -2030,7 +2030,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlDriver_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2054,7 +2054,7 @@ static void _call_cbs_unsubscribeFromNotification_2025_0 (const qt_gsi::GenericM { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlDriver_Adaptor *)cls)->cbs_unsubscribeFromNotification_2025_0 (arg1)); } diff --git a/src/gsiqt/qt6/QtSql/gsiDeclQSqlQueryModel.cc b/src/gsiqt/qt6/QtSql/gsiDeclQSqlQueryModel.cc index 683cdc8af..9cbca2992 100644 --- a/src/gsiqt/qt6/QtSql/gsiDeclQSqlQueryModel.cc +++ b/src/gsiqt/qt6/QtSql/gsiDeclQSqlQueryModel.cc @@ -1714,7 +1714,7 @@ static void _call_cbs_buddy_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QSqlQueryModel_Adaptor *)cls)->cbs_buddy_c2395_0 (arg1)); } @@ -1745,11 +1745,11 @@ static void _call_cbs_canDropMimeData_c7425_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMimeData *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - const QModelIndex &arg5 = args.read (heap); + const QMimeData *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + const QModelIndex &arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlQueryModel_Adaptor *)cls)->cbs_canDropMimeData_c7425_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -1772,7 +1772,7 @@ static void _call_cbs_canFetchMore_c2395_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QSqlQueryModel_Adaptor *)cls)->cbs_canFetchMore_c2395_1 (arg1)); } @@ -1839,7 +1839,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlQueryModel_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1883,7 +1883,7 @@ static void _call_cbs_clearItemData_2395_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlQueryModel_Adaptor *)cls)->cbs_clearItemData_2395_0 (arg1)); } @@ -1906,7 +1906,7 @@ static void _call_cbs_columnCount_c2395_1 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((int)((QSqlQueryModel_Adaptor *)cls)->cbs_columnCount_c2395_1 (arg1)); } @@ -2133,7 +2133,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlQueryModel_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -2159,8 +2159,8 @@ static void _call_cbs_data_c3054_1 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::DisplayRole, heap); ret.write ((QVariant)((QSqlQueryModel_Adaptor *)cls)->cbs_data_c3054_1 (arg1, arg2)); } @@ -2252,7 +2252,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlQueryModel_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -2284,11 +2284,11 @@ static void _call_cbs_dropMimeData_7425_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMimeData *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - const QModelIndex &arg5 = args.read (heap); + const QMimeData *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + const QModelIndex &arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlQueryModel_Adaptor *)cls)->cbs_dropMimeData_7425_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -2438,7 +2438,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlQueryModel_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -2463,8 +2463,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlQueryModel_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -2487,7 +2487,7 @@ static void _call_cbs_fetchMore_2395_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlQueryModel_Adaptor *)cls)->cbs_fetchMore_2395_1 (arg1); } @@ -2511,7 +2511,7 @@ static void _call_cbs_flags_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QFlags)((QSqlQueryModel_Adaptor *)cls)->cbs_flags_c2395_0 (arg1)); } @@ -2538,9 +2538,9 @@ static void _call_cbs_headerData_c3231_1 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::DisplayRole, heap); ret.write ((QVariant)((QSqlQueryModel_Adaptor *)cls)->cbs_headerData_c3231_1 (arg1, arg2, arg3)); } @@ -2591,9 +2591,9 @@ static void _call_cbs_index_c3713_1 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((QModelIndex)((QSqlQueryModel_Adaptor *)cls)->cbs_index_c3713_1 (arg1, arg2, arg3)); } @@ -2616,7 +2616,7 @@ static void _call_cbs_indexInQuery_c2395_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QSqlQueryModel_Adaptor *)cls)->cbs_indexInQuery_c2395_0 (arg1)); } @@ -2643,9 +2643,9 @@ static void _call_cbs_insertColumns_3713_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QSqlQueryModel_Adaptor *)cls)->cbs_insertColumns_3713_1 (arg1, arg2, arg3)); } @@ -2672,9 +2672,9 @@ static void _call_cbs_insertRows_3713_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QSqlQueryModel_Adaptor *)cls)->cbs_insertRows_3713_1 (arg1, arg2, arg3)); } @@ -2715,7 +2715,7 @@ static void _call_cbs_itemData_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QMap)((QSqlQueryModel_Adaptor *)cls)->cbs_itemData_c2395_0 (arg1)); } @@ -2788,11 +2788,11 @@ static void _call_cbs_match_c7932_2 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - const QVariant &arg3 = args.read (heap); - int arg4 = args.read (heap); - QFlags arg5 = args.read > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QVariant &arg3 = gsi::arg_reader() (args, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (1, heap); + QFlags arg5 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (Qt::MatchFlags(Qt::MatchStartsWith|Qt::MatchWrap), heap); ret.write > ((QList)((QSqlQueryModel_Adaptor *)cls)->cbs_match_c7932_2 (arg1, arg2, arg3, arg4, arg5)); } @@ -2815,7 +2815,7 @@ static void _call_cbs_mimeData_c3010_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); ret.write ((QMimeData *)((QSqlQueryModel_Adaptor *)cls)->cbs_mimeData_c3010_0 (arg1)); } @@ -2893,11 +2893,11 @@ static void _call_cbs_moveColumns_6659_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - const QModelIndex &arg4 = args.read (heap); - int arg5 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QModelIndex &arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlQueryModel_Adaptor *)cls)->cbs_moveColumns_6659_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -2928,11 +2928,11 @@ static void _call_cbs_moveRows_6659_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - const QModelIndex &arg4 = args.read (heap); - int arg5 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QModelIndex &arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlQueryModel_Adaptor *)cls)->cbs_moveRows_6659_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -2957,8 +2957,8 @@ static void _call_cbs_multiData_c4483_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - QModelRoleDataSpan arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + QModelRoleDataSpan arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlQueryModel_Adaptor *)cls)->cbs_multiData_c4483_0 (arg1, arg2); } @@ -3056,9 +3056,9 @@ static void _call_cbs_removeColumns_3713_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QSqlQueryModel_Adaptor *)cls)->cbs_removeColumns_3713_1 (arg1, arg2, arg3)); } @@ -3085,9 +3085,9 @@ static void _call_cbs_removeRows_3713_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QSqlQueryModel_Adaptor *)cls)->cbs_removeRows_3713_1 (arg1, arg2, arg3)); } @@ -3169,7 +3169,7 @@ static void _call_cbs_rowCount_c2395_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((int)((QSqlQueryModel_Adaptor *)cls)->cbs_rowCount_c2395_1 (arg1)); } @@ -3380,9 +3380,9 @@ static void _call_cbs_setData_5065_1 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::EditRole, heap); ret.write ((bool)((QSqlQueryModel_Adaptor *)cls)->cbs_setData_5065_1 (arg1, arg2, arg3)); } @@ -3411,10 +3411,10 @@ static void _call_cbs_setHeaderData_5242_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - const QVariant &arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + const QVariant &arg3 = gsi::arg_reader() (args, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::EditRole, heap); ret.write ((bool)((QSqlQueryModel_Adaptor *)cls)->cbs_setHeaderData_5242_1 (arg1, arg2, arg3, arg4)); } @@ -3439,8 +3439,8 @@ static void _call_cbs_setItemData_5414_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QMap &arg2 = args.read & > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QMap &arg2 = gsi::arg_reader & >() (args, heap); ret.write ((bool)((QSqlQueryModel_Adaptor *)cls)->cbs_setItemData_5414_0 (arg1, arg2)); } @@ -3486,9 +3486,9 @@ static void _call_cbs_sibling_c3713_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QSqlQueryModel_Adaptor *)cls)->cbs_sibling_c3713_0 (arg1, arg2, arg3)); } @@ -3513,8 +3513,8 @@ static void _call_cbs_sort_2340_1 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::AscendingOrder), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlQueryModel_Adaptor *)cls)->cbs_sort_2340_1 (arg1, arg2); } @@ -3538,7 +3538,7 @@ static void _call_cbs_span_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QSize)((QSqlQueryModel_Adaptor *)cls)->cbs_span_c2395_0 (arg1)); } @@ -3618,7 +3618,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlQueryModel_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt6/QtSql/gsiDeclQSqlRelationalTableModel.cc b/src/gsiqt/qt6/QtSql/gsiDeclQSqlRelationalTableModel.cc index 2b96cc3dd..4076d7f01 100644 --- a/src/gsiqt/qt6/QtSql/gsiDeclQSqlRelationalTableModel.cc +++ b/src/gsiqt/qt6/QtSql/gsiDeclQSqlRelationalTableModel.cc @@ -1928,7 +1928,7 @@ static void _call_cbs_buddy_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QSqlRelationalTableModel_Adaptor *)cls)->cbs_buddy_c2395_0 (arg1)); } @@ -1959,11 +1959,11 @@ static void _call_cbs_canDropMimeData_c7425_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMimeData *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - const QModelIndex &arg5 = args.read (heap); + const QMimeData *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + const QModelIndex &arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlRelationalTableModel_Adaptor *)cls)->cbs_canDropMimeData_c7425_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -1986,7 +1986,7 @@ static void _call_cbs_canFetchMore_c2395_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QSqlRelationalTableModel_Adaptor *)cls)->cbs_canFetchMore_c2395_1 (arg1)); } @@ -2053,7 +2053,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlRelationalTableModel_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -2097,7 +2097,7 @@ static void _call_cbs_clearItemData_2395_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlRelationalTableModel_Adaptor *)cls)->cbs_clearItemData_2395_0 (arg1)); } @@ -2120,7 +2120,7 @@ static void _call_cbs_columnCount_c2395_1 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((int)((QSqlRelationalTableModel_Adaptor *)cls)->cbs_columnCount_c2395_1 (arg1)); } @@ -2347,7 +2347,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlRelationalTableModel_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -2373,8 +2373,8 @@ static void _call_cbs_data_c3054_1 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::DisplayRole, heap); ret.write ((QVariant)((QSqlRelationalTableModel_Adaptor *)cls)->cbs_data_c3054_1 (arg1, arg2)); } @@ -2448,7 +2448,7 @@ static void _call_cbs_deleteRowFromTable_767_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlRelationalTableModel_Adaptor *)cls)->cbs_deleteRowFromTable_767_0 (arg1)); } @@ -2489,7 +2489,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlRelationalTableModel_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -2521,11 +2521,11 @@ static void _call_cbs_dropMimeData_7425_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMimeData *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - const QModelIndex &arg5 = args.read (heap); + const QMimeData *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + const QModelIndex &arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlRelationalTableModel_Adaptor *)cls)->cbs_dropMimeData_7425_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -2675,7 +2675,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlRelationalTableModel_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -2700,8 +2700,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlRelationalTableModel_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -2724,7 +2724,7 @@ static void _call_cbs_fetchMore_2395_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlRelationalTableModel_Adaptor *)cls)->cbs_fetchMore_2395_1 (arg1); } @@ -2748,7 +2748,7 @@ static void _call_cbs_flags_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QFlags)((QSqlRelationalTableModel_Adaptor *)cls)->cbs_flags_c2395_0 (arg1)); } @@ -2775,9 +2775,9 @@ static void _call_cbs_headerData_c3231_1 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::DisplayRole, heap); ret.write ((QVariant)((QSqlRelationalTableModel_Adaptor *)cls)->cbs_headerData_c3231_1 (arg1, arg2, arg3)); } @@ -2828,9 +2828,9 @@ static void _call_cbs_index_c3713_1 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((QModelIndex)((QSqlRelationalTableModel_Adaptor *)cls)->cbs_index_c3713_1 (arg1, arg2, arg3)); } @@ -2853,7 +2853,7 @@ static void _call_cbs_indexInQuery_c2395_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QSqlRelationalTableModel_Adaptor *)cls)->cbs_indexInQuery_c2395_0 (arg1)); } @@ -2880,9 +2880,9 @@ static void _call_cbs_insertColumns_3713_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QSqlRelationalTableModel_Adaptor *)cls)->cbs_insertColumns_3713_1 (arg1, arg2, arg3)); } @@ -2905,7 +2905,7 @@ static void _call_cbs_insertRowIntoTable_2305_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSqlRecord &arg1 = args.read (heap); + const QSqlRecord &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlRelationalTableModel_Adaptor *)cls)->cbs_insertRowIntoTable_2305_0 (arg1)); } @@ -2932,9 +2932,9 @@ static void _call_cbs_insertRows_3713_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QSqlRelationalTableModel_Adaptor *)cls)->cbs_insertRows_3713_1 (arg1, arg2, arg3)); } @@ -2975,7 +2975,7 @@ static void _call_cbs_itemData_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QMap)((QSqlRelationalTableModel_Adaptor *)cls)->cbs_itemData_c2395_0 (arg1)); } @@ -3048,11 +3048,11 @@ static void _call_cbs_match_c7932_2 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - const QVariant &arg3 = args.read (heap); - int arg4 = args.read (heap); - QFlags arg5 = args.read > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QVariant &arg3 = gsi::arg_reader() (args, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (1, heap); + QFlags arg5 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (Qt::MatchFlags(Qt::MatchStartsWith|Qt::MatchWrap), heap); ret.write > ((QList)((QSqlRelationalTableModel_Adaptor *)cls)->cbs_match_c7932_2 (arg1, arg2, arg3, arg4, arg5)); } @@ -3075,7 +3075,7 @@ static void _call_cbs_mimeData_c3010_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); ret.write ((QMimeData *)((QSqlRelationalTableModel_Adaptor *)cls)->cbs_mimeData_c3010_0 (arg1)); } @@ -3153,11 +3153,11 @@ static void _call_cbs_moveColumns_6659_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - const QModelIndex &arg4 = args.read (heap); - int arg5 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QModelIndex &arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlRelationalTableModel_Adaptor *)cls)->cbs_moveColumns_6659_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -3188,11 +3188,11 @@ static void _call_cbs_moveRows_6659_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - const QModelIndex &arg4 = args.read (heap); - int arg5 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QModelIndex &arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlRelationalTableModel_Adaptor *)cls)->cbs_moveRows_6659_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -3217,8 +3217,8 @@ static void _call_cbs_multiData_c4483_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - QModelRoleDataSpan arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + QModelRoleDataSpan arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlRelationalTableModel_Adaptor *)cls)->cbs_multiData_c4483_0 (arg1, arg2); } @@ -3370,7 +3370,7 @@ static void _call_cbs_relationModel_c767_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QSqlTableModel *)((QSqlRelationalTableModel_Adaptor *)cls)->cbs_relationModel_c767_0 (arg1)); } @@ -3397,9 +3397,9 @@ static void _call_cbs_removeColumns_3713_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QSqlRelationalTableModel_Adaptor *)cls)->cbs_removeColumns_3713_1 (arg1, arg2, arg3)); } @@ -3426,9 +3426,9 @@ static void _call_cbs_removeRows_3713_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QSqlRelationalTableModel_Adaptor *)cls)->cbs_removeRows_3713_1 (arg1, arg2, arg3)); } @@ -3491,7 +3491,7 @@ static void _call_cbs_revertRow_767_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlRelationalTableModel_Adaptor *)cls)->cbs_revertRow_767_0 (arg1); } @@ -3534,7 +3534,7 @@ static void _call_cbs_rowCount_c2395_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((int)((QSqlRelationalTableModel_Adaptor *)cls)->cbs_rowCount_c2395_1 (arg1)); } @@ -3732,7 +3732,7 @@ static void _call_cbs_selectRow_767_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlRelationalTableModel_Adaptor *)cls)->cbs_selectRow_767_0 (arg1)); } @@ -3806,9 +3806,9 @@ static void _call_cbs_setData_5065_1 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::EditRole, heap); ret.write ((bool)((QSqlRelationalTableModel_Adaptor *)cls)->cbs_setData_5065_1 (arg1, arg2, arg3)); } @@ -3831,7 +3831,7 @@ static void _call_cbs_setEditStrategy_3163_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlRelationalTableModel_Adaptor *)cls)->cbs_setEditStrategy_3163_0 (arg1); } @@ -3855,7 +3855,7 @@ static void _call_cbs_setFilter_2025_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlRelationalTableModel_Adaptor *)cls)->cbs_setFilter_2025_0 (arg1); } @@ -3885,10 +3885,10 @@ static void _call_cbs_setHeaderData_5242_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - const QVariant &arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + const QVariant &arg3 = gsi::arg_reader() (args, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::EditRole, heap); ret.write ((bool)((QSqlRelationalTableModel_Adaptor *)cls)->cbs_setHeaderData_5242_1 (arg1, arg2, arg3, arg4)); } @@ -3913,8 +3913,8 @@ static void _call_cbs_setItemData_5414_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QMap &arg2 = args.read & > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QMap &arg2 = gsi::arg_reader & >() (args, heap); ret.write ((bool)((QSqlRelationalTableModel_Adaptor *)cls)->cbs_setItemData_5414_0 (arg1, arg2)); } @@ -3996,8 +3996,8 @@ static void _call_cbs_setRelation_3187_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QSqlRelation &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QSqlRelation &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlRelationalTableModel_Adaptor *)cls)->cbs_setRelation_3187_0 (arg1, arg2); } @@ -4023,8 +4023,8 @@ static void _call_cbs_setSort_2340_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlRelationalTableModel_Adaptor *)cls)->cbs_setSort_2340_0 (arg1, arg2); } @@ -4048,7 +4048,7 @@ static void _call_cbs_setTable_2025_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlRelationalTableModel_Adaptor *)cls)->cbs_setTable_2025_0 (arg1); } @@ -4076,9 +4076,9 @@ static void _call_cbs_sibling_c3713_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QSqlRelationalTableModel_Adaptor *)cls)->cbs_sibling_c3713_0 (arg1, arg2, arg3)); } @@ -4103,8 +4103,8 @@ static void _call_cbs_sort_2340_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlRelationalTableModel_Adaptor *)cls)->cbs_sort_2340_0 (arg1, arg2); } @@ -4128,7 +4128,7 @@ static void _call_cbs_span_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QSize)((QSqlRelationalTableModel_Adaptor *)cls)->cbs_span_c2395_0 (arg1)); } @@ -4208,7 +4208,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlRelationalTableModel_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -4234,8 +4234,8 @@ static void _call_cbs_updateRowInTable_2964_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QSqlRecord &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QSqlRecord &arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlRelationalTableModel_Adaptor *)cls)->cbs_updateRowInTable_2964_0 (arg1, arg2)); } diff --git a/src/gsiqt/qt6/QtSql/gsiDeclQSqlResult.cc b/src/gsiqt/qt6/QtSql/gsiDeclQSqlResult.cc index bc01f4437..9228b2cef 100644 --- a/src/gsiqt/qt6/QtSql/gsiDeclQSqlResult.cc +++ b/src/gsiqt/qt6/QtSql/gsiDeclQSqlResult.cc @@ -707,9 +707,9 @@ static void _call_cbs_bindValue_5596_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); - QFlags arg3 = args.read > (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); + QFlags arg3 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlResult_Adaptor *)cls)->cbs_bindValue_5596_0 (arg1, arg2, arg3); } @@ -737,9 +737,9 @@ static void _call_cbs_bindValue_6854_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); - QFlags arg3 = args.read > (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); + QFlags arg3 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlResult_Adaptor *)cls)->cbs_bindValue_6854_0 (arg1, arg2, arg3); } @@ -896,7 +896,7 @@ static void _call_cbs_data_767_0 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QSqlResult_Adaptor *)cls)->cbs_data_767_0 (arg1)); } @@ -972,7 +972,7 @@ static void _call_cbs_execBatch_864_1 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (false, heap); ret.write ((bool)((QSqlResult_Adaptor *)cls)->cbs_execBatch_864_1 (arg1)); } @@ -1009,7 +1009,7 @@ static void _call_cbs_fetch_767_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlResult_Adaptor *)cls)->cbs_fetch_767_0 (arg1)); } @@ -1169,7 +1169,7 @@ static void _call_cbs_isNull_767_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlResult_Adaptor *)cls)->cbs_isNull_767_0 (arg1)); } @@ -1319,7 +1319,7 @@ static void _call_cbs_prepare_2025_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlResult_Adaptor *)cls)->cbs_prepare_2025_0 (arg1)); } @@ -1361,7 +1361,7 @@ static void _call_cbs_reset_2025_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlResult_Adaptor *)cls)->cbs_reset_2025_0 (arg1)); } @@ -1399,7 +1399,7 @@ static void _call_cbs_savePrepare_2025_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlResult_Adaptor *)cls)->cbs_savePrepare_2025_0 (arg1)); } @@ -1422,7 +1422,7 @@ static void _call_cbs_setActive_864_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlResult_Adaptor *)cls)->cbs_setActive_864_0 (arg1); } @@ -1446,7 +1446,7 @@ static void _call_cbs_setAt_767_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlResult_Adaptor *)cls)->cbs_setAt_767_0 (arg1); } @@ -1470,7 +1470,7 @@ static void _call_cbs_setForwardOnly_864_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlResult_Adaptor *)cls)->cbs_setForwardOnly_864_0 (arg1); } @@ -1494,7 +1494,7 @@ static void _call_cbs_setLastError_2220_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSqlError &arg1 = args.read (heap); + const QSqlError &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlResult_Adaptor *)cls)->cbs_setLastError_2220_0 (arg1); } @@ -1518,7 +1518,7 @@ static void _call_cbs_setNumericalPrecisionPolicy_3429_0 (const qt_gsi::GenericM { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlResult_Adaptor *)cls)->cbs_setNumericalPrecisionPolicy_3429_0 (arg1); } @@ -1542,7 +1542,7 @@ static void _call_cbs_setQuery_2025_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlResult_Adaptor *)cls)->cbs_setQuery_2025_0 (arg1); } @@ -1566,7 +1566,7 @@ static void _call_cbs_setSelect_864_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlResult_Adaptor *)cls)->cbs_setSelect_864_0 (arg1); } @@ -1611,8 +1611,8 @@ static void _call_cbs_virtual_hook_1715_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - void *arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlResult_Adaptor *)cls)->cbs_virtual_hook_1715_0 (arg1, arg2); } diff --git a/src/gsiqt/qt6/QtSql/gsiDeclQSqlTableModel.cc b/src/gsiqt/qt6/QtSql/gsiDeclQSqlTableModel.cc index 89dbe0594..50e62b3a8 100644 --- a/src/gsiqt/qt6/QtSql/gsiDeclQSqlTableModel.cc +++ b/src/gsiqt/qt6/QtSql/gsiDeclQSqlTableModel.cc @@ -2341,7 +2341,7 @@ static void _call_cbs_buddy_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QSqlTableModel_Adaptor *)cls)->cbs_buddy_c2395_0 (arg1)); } @@ -2372,11 +2372,11 @@ static void _call_cbs_canDropMimeData_c7425_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMimeData *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - const QModelIndex &arg5 = args.read (heap); + const QMimeData *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + const QModelIndex &arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlTableModel_Adaptor *)cls)->cbs_canDropMimeData_c7425_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -2399,7 +2399,7 @@ static void _call_cbs_canFetchMore_c2395_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QSqlTableModel_Adaptor *)cls)->cbs_canFetchMore_c2395_1 (arg1)); } @@ -2466,7 +2466,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlTableModel_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -2510,7 +2510,7 @@ static void _call_cbs_clearItemData_2395_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlTableModel_Adaptor *)cls)->cbs_clearItemData_2395_0 (arg1)); } @@ -2533,7 +2533,7 @@ static void _call_cbs_columnCount_c2395_1 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((int)((QSqlTableModel_Adaptor *)cls)->cbs_columnCount_c2395_1 (arg1)); } @@ -2760,7 +2760,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlTableModel_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -2786,8 +2786,8 @@ static void _call_cbs_data_c3054_1 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::DisplayRole, heap); ret.write ((QVariant)((QSqlTableModel_Adaptor *)cls)->cbs_data_c3054_1 (arg1, arg2)); } @@ -2861,7 +2861,7 @@ static void _call_cbs_deleteRowFromTable_767_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlTableModel_Adaptor *)cls)->cbs_deleteRowFromTable_767_0 (arg1)); } @@ -2902,7 +2902,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlTableModel_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -2934,11 +2934,11 @@ static void _call_cbs_dropMimeData_7425_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMimeData *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - const QModelIndex &arg5 = args.read (heap); + const QMimeData *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + const QModelIndex &arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlTableModel_Adaptor *)cls)->cbs_dropMimeData_7425_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -3088,7 +3088,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlTableModel_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -3113,8 +3113,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlTableModel_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -3137,7 +3137,7 @@ static void _call_cbs_fetchMore_2395_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlTableModel_Adaptor *)cls)->cbs_fetchMore_2395_1 (arg1); } @@ -3161,7 +3161,7 @@ static void _call_cbs_flags_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QFlags)((QSqlTableModel_Adaptor *)cls)->cbs_flags_c2395_0 (arg1)); } @@ -3188,9 +3188,9 @@ static void _call_cbs_headerData_c3231_1 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::DisplayRole, heap); ret.write ((QVariant)((QSqlTableModel_Adaptor *)cls)->cbs_headerData_c3231_1 (arg1, arg2, arg3)); } @@ -3241,9 +3241,9 @@ static void _call_cbs_index_c3713_1 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((QModelIndex)((QSqlTableModel_Adaptor *)cls)->cbs_index_c3713_1 (arg1, arg2, arg3)); } @@ -3266,7 +3266,7 @@ static void _call_cbs_indexInQuery_c2395_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QSqlTableModel_Adaptor *)cls)->cbs_indexInQuery_c2395_0 (arg1)); } @@ -3293,9 +3293,9 @@ static void _call_cbs_insertColumns_3713_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QSqlTableModel_Adaptor *)cls)->cbs_insertColumns_3713_1 (arg1, arg2, arg3)); } @@ -3318,7 +3318,7 @@ static void _call_cbs_insertRowIntoTable_2305_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSqlRecord &arg1 = args.read (heap); + const QSqlRecord &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlTableModel_Adaptor *)cls)->cbs_insertRowIntoTable_2305_0 (arg1)); } @@ -3345,9 +3345,9 @@ static void _call_cbs_insertRows_3713_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QSqlTableModel_Adaptor *)cls)->cbs_insertRows_3713_1 (arg1, arg2, arg3)); } @@ -3388,7 +3388,7 @@ static void _call_cbs_itemData_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QMap)((QSqlTableModel_Adaptor *)cls)->cbs_itemData_c2395_0 (arg1)); } @@ -3461,11 +3461,11 @@ static void _call_cbs_match_c7932_2 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - const QVariant &arg3 = args.read (heap); - int arg4 = args.read (heap); - QFlags arg5 = args.read > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QVariant &arg3 = gsi::arg_reader() (args, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (1, heap); + QFlags arg5 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (Qt::MatchFlags(Qt::MatchStartsWith|Qt::MatchWrap), heap); ret.write > ((QList)((QSqlTableModel_Adaptor *)cls)->cbs_match_c7932_2 (arg1, arg2, arg3, arg4, arg5)); } @@ -3488,7 +3488,7 @@ static void _call_cbs_mimeData_c3010_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); ret.write ((QMimeData *)((QSqlTableModel_Adaptor *)cls)->cbs_mimeData_c3010_0 (arg1)); } @@ -3566,11 +3566,11 @@ static void _call_cbs_moveColumns_6659_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - const QModelIndex &arg4 = args.read (heap); - int arg5 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QModelIndex &arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlTableModel_Adaptor *)cls)->cbs_moveColumns_6659_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -3601,11 +3601,11 @@ static void _call_cbs_moveRows_6659_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - const QModelIndex &arg4 = args.read (heap); - int arg5 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QModelIndex &arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlTableModel_Adaptor *)cls)->cbs_moveRows_6659_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -3630,8 +3630,8 @@ static void _call_cbs_multiData_c4483_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - QModelRoleDataSpan arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + QModelRoleDataSpan arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlTableModel_Adaptor *)cls)->cbs_multiData_c4483_0 (arg1, arg2); } @@ -3787,9 +3787,9 @@ static void _call_cbs_removeColumns_3713_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QSqlTableModel_Adaptor *)cls)->cbs_removeColumns_3713_1 (arg1, arg2, arg3)); } @@ -3816,9 +3816,9 @@ static void _call_cbs_removeRows_3713_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QSqlTableModel_Adaptor *)cls)->cbs_removeRows_3713_1 (arg1, arg2, arg3)); } @@ -3881,7 +3881,7 @@ static void _call_cbs_revertRow_767_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlTableModel_Adaptor *)cls)->cbs_revertRow_767_0 (arg1); } @@ -3924,7 +3924,7 @@ static void _call_cbs_rowCount_c2395_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((int)((QSqlTableModel_Adaptor *)cls)->cbs_rowCount_c2395_1 (arg1)); } @@ -4122,7 +4122,7 @@ static void _call_cbs_selectRow_767_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlTableModel_Adaptor *)cls)->cbs_selectRow_767_0 (arg1)); } @@ -4196,9 +4196,9 @@ static void _call_cbs_setData_5065_1 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::EditRole, heap); ret.write ((bool)((QSqlTableModel_Adaptor *)cls)->cbs_setData_5065_1 (arg1, arg2, arg3)); } @@ -4221,7 +4221,7 @@ static void _call_cbs_setEditStrategy_3163_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlTableModel_Adaptor *)cls)->cbs_setEditStrategy_3163_0 (arg1); } @@ -4245,7 +4245,7 @@ static void _call_cbs_setFilter_2025_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlTableModel_Adaptor *)cls)->cbs_setFilter_2025_0 (arg1); } @@ -4275,10 +4275,10 @@ static void _call_cbs_setHeaderData_5242_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - const QVariant &arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + const QVariant &arg3 = gsi::arg_reader() (args, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::EditRole, heap); ret.write ((bool)((QSqlTableModel_Adaptor *)cls)->cbs_setHeaderData_5242_1 (arg1, arg2, arg3, arg4)); } @@ -4303,8 +4303,8 @@ static void _call_cbs_setItemData_5414_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QMap &arg2 = args.read & > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QMap &arg2 = gsi::arg_reader & >() (args, heap); ret.write ((bool)((QSqlTableModel_Adaptor *)cls)->cbs_setItemData_5414_0 (arg1, arg2)); } @@ -4386,8 +4386,8 @@ static void _call_cbs_setSort_2340_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlTableModel_Adaptor *)cls)->cbs_setSort_2340_0 (arg1, arg2); } @@ -4411,7 +4411,7 @@ static void _call_cbs_setTable_2025_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlTableModel_Adaptor *)cls)->cbs_setTable_2025_0 (arg1); } @@ -4439,9 +4439,9 @@ static void _call_cbs_sibling_c3713_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QSqlTableModel_Adaptor *)cls)->cbs_sibling_c3713_0 (arg1, arg2, arg3)); } @@ -4466,8 +4466,8 @@ static void _call_cbs_sort_2340_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlTableModel_Adaptor *)cls)->cbs_sort_2340_0 (arg1, arg2); } @@ -4491,7 +4491,7 @@ static void _call_cbs_span_c2395_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QSize)((QSqlTableModel_Adaptor *)cls)->cbs_span_c2395_0 (arg1)); } @@ -4571,7 +4571,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlTableModel_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -4597,8 +4597,8 @@ static void _call_cbs_updateRowInTable_2964_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QSqlRecord &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QSqlRecord &arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlTableModel_Adaptor *)cls)->cbs_updateRowInTable_2964_0 (arg1, arg2)); } diff --git a/src/gsiqt/qt6/QtSvg/gsiDeclQSvgGenerator.cc b/src/gsiqt/qt6/QtSvg/gsiDeclQSvgGenerator.cc index 5f1837e00..727688099 100644 --- a/src/gsiqt/qt6/QtSvg/gsiDeclQSvgGenerator.cc +++ b/src/gsiqt/qt6/QtSvg/gsiDeclQSvgGenerator.cc @@ -481,7 +481,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSvgGenerator_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -505,7 +505,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QSvgGenerator_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -547,7 +547,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QSvgGenerator_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } diff --git a/src/gsiqt/qt6/QtSvg/gsiDeclQSvgRenderer.cc b/src/gsiqt/qt6/QtSvg/gsiDeclQSvgRenderer.cc index bc92a2b72..82caf2a91 100644 --- a/src/gsiqt/qt6/QtSvg/gsiDeclQSvgRenderer.cc +++ b/src/gsiqt/qt6/QtSvg/gsiDeclQSvgRenderer.cc @@ -837,7 +837,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSvgRenderer_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -861,7 +861,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSvgRenderer_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -903,7 +903,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSvgRenderer_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -927,7 +927,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSvgRenderer_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -952,8 +952,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSvgRenderer_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1072,7 +1072,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSvgRenderer_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt6/QtUiTools/gsiDeclQUiLoader.cc b/src/gsiqt/qt6/QtUiTools/gsiDeclQUiLoader.cc index 292b61f64..319dab89a 100644 --- a/src/gsiqt/qt6/QtUiTools/gsiDeclQUiLoader.cc +++ b/src/gsiqt/qt6/QtUiTools/gsiDeclQUiLoader.cc @@ -684,7 +684,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUiLoader_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -710,8 +710,8 @@ static void _call_cbs_createAction_3219_2 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); + const QString &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); ret.write ((QAction *)((QUiLoader_Adaptor *)cls)->cbs_createAction_3219_2 (arg1, arg2)); } @@ -736,8 +736,8 @@ static void _call_cbs_createActionGroup_3219_2 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); + const QString &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); ret.write ((QActionGroup *)((QUiLoader_Adaptor *)cls)->cbs_createActionGroup_3219_2 (arg1, arg2)); } @@ -764,9 +764,9 @@ static void _call_cbs_createLayout_5136_2 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - QObject *arg2 = args.read (heap); - const QString &arg3 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + QObject *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); + const QString &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); ret.write ((QLayout *)((QUiLoader_Adaptor *)cls)->cbs_createLayout_5136_2 (arg1, arg2, arg3)); } @@ -793,9 +793,9 @@ static void _call_cbs_createWidget_5149_2 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - QWidget *arg2 = args.read (heap); - const QString &arg3 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); + const QString &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); ret.write ((QWidget *)((QUiLoader_Adaptor *)cls)->cbs_createWidget_5149_2 (arg1, arg2, arg3)); } @@ -818,7 +818,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUiLoader_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -860,7 +860,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUiLoader_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -884,7 +884,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QUiLoader_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -909,8 +909,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QUiLoader_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1015,7 +1015,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUiLoader_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQAbstractButton.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQAbstractButton.cc index fbf895d26..e2dd4a6f4 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQAbstractButton.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQAbstractButton.cc @@ -1561,7 +1561,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractButton_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1585,7 +1585,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractButton_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1629,7 +1629,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractButton_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1671,7 +1671,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractButton_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1695,7 +1695,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractButton_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1762,7 +1762,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractButton_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1826,7 +1826,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractButton_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1850,7 +1850,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractButton_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1874,7 +1874,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractButton_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1898,7 +1898,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractButton_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1922,7 +1922,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractButton_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1946,7 +1946,7 @@ static void _call_cbs_enterEvent_1727_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEnterEvent *arg1 = args.read (heap); + QEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractButton_Adaptor *)cls)->cbs_enterEvent_1727_0 (arg1); } @@ -1970,7 +1970,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractButton_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1995,8 +1995,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractButton_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -2019,7 +2019,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractButton_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -2057,7 +2057,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractButton_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -2080,7 +2080,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractButton_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -2137,7 +2137,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QAbstractButton_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -2160,7 +2160,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractButton_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -2184,7 +2184,7 @@ static void _call_cbs_hitButton_c1916_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractButton_Adaptor *)cls)->cbs_hitButton_c1916_0 (arg1)); } @@ -2207,7 +2207,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractButton_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -2231,7 +2231,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractButton_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2255,7 +2255,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QAbstractButton_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2296,7 +2296,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractButton_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2320,7 +2320,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractButton_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2344,7 +2344,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractButton_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2368,7 +2368,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QAbstractButton_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2410,7 +2410,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractButton_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2434,7 +2434,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractButton_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2458,7 +2458,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractButton_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2482,7 +2482,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractButton_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2506,7 +2506,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractButton_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2534,9 +2534,9 @@ static void _call_cbs_nativeEvent_6949_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - QIntegerForSizeof::Signed *arg3 = args.read::Signed * > (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + QIntegerForSizeof::Signed *arg3 = gsi::arg_reader::Signed * >() (args, heap); ret.write ((bool)((QAbstractButton_Adaptor *)cls)->cbs_nativeEvent_6949_0 (arg1, arg2, arg3)); } @@ -2616,7 +2616,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractButton_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2672,7 +2672,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QAbstractButton_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -2709,7 +2709,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractButton_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2761,7 +2761,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractButton_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2804,7 +2804,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractButton_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2847,7 +2847,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractButton_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2871,7 +2871,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractButton_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2932,7 +2932,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractButton_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQAbstractGraphicsShapeItem.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQAbstractGraphicsShapeItem.cc index d67ce7b6a..bcaa7e44c 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQAbstractGraphicsShapeItem.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQAbstractGraphicsShapeItem.cc @@ -843,7 +843,7 @@ static void _call_cbs_advance_767_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractGraphicsShapeItem_Adaptor *)cls)->cbs_advance_767_0 (arg1); } @@ -888,8 +888,8 @@ static void _call_cbs_collidesWithItem_c4977_1 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape), heap); ret.write ((bool)((QAbstractGraphicsShapeItem_Adaptor *)cls)->cbs_collidesWithItem_c4977_1 (arg1, arg2)); } @@ -914,8 +914,8 @@ static void _call_cbs_collidesWithPath_c4877_1 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape), heap); ret.write ((bool)((QAbstractGraphicsShapeItem_Adaptor *)cls)->cbs_collidesWithPath_c4877_1 (arg1, arg2)); } @@ -938,7 +938,7 @@ static void _call_cbs_contains_c1986_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractGraphicsShapeItem_Adaptor *)cls)->cbs_contains_c1986_0 (arg1)); } @@ -961,7 +961,7 @@ static void _call_cbs_contextMenuEvent_3674_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneContextMenuEvent *arg1 = args.read (heap); + QGraphicsSceneContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractGraphicsShapeItem_Adaptor *)cls)->cbs_contextMenuEvent_3674_0 (arg1); } @@ -985,7 +985,7 @@ static void _call_cbs_dragEnterEvent_3315_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractGraphicsShapeItem_Adaptor *)cls)->cbs_dragEnterEvent_3315_0 (arg1); } @@ -1009,7 +1009,7 @@ static void _call_cbs_dragLeaveEvent_3315_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractGraphicsShapeItem_Adaptor *)cls)->cbs_dragLeaveEvent_3315_0 (arg1); } @@ -1033,7 +1033,7 @@ static void _call_cbs_dragMoveEvent_3315_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractGraphicsShapeItem_Adaptor *)cls)->cbs_dragMoveEvent_3315_0 (arg1); } @@ -1057,7 +1057,7 @@ static void _call_cbs_dropEvent_3315_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractGraphicsShapeItem_Adaptor *)cls)->cbs_dropEvent_3315_0 (arg1); } @@ -1081,7 +1081,7 @@ static void _call_cbs_extension_c2119_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVariant &arg1 = args.read (heap); + const QVariant &arg1 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QAbstractGraphicsShapeItem_Adaptor *)cls)->cbs_extension_c2119_0 (arg1)); } @@ -1104,7 +1104,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractGraphicsShapeItem_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1128,7 +1128,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractGraphicsShapeItem_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -1152,7 +1152,7 @@ static void _call_cbs_hoverEnterEvent_3044_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractGraphicsShapeItem_Adaptor *)cls)->cbs_hoverEnterEvent_3044_0 (arg1); } @@ -1176,7 +1176,7 @@ static void _call_cbs_hoverLeaveEvent_3044_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractGraphicsShapeItem_Adaptor *)cls)->cbs_hoverLeaveEvent_3044_0 (arg1); } @@ -1200,7 +1200,7 @@ static void _call_cbs_hoverMoveEvent_3044_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractGraphicsShapeItem_Adaptor *)cls)->cbs_hoverMoveEvent_3044_0 (arg1); } @@ -1224,7 +1224,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractGraphicsShapeItem_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -1248,7 +1248,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QAbstractGraphicsShapeItem_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -1271,7 +1271,7 @@ static void _call_cbs_isObscuredBy_c2614_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractGraphicsShapeItem_Adaptor *)cls)->cbs_isObscuredBy_c2614_0 (arg1)); } @@ -1296,8 +1296,8 @@ static void _call_cbs_itemChange_5658_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QVariant &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QAbstractGraphicsShapeItem_Adaptor *)cls)->cbs_itemChange_5658_0 (arg1, arg2)); } @@ -1320,7 +1320,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractGraphicsShapeItem_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -1344,7 +1344,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractGraphicsShapeItem_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -1368,7 +1368,7 @@ static void _call_cbs_mouseDoubleClickEvent_3049_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractGraphicsShapeItem_Adaptor *)cls)->cbs_mouseDoubleClickEvent_3049_0 (arg1); } @@ -1392,7 +1392,7 @@ static void _call_cbs_mouseMoveEvent_3049_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractGraphicsShapeItem_Adaptor *)cls)->cbs_mouseMoveEvent_3049_0 (arg1); } @@ -1416,7 +1416,7 @@ static void _call_cbs_mousePressEvent_3049_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractGraphicsShapeItem_Adaptor *)cls)->cbs_mousePressEvent_3049_0 (arg1); } @@ -1440,7 +1440,7 @@ static void _call_cbs_mouseReleaseEvent_3049_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractGraphicsShapeItem_Adaptor *)cls)->cbs_mouseReleaseEvent_3049_0 (arg1); } @@ -1487,9 +1487,9 @@ static void _call_cbs_paint_6301_1 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QStyleOptionGraphicsItem *arg2 = args.read (heap); - QWidget *arg3 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionGraphicsItem *arg2 = gsi::arg_reader() (args, heap); + QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractGraphicsShapeItem_Adaptor *)cls)->cbs_paint_6301_1 (arg1, arg2, arg3); } @@ -1543,7 +1543,7 @@ static void _call_cbs_sceneEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractGraphicsShapeItem_Adaptor *)cls)->cbs_sceneEvent_1217_0 (arg1)); } @@ -1568,8 +1568,8 @@ static void _call_cbs_sceneEventFilter_3028_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsItem *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractGraphicsShapeItem_Adaptor *)cls)->cbs_sceneEventFilter_3028_0 (arg1, arg2)); } @@ -1594,8 +1594,8 @@ static void _call_cbs_setExtension_4817_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractGraphicsShapeItem_Adaptor *)cls)->cbs_setExtension_4817_0 (arg1, arg2); } @@ -1638,7 +1638,7 @@ static void _call_cbs_supportsExtension_c2806_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractGraphicsShapeItem_Adaptor *)cls)->cbs_supportsExtension_c2806_0 (arg1)); } @@ -1695,7 +1695,7 @@ static void _call_cbs_wheelEvent_3029_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneWheelEvent *arg1 = args.read (heap); + QGraphicsSceneWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractGraphicsShapeItem_Adaptor *)cls)->cbs_wheelEvent_3029_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQAbstractItemDelegate.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQAbstractItemDelegate.cc index a32e31b4b..6e4231d52 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQAbstractItemDelegate.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQAbstractItemDelegate.cc @@ -730,7 +730,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemDelegate_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -797,9 +797,9 @@ static void _call_cbs_createEditor_c6860_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - const QStyleOptionViewItem &arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionViewItem &arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); ret.write ((QWidget *)((QAbstractItemDelegate_Adaptor *)cls)->cbs_createEditor_c6860_0 (arg1, arg2, arg3)); } @@ -822,7 +822,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemDelegate_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -848,8 +848,8 @@ static void _call_cbs_destroyEditor_c3602_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemDelegate_Adaptor *)cls)->cbs_destroyEditor_c3602_0 (arg1, arg2); } @@ -891,7 +891,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemDelegate_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -921,10 +921,10 @@ static void _call_cbs_editorEvent_9073_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); - QAbstractItemModel *arg2 = args.read (heap); - const QStyleOptionViewItem &arg3 = args.read (heap); - const QModelIndex &arg4 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); + QAbstractItemModel *arg2 = gsi::arg_reader() (args, heap); + const QStyleOptionViewItem &arg3 = gsi::arg_reader() (args, heap); + const QModelIndex &arg4 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractItemDelegate_Adaptor *)cls)->cbs_editorEvent_9073_0 (arg1, arg2, arg3, arg4)); } @@ -947,7 +947,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractItemDelegate_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -972,8 +972,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractItemDelegate_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1002,10 +1002,10 @@ static void _call_cbs_helpEvent_9380_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHelpEvent *arg1 = args.read (heap); - QAbstractItemView *arg2 = args.read (heap); - const QStyleOptionViewItem &arg3 = args.read (heap); - const QModelIndex &arg4 = args.read (heap); + QHelpEvent *arg1 = gsi::arg_reader() (args, heap); + QAbstractItemView *arg2 = gsi::arg_reader() (args, heap); + const QStyleOptionViewItem &arg3 = gsi::arg_reader() (args, heap); + const QModelIndex &arg4 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractItemDelegate_Adaptor *)cls)->cbs_helpEvent_9380_0 (arg1, arg2, arg3, arg4)); } @@ -1068,9 +1068,9 @@ static void _call_cbs_paint_c6971_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QStyleOptionViewItem &arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionViewItem &arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemDelegate_Adaptor *)cls)->cbs_paint_c6971_0 (arg1, arg2, arg3); } @@ -1161,8 +1161,8 @@ static void _call_cbs_setEditorData_c3602_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemDelegate_Adaptor *)cls)->cbs_setEditorData_c3602_0 (arg1, arg2); } @@ -1190,9 +1190,9 @@ static void _call_cbs_setModelData_c5913_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - QAbstractItemModel *arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + QAbstractItemModel *arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemDelegate_Adaptor *)cls)->cbs_setModelData_c5913_0 (arg1, arg2, arg3); } @@ -1218,8 +1218,8 @@ static void _call_cbs_sizeHint_c5653_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStyleOptionViewItem &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + const QStyleOptionViewItem &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); ret.write ((QSize)((QAbstractItemDelegate_Adaptor *)cls)->cbs_sizeHint_c5653_0 (arg1, arg2)); } @@ -1260,7 +1260,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemDelegate_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -1288,9 +1288,9 @@ static void _call_cbs_updateEditorGeometry_c6860_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - const QStyleOptionViewItem &arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionViewItem &arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemDelegate_Adaptor *)cls)->cbs_updateEditorGeometry_c6860_0 (arg1, arg2, arg3); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQAbstractItemView.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQAbstractItemView.cc index 6e0968645..2aef34439 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQAbstractItemView.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQAbstractItemView.cc @@ -3230,7 +3230,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -3272,7 +3272,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -3296,7 +3296,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -3340,8 +3340,8 @@ static void _call_cbs_closeEditor_4926_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_closeEditor_4926_0 (arg1, arg2); } @@ -3365,7 +3365,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -3389,7 +3389,7 @@ static void _call_cbs_commitData_1315_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_commitData_1315_0 (arg1); } @@ -3413,7 +3413,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -3464,8 +3464,8 @@ static void _call_cbs_currentChanged_4682_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_currentChanged_4682_0 (arg1, arg2); } @@ -3507,7 +3507,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -3535,9 +3535,9 @@ static void _call_cbs_dataChanged_6833_1 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); - const QList &arg3 = args.read & > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); + const QList &arg3 = args ? gsi::arg_reader & >() (args, heap) : gsi::arg_maker & >() (QList(), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_dataChanged_6833_1 (arg1, arg2, arg3); } @@ -3615,7 +3615,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -3692,7 +3692,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -3716,7 +3716,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -3740,7 +3740,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -3783,7 +3783,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -3825,9 +3825,9 @@ static void _call_cbs_edit_6773_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - QEvent *arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + QEvent *arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractItemView_Adaptor *)cls)->cbs_edit_6773_0 (arg1, arg2, arg3)); } @@ -3850,7 +3850,7 @@ static void _call_cbs_editorDestroyed_1302_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_editorDestroyed_1302_0 (arg1); } @@ -3874,7 +3874,7 @@ static void _call_cbs_enterEvent_1727_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEnterEvent *arg1 = args.read (heap); + QEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_enterEvent_1727_0 (arg1); } @@ -3916,7 +3916,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractItemView_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -3941,8 +3941,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractItemView_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -3980,7 +3980,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -4018,7 +4018,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractItemView_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -4041,7 +4041,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -4098,7 +4098,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QAbstractItemView_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -4121,7 +4121,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -4164,7 +4164,7 @@ static void _call_cbs_horizontalScrollbarAction_767_0 (const qt_gsi::GenericMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_horizontalScrollbarAction_767_0 (arg1); } @@ -4188,7 +4188,7 @@ static void _call_cbs_horizontalScrollbarValueChanged_767_0 (const qt_gsi::Gener { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_horizontalScrollbarValueChanged_767_0 (arg1); } @@ -4230,7 +4230,7 @@ static void _call_cbs_indexAt_c1916_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QAbstractItemView_Adaptor *)cls)->cbs_indexAt_c1916_0 (arg1)); } @@ -4253,7 +4253,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -4277,7 +4277,7 @@ static void _call_cbs_initStyleOption_c2356_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionFrame *arg1 = args.read (heap); + QStyleOptionFrame *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_initStyleOption_c2356_0 (arg1); } @@ -4301,7 +4301,7 @@ static void _call_cbs_initViewItemOption_c2675_0 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionViewItem *arg1 = args.read (heap); + QStyleOptionViewItem *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_initViewItemOption_c2675_0 (arg1); } @@ -4325,7 +4325,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -4349,7 +4349,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QAbstractItemView_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -4372,7 +4372,7 @@ static void _call_cbs_isIndexHidden_c2395_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractItemView_Adaptor *)cls)->cbs_isIndexHidden_c2395_0 (arg1)); } @@ -4413,7 +4413,7 @@ static void _call_cbs_itemDelegateForIndex_c2395_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QAbstractItemDelegate *)((QAbstractItemView_Adaptor *)cls)->cbs_itemDelegateForIndex_c2395_0 (arg1)); } @@ -4436,7 +4436,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -4460,7 +4460,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -4484,7 +4484,7 @@ static void _call_cbs_keyboardSearch_2025_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_keyboardSearch_2025_0 (arg1); } @@ -4508,7 +4508,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -4532,7 +4532,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QAbstractItemView_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -4574,7 +4574,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -4598,7 +4598,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -4622,7 +4622,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -4646,7 +4646,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -4672,8 +4672,8 @@ static void _call_cbs_moveCursor_6476_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); - QFlags arg2 = args.read > (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); ret.write ((QModelIndex)((QAbstractItemView_Adaptor *)cls)->cbs_moveCursor_6476_0 (arg1, arg2)); } @@ -4696,7 +4696,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -4724,9 +4724,9 @@ static void _call_cbs_nativeEvent_6949_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - QIntegerForSizeof::Signed *arg3 = args.read::Signed * > (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + QIntegerForSizeof::Signed *arg3 = gsi::arg_reader::Signed * >() (args, heap); ret.write ((bool)((QAbstractItemView_Adaptor *)cls)->cbs_nativeEvent_6949_0 (arg1, arg2, arg3)); } @@ -4786,7 +4786,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -4846,7 +4846,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QAbstractItemView_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -4889,7 +4889,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -4917,9 +4917,9 @@ static void _call_cbs_rowsAboutToBeRemoved_3713_0 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_rowsAboutToBeRemoved_3713_0 (arg1, arg2, arg3); } @@ -4947,9 +4947,9 @@ static void _call_cbs_rowsInserted_3713_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_rowsInserted_3713_0 (arg1, arg2, arg3); } @@ -4990,8 +4990,8 @@ static void _call_cbs_scrollContentsBy_1426_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_scrollContentsBy_1426_0 (arg1, arg2); } @@ -5039,8 +5039,8 @@ static void _call_cbs_scrollTo_5576_1 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QAbstractItemView::EnsureVisible), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_scrollTo_5576_1 (arg1, arg2); } @@ -5105,8 +5105,8 @@ static void _call_cbs_selectionChanged_5346_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QItemSelection &arg1 = args.read (heap); - const QItemSelection &arg2 = args.read (heap); + const QItemSelection &arg1 = gsi::arg_reader() (args, heap); + const QItemSelection &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_selectionChanged_5346_0 (arg1, arg2); } @@ -5132,8 +5132,8 @@ static void _call_cbs_selectionCommand_c4199_1 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QEvent *arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QEvent *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); ret.write > ((QFlags)((QAbstractItemView_Adaptor *)cls)->cbs_selectionCommand_c4199_1 (arg1, arg2)); } @@ -5203,7 +5203,7 @@ static void _call_cbs_setModel_2419_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractItemModel *arg1 = args.read (heap); + QAbstractItemModel *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_setModel_2419_0 (arg1); } @@ -5227,7 +5227,7 @@ static void _call_cbs_setRootIndex_2395_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_setRootIndex_2395_0 (arg1); } @@ -5253,8 +5253,8 @@ static void _call_cbs_setSelection_6155_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); - QFlags arg2 = args.read > (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_setSelection_6155_0 (arg1, arg2); } @@ -5278,7 +5278,7 @@ static void _call_cbs_setSelectionModel_2533_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QItemSelectionModel *arg1 = args.read (heap); + QItemSelectionModel *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_setSelectionModel_2533_0 (arg1); } @@ -5368,7 +5368,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -5392,7 +5392,7 @@ static void _call_cbs_setupViewport_1315_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_setupViewport_1315_0 (arg1); } @@ -5435,7 +5435,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -5478,7 +5478,7 @@ static void _call_cbs_sizeHintForColumn_c767_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QAbstractItemView_Adaptor *)cls)->cbs_sizeHintForColumn_c767_0 (arg1)); } @@ -5501,7 +5501,7 @@ static void _call_cbs_sizeHintForRow_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QAbstractItemView_Adaptor *)cls)->cbs_sizeHintForRow_c767_0 (arg1)); } @@ -5539,7 +5539,7 @@ static void _call_cbs_startDrag_2456_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_startDrag_2456_0 (arg1); } @@ -5592,7 +5592,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -5616,7 +5616,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -5738,7 +5738,7 @@ static void _call_cbs_verticalScrollbarAction_767_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_verticalScrollbarAction_767_0 (arg1); } @@ -5762,7 +5762,7 @@ static void _call_cbs_verticalScrollbarValueChanged_767_0 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_verticalScrollbarValueChanged_767_0 (arg1); } @@ -5800,7 +5800,7 @@ static void _call_cbs_viewportEvent_1217_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractItemView_Adaptor *)cls)->cbs_viewportEvent_1217_0 (arg1)); } @@ -5856,7 +5856,7 @@ static void _call_cbs_visualRect_c2395_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QAbstractItemView_Adaptor *)cls)->cbs_visualRect_c2395_0 (arg1)); } @@ -5879,7 +5879,7 @@ static void _call_cbs_visualRegionForSelection_c2727_0 (const qt_gsi::GenericMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QItemSelection &arg1 = args.read (heap); + const QItemSelection &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRegion)((QAbstractItemView_Adaptor *)cls)->cbs_visualRegionForSelection_c2727_0 (arg1)); } @@ -5902,7 +5902,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQAbstractScrollArea.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQAbstractScrollArea.cc index b2f8a9ffd..5c344ccda 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQAbstractScrollArea.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQAbstractScrollArea.cc @@ -1483,7 +1483,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1507,7 +1507,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1531,7 +1531,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1555,7 +1555,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1579,7 +1579,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1646,7 +1646,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1710,7 +1710,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1734,7 +1734,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1758,7 +1758,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1782,7 +1782,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1825,7 +1825,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1849,7 +1849,7 @@ static void _call_cbs_enterEvent_1727_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEnterEvent *arg1 = args.read (heap); + QEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea_Adaptor *)cls)->cbs_enterEvent_1727_0 (arg1); } @@ -1873,7 +1873,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractScrollArea_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1898,8 +1898,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractScrollArea_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1922,7 +1922,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1960,7 +1960,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractScrollArea_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -1983,7 +1983,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -2040,7 +2040,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QAbstractScrollArea_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -2063,7 +2063,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -2087,7 +2087,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -2111,7 +2111,7 @@ static void _call_cbs_initStyleOption_c2356_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionFrame *arg1 = args.read (heap); + QStyleOptionFrame *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea_Adaptor *)cls)->cbs_initStyleOption_c2356_0 (arg1); } @@ -2135,7 +2135,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2159,7 +2159,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QAbstractScrollArea_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2200,7 +2200,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2224,7 +2224,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2248,7 +2248,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2272,7 +2272,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QAbstractScrollArea_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2314,7 +2314,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2338,7 +2338,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2362,7 +2362,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2386,7 +2386,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2410,7 +2410,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2438,9 +2438,9 @@ static void _call_cbs_nativeEvent_6949_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - QIntegerForSizeof::Signed *arg3 = args.read::Signed * > (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + QIntegerForSizeof::Signed *arg3 = gsi::arg_reader::Signed * >() (args, heap); ret.write ((bool)((QAbstractScrollArea_Adaptor *)cls)->cbs_nativeEvent_6949_0 (arg1, arg2, arg3)); } @@ -2500,7 +2500,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2542,7 +2542,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QAbstractScrollArea_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -2565,7 +2565,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2591,8 +2591,8 @@ static void _call_cbs_scrollContentsBy_1426_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea_Adaptor *)cls)->cbs_scrollContentsBy_1426_0 (arg1, arg2); } @@ -2691,7 +2691,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2715,7 +2715,7 @@ static void _call_cbs_setupViewport_1315_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea_Adaptor *)cls)->cbs_setupViewport_1315_0 (arg1); } @@ -2758,7 +2758,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2801,7 +2801,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2825,7 +2825,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2868,7 +2868,7 @@ static void _call_cbs_viewportEvent_1217_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractScrollArea_Adaptor *)cls)->cbs_viewportEvent_1217_0 (arg1)); } @@ -2924,7 +2924,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQAbstractSlider.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQAbstractSlider.cc index fae293eb1..f2dda8114 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQAbstractSlider.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQAbstractSlider.cc @@ -1529,7 +1529,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1571,7 +1571,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1595,7 +1595,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1619,7 +1619,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1643,7 +1643,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1710,7 +1710,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1774,7 +1774,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1798,7 +1798,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1822,7 +1822,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1846,7 +1846,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1870,7 +1870,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1894,7 +1894,7 @@ static void _call_cbs_enterEvent_1727_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEnterEvent *arg1 = args.read (heap); + QEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider_Adaptor *)cls)->cbs_enterEvent_1727_0 (arg1); } @@ -1918,7 +1918,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractSlider_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1943,8 +1943,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractSlider_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1967,7 +1967,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -2005,7 +2005,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractSlider_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -2028,7 +2028,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -2085,7 +2085,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QAbstractSlider_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -2108,7 +2108,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -2132,7 +2132,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -2156,7 +2156,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2180,7 +2180,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QAbstractSlider_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2221,7 +2221,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2245,7 +2245,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2269,7 +2269,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2293,7 +2293,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QAbstractSlider_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2335,7 +2335,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2359,7 +2359,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2383,7 +2383,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2407,7 +2407,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2431,7 +2431,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2459,9 +2459,9 @@ static void _call_cbs_nativeEvent_6949_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - QIntegerForSizeof::Signed *arg3 = args.read::Signed * > (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + QIntegerForSizeof::Signed *arg3 = gsi::arg_reader::Signed * >() (args, heap); ret.write ((bool)((QAbstractSlider_Adaptor *)cls)->cbs_nativeEvent_6949_0 (arg1, arg2, arg3)); } @@ -2521,7 +2521,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2584,7 +2584,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QAbstractSlider_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -2621,7 +2621,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2698,7 +2698,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2741,7 +2741,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2784,7 +2784,7 @@ static void _call_cbs_sliderChange_3257_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider_Adaptor *)cls)->cbs_sliderChange_3257_0 (arg1); } @@ -2854,7 +2854,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2878,7 +2878,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2939,7 +2939,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQAbstractSpinBox.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQAbstractSpinBox.cc index 408922038..94baf3d75 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQAbstractSpinBox.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQAbstractSpinBox.cc @@ -1748,7 +1748,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1772,7 +1772,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1796,7 +1796,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1840,7 +1840,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1864,7 +1864,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1931,7 +1931,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1995,7 +1995,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -2019,7 +2019,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -2043,7 +2043,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -2067,7 +2067,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -2091,7 +2091,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -2129,7 +2129,7 @@ static void _call_cbs_enterEvent_1727_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEnterEvent *arg1 = args.read (heap); + QEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox_Adaptor *)cls)->cbs_enterEvent_1727_0 (arg1); } @@ -2153,7 +2153,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractSpinBox_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -2178,8 +2178,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractSpinBox_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -2202,7 +2202,7 @@ static void _call_cbs_fixup_c1330_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QString &arg1 = args.read (heap); + QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox_Adaptor *)cls)->cbs_fixup_c1330_0 (arg1); } @@ -2226,7 +2226,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -2264,7 +2264,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractSpinBox_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -2287,7 +2287,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -2344,7 +2344,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QAbstractSpinBox_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -2367,7 +2367,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -2391,7 +2391,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -2415,7 +2415,7 @@ static void _call_cbs_initStyleOption_c2572_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionSpinBox *arg1 = args.read (heap); + QStyleOptionSpinBox *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox_Adaptor *)cls)->cbs_initStyleOption_c2572_0 (arg1); } @@ -2439,7 +2439,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2463,7 +2463,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QAbstractSpinBox_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2504,7 +2504,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2528,7 +2528,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2552,7 +2552,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2590,7 +2590,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QAbstractSpinBox_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2632,7 +2632,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2656,7 +2656,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2680,7 +2680,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2704,7 +2704,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2728,7 +2728,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2756,9 +2756,9 @@ static void _call_cbs_nativeEvent_6949_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - QIntegerForSizeof::Signed *arg3 = args.read::Signed * > (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + QIntegerForSizeof::Signed *arg3 = gsi::arg_reader::Signed * >() (args, heap); ret.write ((bool)((QAbstractSpinBox_Adaptor *)cls)->cbs_nativeEvent_6949_0 (arg1, arg2, arg3)); } @@ -2818,7 +2818,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2860,7 +2860,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QAbstractSpinBox_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -2883,7 +2883,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2954,7 +2954,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2997,7 +2997,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -3040,7 +3040,7 @@ static void _call_cbs_stepBy_767_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox_Adaptor *)cls)->cbs_stepBy_767_0 (arg1); } @@ -3083,7 +3083,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -3107,7 +3107,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -3152,8 +3152,8 @@ static void _call_cbs_validate_c2171_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QString &arg1 = args.read (heap); - int &arg2 = args.read (heap); + QString &arg1 = gsi::arg_reader() (args, heap); + int &arg2 = gsi::arg_reader() (args, heap); ret.write::target_type > ((qt_gsi::Converter::target_type)((QAbstractSpinBox_Adaptor *)cls)->cbs_validate_c2171_0 (arg1, arg2)); } @@ -3176,7 +3176,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQApplication.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQApplication.cc index 3f383e114..e0a2917fd 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQApplication.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQApplication.cc @@ -1362,7 +1362,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QApplication_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1404,7 +1404,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QApplication_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1446,7 +1446,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QApplication_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1470,7 +1470,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QApplication_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1495,8 +1495,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QApplication_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1861,7 +1861,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QApplication_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQBoxLayout.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQBoxLayout.cc index b63d0bfb9..e81d0c5de 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQBoxLayout.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQBoxLayout.cc @@ -1437,7 +1437,8 @@ static void _call_cbs_addItem_1740_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QLayoutItem *arg1 = args.read (heap); + QLayoutItem *arg1 = gsi::arg_reader() (args, heap); + qt_gsi::qt_keep (arg1); __SUPPRESS_UNUSED_WARNING(ret); ((QBoxLayout_Adaptor *)cls)->cbs_addItem_1740_0 (arg1); } @@ -1497,7 +1498,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QBoxLayout_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1559,7 +1560,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QBoxLayout_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1601,7 +1602,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QBoxLayout_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1625,7 +1626,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QBoxLayout_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1650,8 +1651,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QBoxLayout_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1731,7 +1732,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QBoxLayout_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -1754,7 +1755,7 @@ static void _call_cbs_indexOf_c2010_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QWidget *arg1 = args.read (heap); + const QWidget *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QBoxLayout_Adaptor *)cls)->cbs_indexOf_c2010_0 (arg1)); } @@ -1777,7 +1778,7 @@ static void _call_cbs_indexOf_c2435_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QLayoutItem *arg1 = args.read (heap); + const QLayoutItem *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QBoxLayout_Adaptor *)cls)->cbs_indexOf_c2435_0 (arg1)); } @@ -1857,7 +1858,7 @@ static void _call_cbs_itemAt_c767_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QLayoutItem *)((QBoxLayout_Adaptor *)cls)->cbs_itemAt_c767_0 (arg1)); } @@ -1918,7 +1919,7 @@ static void _call_cbs_minimumHeightForWidth_c767_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QBoxLayout_Adaptor *)cls)->cbs_minimumHeightForWidth_c767_0 (arg1)); } @@ -2000,9 +2001,9 @@ static void _call_cbs_replaceWidget_5361_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - QWidget *arg2 = args.read (heap); - QFlags arg3 = args.read > (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = gsi::arg_reader() (args, heap); + QFlags arg3 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (Qt::FindChildrenRecursively, heap); ret.write ((QLayoutItem *)((QBoxLayout_Adaptor *)cls)->cbs_replaceWidget_5361_1 (arg1, arg2, arg3)); } @@ -2053,7 +2054,7 @@ static void _call_cbs_setGeometry_1792_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QBoxLayout_Adaptor *)cls)->cbs_setGeometry_1792_0 (arg1); } @@ -2077,7 +2078,7 @@ static void _call_cbs_setSpacing_767_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QBoxLayout_Adaptor *)cls)->cbs_setSpacing_767_0 (arg1); } @@ -2158,7 +2159,7 @@ static void _call_cbs_takeAt_767_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QLayoutItem *)((QBoxLayout_Adaptor *)cls)->cbs_takeAt_767_0 (arg1)); } @@ -2181,7 +2182,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QBoxLayout_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQButtonGroup.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQButtonGroup.cc index c64a02c05..d226218dc 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQButtonGroup.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQButtonGroup.cc @@ -610,7 +610,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QButtonGroup_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -634,7 +634,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QButtonGroup_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -676,7 +676,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QButtonGroup_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -700,7 +700,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QButtonGroup_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -725,8 +725,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QButtonGroup_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -906,7 +906,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QButtonGroup_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQCalendarWidget.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQCalendarWidget.cc index e4baa6d6a..2bcac6e9b 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQCalendarWidget.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQCalendarWidget.cc @@ -1865,7 +1865,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1907,7 +1907,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1931,7 +1931,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1973,7 +1973,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1997,7 +1997,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -2085,7 +2085,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -2149,7 +2149,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -2173,7 +2173,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -2197,7 +2197,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -2221,7 +2221,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -2245,7 +2245,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -2269,7 +2269,7 @@ static void _call_cbs_enterEvent_1727_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEnterEvent *arg1 = args.read (heap); + QEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget_Adaptor *)cls)->cbs_enterEvent_1727_0 (arg1); } @@ -2293,7 +2293,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCalendarWidget_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -2318,8 +2318,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCalendarWidget_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -2342,7 +2342,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -2380,7 +2380,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCalendarWidget_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -2403,7 +2403,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -2460,7 +2460,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QCalendarWidget_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -2483,7 +2483,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -2507,7 +2507,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -2531,7 +2531,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2555,7 +2555,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QCalendarWidget_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2596,7 +2596,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2620,7 +2620,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2644,7 +2644,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2668,7 +2668,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QCalendarWidget_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2710,7 +2710,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2734,7 +2734,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2758,7 +2758,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2782,7 +2782,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2806,7 +2806,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2834,9 +2834,9 @@ static void _call_cbs_nativeEvent_6949_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - QIntegerForSizeof::Signed *arg3 = args.read::Signed * > (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + QIntegerForSizeof::Signed *arg3 = gsi::arg_reader::Signed * >() (args, heap); ret.write ((bool)((QCalendarWidget_Adaptor *)cls)->cbs_nativeEvent_6949_0 (arg1, arg2, arg3)); } @@ -2881,9 +2881,9 @@ static void _call_cbs_paintCell_c3901_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QRect &arg2 = args.read (heap); - QDate arg3 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QRect &arg2 = gsi::arg_reader() (args, heap); + QDate arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget_Adaptor *)cls)->cbs_paintCell_c3901_0 (arg1, arg2, arg3); } @@ -2926,7 +2926,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2968,7 +2968,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QCalendarWidget_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -2991,7 +2991,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -3057,7 +3057,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -3100,7 +3100,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -3143,7 +3143,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -3167,7 +3167,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -3244,7 +3244,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQCheckBox.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQCheckBox.cc index fd60ca242..77ca88845 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQCheckBox.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQCheckBox.cc @@ -1249,7 +1249,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCheckBox_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1273,7 +1273,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCheckBox_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1317,7 +1317,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCheckBox_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1359,7 +1359,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCheckBox_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1383,7 +1383,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCheckBox_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1450,7 +1450,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCheckBox_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1514,7 +1514,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCheckBox_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1538,7 +1538,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCheckBox_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1562,7 +1562,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCheckBox_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1586,7 +1586,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCheckBox_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1610,7 +1610,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCheckBox_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1634,7 +1634,7 @@ static void _call_cbs_enterEvent_1727_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEnterEvent *arg1 = args.read (heap); + QEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCheckBox_Adaptor *)cls)->cbs_enterEvent_1727_0 (arg1); } @@ -1658,7 +1658,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCheckBox_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1683,8 +1683,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCheckBox_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1707,7 +1707,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCheckBox_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1745,7 +1745,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCheckBox_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -1768,7 +1768,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCheckBox_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -1825,7 +1825,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QCheckBox_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -1848,7 +1848,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCheckBox_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -1872,7 +1872,7 @@ static void _call_cbs_hitButton_c1916_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCheckBox_Adaptor *)cls)->cbs_hitButton_c1916_0 (arg1)); } @@ -1895,7 +1895,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCheckBox_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -1919,7 +1919,7 @@ static void _call_cbs_initStyleOption_c2501_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionButton *arg1 = args.read (heap); + QStyleOptionButton *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCheckBox_Adaptor *)cls)->cbs_initStyleOption_c2501_0 (arg1); } @@ -1943,7 +1943,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCheckBox_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -1967,7 +1967,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QCheckBox_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2008,7 +2008,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCheckBox_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2032,7 +2032,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCheckBox_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2056,7 +2056,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCheckBox_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2080,7 +2080,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QCheckBox_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2122,7 +2122,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCheckBox_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2146,7 +2146,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCheckBox_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2170,7 +2170,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCheckBox_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2194,7 +2194,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCheckBox_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2218,7 +2218,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCheckBox_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2246,9 +2246,9 @@ static void _call_cbs_nativeEvent_6949_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - QIntegerForSizeof::Signed *arg3 = args.read::Signed * > (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + QIntegerForSizeof::Signed *arg3 = gsi::arg_reader::Signed * >() (args, heap); ret.write ((bool)((QCheckBox_Adaptor *)cls)->cbs_nativeEvent_6949_0 (arg1, arg2, arg3)); } @@ -2328,7 +2328,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCheckBox_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2384,7 +2384,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QCheckBox_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -2421,7 +2421,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCheckBox_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2473,7 +2473,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCheckBox_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2516,7 +2516,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCheckBox_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2577,7 +2577,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCheckBox_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2601,7 +2601,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCheckBox_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2662,7 +2662,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCheckBox_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQColorDialog.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQColorDialog.cc index 24ed1b6aa..ccc4d36c9 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQColorDialog.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQColorDialog.cc @@ -1526,7 +1526,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColorDialog_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1569,7 +1569,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColorDialog_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1593,7 +1593,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColorDialog_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1617,7 +1617,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColorDialog_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1659,7 +1659,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColorDialog_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1744,7 +1744,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColorDialog_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1808,7 +1808,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColorDialog_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1832,7 +1832,7 @@ static void _call_cbs_done_767_0 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColorDialog_Adaptor *)cls)->cbs_done_767_0 (arg1); } @@ -1856,7 +1856,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColorDialog_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1880,7 +1880,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColorDialog_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1904,7 +1904,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColorDialog_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1928,7 +1928,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColorDialog_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1952,7 +1952,7 @@ static void _call_cbs_enterEvent_1727_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEnterEvent *arg1 = args.read (heap); + QEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColorDialog_Adaptor *)cls)->cbs_enterEvent_1727_0 (arg1); } @@ -1976,7 +1976,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QColorDialog_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -2001,8 +2001,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QColorDialog_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -2062,7 +2062,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColorDialog_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -2100,7 +2100,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QColorDialog_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -2123,7 +2123,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColorDialog_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -2180,7 +2180,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QColorDialog_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -2203,7 +2203,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColorDialog_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -2227,7 +2227,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColorDialog_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -2251,7 +2251,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColorDialog_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2275,7 +2275,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QColorDialog_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2316,7 +2316,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColorDialog_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2340,7 +2340,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColorDialog_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2364,7 +2364,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColorDialog_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2388,7 +2388,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QColorDialog_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2430,7 +2430,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColorDialog_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2454,7 +2454,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColorDialog_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2478,7 +2478,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColorDialog_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2502,7 +2502,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColorDialog_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2526,7 +2526,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColorDialog_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2554,9 +2554,9 @@ static void _call_cbs_nativeEvent_6949_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - QIntegerForSizeof::Signed *arg3 = args.read::Signed * > (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + QIntegerForSizeof::Signed *arg3 = gsi::arg_reader::Signed * >() (args, heap); ret.write ((bool)((QColorDialog_Adaptor *)cls)->cbs_nativeEvent_6949_0 (arg1, arg2, arg3)); } @@ -2636,7 +2636,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColorDialog_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2678,7 +2678,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QColorDialog_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -2735,7 +2735,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColorDialog_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2787,7 +2787,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColorDialog_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2830,7 +2830,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColorDialog_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2873,7 +2873,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColorDialog_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2897,7 +2897,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColorDialog_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2940,7 +2940,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColorDialog_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQColumnView.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQColumnView.cc index 242ceb537..0d5a800b7 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQColumnView.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQColumnView.cc @@ -2145,7 +2145,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -2187,7 +2187,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -2211,7 +2211,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -2255,8 +2255,8 @@ static void _call_cbs_closeEditor_4926_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_closeEditor_4926_0 (arg1, arg2); } @@ -2280,7 +2280,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -2304,7 +2304,7 @@ static void _call_cbs_commitData_1315_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_commitData_1315_0 (arg1); } @@ -2328,7 +2328,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -2377,7 +2377,7 @@ static void _call_cbs_createColumn_2395_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QAbstractItemView *)((QColumnView_Adaptor *)cls)->cbs_createColumn_2395_0 (arg1)); } @@ -2402,8 +2402,8 @@ static void _call_cbs_currentChanged_4682_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_currentChanged_4682_0 (arg1, arg2); } @@ -2445,7 +2445,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -2473,9 +2473,9 @@ static void _call_cbs_dataChanged_6833_1 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); - const QList &arg3 = args.read & > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); + const QList &arg3 = args ? gsi::arg_reader & >() (args, heap) : gsi::arg_maker & >() (QList(), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_dataChanged_6833_1 (arg1, arg2, arg3); } @@ -2553,7 +2553,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -2630,7 +2630,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -2654,7 +2654,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -2678,7 +2678,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -2721,7 +2721,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -2763,9 +2763,9 @@ static void _call_cbs_edit_6773_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - QEvent *arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + QEvent *arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QColumnView_Adaptor *)cls)->cbs_edit_6773_0 (arg1, arg2, arg3)); } @@ -2788,7 +2788,7 @@ static void _call_cbs_editorDestroyed_1302_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_editorDestroyed_1302_0 (arg1); } @@ -2812,7 +2812,7 @@ static void _call_cbs_enterEvent_1727_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEnterEvent *arg1 = args.read (heap); + QEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_enterEvent_1727_0 (arg1); } @@ -2854,7 +2854,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QColumnView_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -2879,8 +2879,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QColumnView_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -2918,7 +2918,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -2956,7 +2956,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QColumnView_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -2979,7 +2979,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -3036,7 +3036,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QColumnView_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -3059,7 +3059,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -3102,7 +3102,7 @@ static void _call_cbs_horizontalScrollbarAction_767_0 (const qt_gsi::GenericMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_horizontalScrollbarAction_767_0 (arg1); } @@ -3126,7 +3126,7 @@ static void _call_cbs_horizontalScrollbarValueChanged_767_0 (const qt_gsi::Gener { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_horizontalScrollbarValueChanged_767_0 (arg1); } @@ -3168,7 +3168,7 @@ static void _call_cbs_indexAt_c1916_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QColumnView_Adaptor *)cls)->cbs_indexAt_c1916_0 (arg1)); } @@ -3191,7 +3191,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -3215,7 +3215,7 @@ static void _call_cbs_initStyleOption_c2356_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionFrame *arg1 = args.read (heap); + QStyleOptionFrame *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_initStyleOption_c2356_0 (arg1); } @@ -3239,7 +3239,7 @@ static void _call_cbs_initViewItemOption_c2675_0 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionViewItem *arg1 = args.read (heap); + QStyleOptionViewItem *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_initViewItemOption_c2675_0 (arg1); } @@ -3282,7 +3282,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -3306,7 +3306,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QColumnView_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -3329,7 +3329,7 @@ static void _call_cbs_isIndexHidden_c2395_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QColumnView_Adaptor *)cls)->cbs_isIndexHidden_c2395_0 (arg1)); } @@ -3370,7 +3370,7 @@ static void _call_cbs_itemDelegateForIndex_c2395_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QAbstractItemDelegate *)((QColumnView_Adaptor *)cls)->cbs_itemDelegateForIndex_c2395_0 (arg1)); } @@ -3393,7 +3393,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -3417,7 +3417,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -3441,7 +3441,7 @@ static void _call_cbs_keyboardSearch_2025_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_keyboardSearch_2025_0 (arg1); } @@ -3465,7 +3465,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -3489,7 +3489,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QColumnView_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -3531,7 +3531,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -3555,7 +3555,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -3579,7 +3579,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -3603,7 +3603,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -3629,8 +3629,8 @@ static void _call_cbs_moveCursor_6476_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); - QFlags arg2 = args.read > (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); ret.write ((QModelIndex)((QColumnView_Adaptor *)cls)->cbs_moveCursor_6476_0 (arg1, arg2)); } @@ -3653,7 +3653,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -3681,9 +3681,9 @@ static void _call_cbs_nativeEvent_6949_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - QIntegerForSizeof::Signed *arg3 = args.read::Signed * > (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + QIntegerForSizeof::Signed *arg3 = gsi::arg_reader::Signed * >() (args, heap); ret.write ((bool)((QColumnView_Adaptor *)cls)->cbs_nativeEvent_6949_0 (arg1, arg2, arg3)); } @@ -3743,7 +3743,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -3803,7 +3803,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QColumnView_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -3846,7 +3846,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -3874,9 +3874,9 @@ static void _call_cbs_rowsAboutToBeRemoved_3713_0 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_rowsAboutToBeRemoved_3713_0 (arg1, arg2, arg3); } @@ -3904,9 +3904,9 @@ static void _call_cbs_rowsInserted_3713_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_rowsInserted_3713_0 (arg1, arg2, arg3); } @@ -3947,8 +3947,8 @@ static void _call_cbs_scrollContentsBy_1426_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_scrollContentsBy_1426_0 (arg1, arg2); } @@ -3996,8 +3996,8 @@ static void _call_cbs_scrollTo_5576_1 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QAbstractItemView::EnsureVisible), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_scrollTo_5576_1 (arg1, arg2); } @@ -4062,8 +4062,8 @@ static void _call_cbs_selectionChanged_5346_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QItemSelection &arg1 = args.read (heap); - const QItemSelection &arg2 = args.read (heap); + const QItemSelection &arg1 = gsi::arg_reader() (args, heap); + const QItemSelection &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_selectionChanged_5346_0 (arg1, arg2); } @@ -4089,8 +4089,8 @@ static void _call_cbs_selectionCommand_c4199_1 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QEvent *arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QEvent *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); ret.write > ((QFlags)((QColumnView_Adaptor *)cls)->cbs_selectionCommand_c4199_1 (arg1, arg2)); } @@ -4160,7 +4160,7 @@ static void _call_cbs_setModel_2419_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractItemModel *arg1 = args.read (heap); + QAbstractItemModel *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_setModel_2419_0 (arg1); } @@ -4184,7 +4184,7 @@ static void _call_cbs_setRootIndex_2395_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_setRootIndex_2395_0 (arg1); } @@ -4210,8 +4210,8 @@ static void _call_cbs_setSelection_6155_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); - QFlags arg2 = args.read > (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_setSelection_6155_0 (arg1, arg2); } @@ -4235,7 +4235,7 @@ static void _call_cbs_setSelectionModel_2533_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QItemSelectionModel *arg1 = args.read (heap); + QItemSelectionModel *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_setSelectionModel_2533_0 (arg1); } @@ -4325,7 +4325,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -4349,7 +4349,7 @@ static void _call_cbs_setupViewport_1315_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_setupViewport_1315_0 (arg1); } @@ -4392,7 +4392,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -4435,7 +4435,7 @@ static void _call_cbs_sizeHintForColumn_c767_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QColumnView_Adaptor *)cls)->cbs_sizeHintForColumn_c767_0 (arg1)); } @@ -4458,7 +4458,7 @@ static void _call_cbs_sizeHintForRow_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QColumnView_Adaptor *)cls)->cbs_sizeHintForRow_c767_0 (arg1)); } @@ -4496,7 +4496,7 @@ static void _call_cbs_startDrag_2456_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_startDrag_2456_0 (arg1); } @@ -4549,7 +4549,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -4573,7 +4573,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -4713,7 +4713,7 @@ static void _call_cbs_verticalScrollbarAction_767_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_verticalScrollbarAction_767_0 (arg1); } @@ -4737,7 +4737,7 @@ static void _call_cbs_verticalScrollbarValueChanged_767_0 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_verticalScrollbarValueChanged_767_0 (arg1); } @@ -4775,7 +4775,7 @@ static void _call_cbs_viewportEvent_1217_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QColumnView_Adaptor *)cls)->cbs_viewportEvent_1217_0 (arg1)); } @@ -4831,7 +4831,7 @@ static void _call_cbs_visualRect_c2395_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QColumnView_Adaptor *)cls)->cbs_visualRect_c2395_0 (arg1)); } @@ -4854,7 +4854,7 @@ static void _call_cbs_visualRegionForSelection_c2727_0 (const qt_gsi::GenericMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QItemSelection &arg1 = args.read (heap); + const QItemSelection &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRegion)((QColumnView_Adaptor *)cls)->cbs_visualRegionForSelection_c2727_0 (arg1)); } @@ -4877,7 +4877,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQComboBox.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQComboBox.cc index 8a4381b21..2399b7bc5 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQComboBox.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQComboBox.cc @@ -2472,7 +2472,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -2514,7 +2514,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -2538,7 +2538,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -2562,7 +2562,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -2586,7 +2586,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -2689,7 +2689,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -2753,7 +2753,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -2777,7 +2777,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -2801,7 +2801,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -2825,7 +2825,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -2849,7 +2849,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -2891,7 +2891,7 @@ static void _call_cbs_enterEvent_1727_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEnterEvent *arg1 = args.read (heap); + QEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox_Adaptor *)cls)->cbs_enterEvent_1727_0 (arg1); } @@ -2915,7 +2915,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QComboBox_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -2940,8 +2940,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QComboBox_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -2964,7 +2964,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -3002,7 +3002,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QComboBox_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -3025,7 +3025,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -3082,7 +3082,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QComboBox_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -3105,7 +3105,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -3167,7 +3167,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -3191,7 +3191,7 @@ static void _call_cbs_initStyleOption_c2658_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionComboBox *arg1 = args.read (heap); + QStyleOptionComboBox *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox_Adaptor *)cls)->cbs_initStyleOption_c2658_0 (arg1); } @@ -3215,7 +3215,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -3239,7 +3239,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QComboBox_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -3280,7 +3280,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -3304,7 +3304,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -3328,7 +3328,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -3352,7 +3352,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QComboBox_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -3394,7 +3394,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -3418,7 +3418,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -3442,7 +3442,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -3466,7 +3466,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -3490,7 +3490,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -3518,9 +3518,9 @@ static void _call_cbs_nativeEvent_6949_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - QIntegerForSizeof::Signed *arg3 = args.read::Signed * > (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + QIntegerForSizeof::Signed *arg3 = gsi::arg_reader::Signed * >() (args, heap); ret.write ((bool)((QComboBox_Adaptor *)cls)->cbs_nativeEvent_6949_0 (arg1, arg2, arg3)); } @@ -3580,7 +3580,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -3622,7 +3622,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QComboBox_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -3645,7 +3645,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -3697,7 +3697,7 @@ static void _call_cbs_setModel_2419_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractItemModel *arg1 = args.read (heap); + QAbstractItemModel *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox_Adaptor *)cls)->cbs_setModel_2419_0 (arg1); } @@ -3721,7 +3721,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -3764,7 +3764,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -3827,7 +3827,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -3887,7 +3887,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -3930,7 +3930,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQCommandLinkButton.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQCommandLinkButton.cc index 238c4d0a6..712ccdc6e 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQCommandLinkButton.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQCommandLinkButton.cc @@ -1283,7 +1283,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommandLinkButton_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1307,7 +1307,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommandLinkButton_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1351,7 +1351,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommandLinkButton_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1393,7 +1393,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommandLinkButton_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1417,7 +1417,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommandLinkButton_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1484,7 +1484,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommandLinkButton_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1548,7 +1548,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommandLinkButton_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1572,7 +1572,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommandLinkButton_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1596,7 +1596,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommandLinkButton_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1620,7 +1620,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommandLinkButton_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1644,7 +1644,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommandLinkButton_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1668,7 +1668,7 @@ static void _call_cbs_enterEvent_1727_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEnterEvent *arg1 = args.read (heap); + QEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommandLinkButton_Adaptor *)cls)->cbs_enterEvent_1727_0 (arg1); } @@ -1692,7 +1692,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCommandLinkButton_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1717,8 +1717,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCommandLinkButton_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1741,7 +1741,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommandLinkButton_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1779,7 +1779,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCommandLinkButton_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -1802,7 +1802,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommandLinkButton_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -1859,7 +1859,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QCommandLinkButton_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -1882,7 +1882,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommandLinkButton_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -1906,7 +1906,7 @@ static void _call_cbs_hitButton_c1916_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCommandLinkButton_Adaptor *)cls)->cbs_hitButton_c1916_0 (arg1)); } @@ -1929,7 +1929,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommandLinkButton_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -1953,7 +1953,7 @@ static void _call_cbs_initStyleOption_c2501_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionButton *arg1 = args.read (heap); + QStyleOptionButton *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommandLinkButton_Adaptor *)cls)->cbs_initStyleOption_c2501_0 (arg1); } @@ -1977,7 +1977,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommandLinkButton_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2001,7 +2001,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QCommandLinkButton_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2042,7 +2042,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommandLinkButton_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2066,7 +2066,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommandLinkButton_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2090,7 +2090,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommandLinkButton_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2114,7 +2114,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QCommandLinkButton_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2156,7 +2156,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommandLinkButton_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2180,7 +2180,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommandLinkButton_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2204,7 +2204,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommandLinkButton_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2228,7 +2228,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommandLinkButton_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2252,7 +2252,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommandLinkButton_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2280,9 +2280,9 @@ static void _call_cbs_nativeEvent_6949_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - QIntegerForSizeof::Signed *arg3 = args.read::Signed * > (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + QIntegerForSizeof::Signed *arg3 = gsi::arg_reader::Signed * >() (args, heap); ret.write ((bool)((QCommandLinkButton_Adaptor *)cls)->cbs_nativeEvent_6949_0 (arg1, arg2, arg3)); } @@ -2362,7 +2362,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommandLinkButton_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2418,7 +2418,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QCommandLinkButton_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -2455,7 +2455,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommandLinkButton_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2507,7 +2507,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommandLinkButton_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2550,7 +2550,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommandLinkButton_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2593,7 +2593,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommandLinkButton_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2617,7 +2617,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommandLinkButton_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2678,7 +2678,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommandLinkButton_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQCommonStyle.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQCommonStyle.cc index 1c7176eaa..b2dbf2cd1 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQCommonStyle.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQCommonStyle.cc @@ -1129,7 +1129,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommonStyle_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1153,7 +1153,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommonStyle_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1195,7 +1195,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommonStyle_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1225,10 +1225,10 @@ static void _call_cbs_drawComplexControl_c9027_1 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOptionComplex *arg2 = args.read (heap); - QPainter *arg3 = args.read (heap); - const QWidget *arg4 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOptionComplex *arg2 = gsi::arg_reader() (args, heap); + QPainter *arg3 = gsi::arg_reader() (args, heap); + const QWidget *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommonStyle_Adaptor *)cls)->cbs_drawComplexControl_c9027_1 (arg1, arg2, arg3, arg4); } @@ -1258,10 +1258,10 @@ static void _call_cbs_drawControl_c8285_1 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args.read (heap); - QPainter *arg3 = args.read (heap); - const QWidget *arg4 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = gsi::arg_reader() (args, heap); + QPainter *arg3 = gsi::arg_reader() (args, heap); + const QWidget *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommonStyle_Adaptor *)cls)->cbs_drawControl_c8285_1 (arg1, arg2, arg3, arg4); } @@ -1291,10 +1291,10 @@ static void _call_cbs_drawItemPixmap_c5678_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QRect &arg2 = args.read (heap); - int arg3 = args.read (heap); - const QPixmap &arg4 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QRect &arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QPixmap &arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommonStyle_Adaptor *)cls)->cbs_drawItemPixmap_c5678_0 (arg1, arg2, arg3, arg4); } @@ -1330,13 +1330,13 @@ static void _call_cbs_drawItemText_c10604_1 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QRect &arg2 = args.read (heap); - int arg3 = args.read (heap); - const QPalette &arg4 = args.read (heap); - bool arg5 = args.read (heap); - const QString &arg6 = args.read (heap); - const qt_gsi::Converter::target_type & arg7 = args.read::target_type & > (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QRect &arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QPalette &arg4 = gsi::arg_reader() (args, heap); + bool arg5 = gsi::arg_reader() (args, heap); + const QString &arg6 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg7 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QPalette::NoRole), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommonStyle_Adaptor *)cls)->cbs_drawItemText_c10604_1 (arg1, arg2, arg3, arg4, arg5, arg6, arg7); } @@ -1366,10 +1366,10 @@ static void _call_cbs_drawPrimitive_c8501_1 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args.read (heap); - QPainter *arg3 = args.read (heap); - const QWidget *arg4 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = gsi::arg_reader() (args, heap); + QPainter *arg3 = gsi::arg_reader() (args, heap); + const QWidget *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommonStyle_Adaptor *)cls)->cbs_drawPrimitive_c8501_1 (arg1, arg2, arg3, arg4); } @@ -1393,7 +1393,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCommonStyle_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1418,8 +1418,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCommonStyle_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1446,9 +1446,9 @@ static void _call_cbs_generatedIconPixmap_c5776_0 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QPixmap &arg2 = args.read (heap); - const QStyleOption *arg3 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QPixmap &arg2 = gsi::arg_reader() (args, heap); + const QStyleOption *arg3 = gsi::arg_reader() (args, heap); ret.write ((QPixmap)((QCommonStyle_Adaptor *)cls)->cbs_generatedIconPixmap_c5776_0 (arg1, arg2, arg3)); } @@ -1477,10 +1477,10 @@ static void _call_cbs_hitTestComplexControl_c9517_1 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOptionComplex *arg2 = args.read (heap); - const QPoint &arg3 = args.read (heap); - const QWidget *arg4 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOptionComplex *arg2 = gsi::arg_reader() (args, heap); + const QPoint &arg3 = gsi::arg_reader() (args, heap); + const QWidget *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); ret.write::target_type > ((qt_gsi::Converter::target_type)((QCommonStyle_Adaptor *)cls)->cbs_hitTestComplexControl_c9517_1 (arg1, arg2, arg3, arg4)); } @@ -1525,9 +1525,9 @@ static void _call_cbs_itemPixmapRect_c4360_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); - int arg2 = args.read (heap); - const QPixmap &arg3 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QPixmap &arg3 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QCommonStyle_Adaptor *)cls)->cbs_itemPixmapRect_c4360_0 (arg1, arg2, arg3)); } @@ -1558,11 +1558,11 @@ static void _call_cbs_itemTextRect_c7544_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFontMetrics &arg1 = args.read (heap); - const QRect &arg2 = args.read (heap); - int arg3 = args.read (heap); - bool arg4 = args.read (heap); - const QString &arg5 = args.read (heap); + const QFontMetrics &arg1 = gsi::arg_reader() (args, heap); + const QRect &arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + bool arg4 = gsi::arg_reader() (args, heap); + const QString &arg5 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QCommonStyle_Adaptor *)cls)->cbs_itemTextRect_c7544_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -1593,11 +1593,11 @@ static void _call_cbs_layoutSpacing_c11697_2 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg3 = args.read::target_type & > (heap); - const QStyleOption *arg4 = args.read (heap); - const QWidget *arg5 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg3 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); + const QWidget *arg5 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); ret.write ((int)((QCommonStyle_Adaptor *)cls)->cbs_layoutSpacing_c11697_2 (arg1, arg2, arg3, arg4, arg5)); } @@ -1642,9 +1642,9 @@ static void _call_cbs_pixelMetric_c6642_2 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args.read (heap); - const QWidget *arg3 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); + const QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); ret.write ((int)((QCommonStyle_Adaptor *)cls)->cbs_pixelMetric_c6642_2 (arg1, arg2, arg3)); } @@ -1667,7 +1667,7 @@ static void _call_cbs_polish_1418_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPalette &arg1 = args.read (heap); + QPalette &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommonStyle_Adaptor *)cls)->cbs_polish_1418_0 (arg1); } @@ -1691,7 +1691,7 @@ static void _call_cbs_polish_1843_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QApplication *arg1 = args.read (heap); + QApplication *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommonStyle_Adaptor *)cls)->cbs_polish_1843_0 (arg1); } @@ -1715,7 +1715,7 @@ static void _call_cbs_polish_1315_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommonStyle_Adaptor *)cls)->cbs_polish_1315_0 (arg1); } @@ -1791,10 +1791,10 @@ static void _call_cbs_sizeFromContents_c8477_1 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args.read (heap); - const QSize &arg3 = args.read (heap); - const QWidget *arg4 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = gsi::arg_reader() (args, heap); + const QSize &arg3 = gsi::arg_reader() (args, heap); + const QWidget *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); ret.write ((QSize)((QCommonStyle_Adaptor *)cls)->cbs_sizeFromContents_c8477_1 (arg1, arg2, arg3, arg4)); } @@ -1821,9 +1821,9 @@ static void _call_cbs_standardIcon_c6956_2 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args.read (heap); - const QWidget *arg3 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); + const QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); ret.write ((QIcon)((QCommonStyle_Adaptor *)cls)->cbs_standardIcon_c6956_2 (arg1, arg2, arg3)); } @@ -1869,9 +1869,9 @@ static void _call_cbs_standardPixmap_c6956_2 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args.read (heap); - const QWidget *arg3 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); + const QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); ret.write ((QPixmap)((QCommonStyle_Adaptor *)cls)->cbs_standardPixmap_c6956_2 (arg1, arg2, arg3)); } @@ -1900,10 +1900,10 @@ static void _call_cbs_styleHint_c8615_3 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args.read (heap); - const QWidget *arg3 = args.read (heap); - QStyleHintReturn *arg4 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); + const QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); + QStyleHintReturn *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); ret.write ((int)((QCommonStyle_Adaptor *)cls)->cbs_styleHint_c8615_3 (arg1, arg2, arg3, arg4)); } @@ -1932,10 +1932,10 @@ static void _call_cbs_subControlRect_c9798_1 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOptionComplex *arg2 = args.read (heap); - const qt_gsi::Converter::target_type & arg3 = args.read::target_type & > (heap); - const QWidget *arg4 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOptionComplex *arg2 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg3 = gsi::arg_reader::target_type & >() (args, heap); + const QWidget *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); ret.write ((QRect)((QCommonStyle_Adaptor *)cls)->cbs_subControlRect_c9798_1 (arg1, arg2, arg3, arg4)); } @@ -1962,9 +1962,9 @@ static void _call_cbs_subElementRect_c6528_1 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args.read (heap); - const QWidget *arg3 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = gsi::arg_reader() (args, heap); + const QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); ret.write ((QRect)((QCommonStyle_Adaptor *)cls)->cbs_subElementRect_c6528_1 (arg1, arg2, arg3)); } @@ -1987,7 +1987,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommonStyle_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2011,7 +2011,7 @@ static void _call_cbs_unpolish_1315_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommonStyle_Adaptor *)cls)->cbs_unpolish_1315_0 (arg1); } @@ -2035,7 +2035,7 @@ static void _call_cbs_unpolish_1843_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QApplication *arg1 = args.read (heap); + QApplication *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommonStyle_Adaptor *)cls)->cbs_unpolish_1843_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQCompleter.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQCompleter.cc index 983fdf6b4..9e8515e4f 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQCompleter.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQCompleter.cc @@ -1056,7 +1056,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCompleter_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1080,7 +1080,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCompleter_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1122,7 +1122,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCompleter_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1146,7 +1146,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCompleter_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1171,8 +1171,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCompleter_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1267,7 +1267,7 @@ static void _call_cbs_pathFromIndex_c2395_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QCompleter_Adaptor *)cls)->cbs_pathFromIndex_c2395_0 (arg1)); } @@ -1336,7 +1336,7 @@ static void _call_cbs_splitPath_c2025_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QStringList)((QCompleter_Adaptor *)cls)->cbs_splitPath_c2025_0 (arg1)); } @@ -1359,7 +1359,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCompleter_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQDataWidgetMapper.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQDataWidgetMapper.cc index f2277ff42..b5f0eee6a 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQDataWidgetMapper.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQDataWidgetMapper.cc @@ -804,7 +804,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDataWidgetMapper_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -846,7 +846,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDataWidgetMapper_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -888,7 +888,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDataWidgetMapper_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -912,7 +912,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDataWidgetMapper_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -937,8 +937,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDataWidgetMapper_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1043,7 +1043,7 @@ static void _call_cbs_setCurrentIndex_767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDataWidgetMapper_Adaptor *)cls)->cbs_setCurrentIndex_767_0 (arg1); } @@ -1067,7 +1067,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDataWidgetMapper_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQDateEdit.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQDateEdit.cc index 1afff8ff8..ecdf8bd45 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQDateEdit.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQDateEdit.cc @@ -1222,7 +1222,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateEdit_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1246,7 +1246,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateEdit_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1270,7 +1270,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateEdit_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1314,7 +1314,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateEdit_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1338,7 +1338,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateEdit_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1405,7 +1405,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateEdit_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1465,7 +1465,7 @@ static void _call_cbs_dateTimeFromText_c2025_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QDateTime)((QDateEdit_Adaptor *)cls)->cbs_dateTimeFromText_c2025_0 (arg1)); } @@ -1528,7 +1528,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateEdit_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1552,7 +1552,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateEdit_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1576,7 +1576,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateEdit_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1600,7 +1600,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateEdit_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1624,7 +1624,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateEdit_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1662,7 +1662,7 @@ static void _call_cbs_enterEvent_1727_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEnterEvent *arg1 = args.read (heap); + QEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateEdit_Adaptor *)cls)->cbs_enterEvent_1727_0 (arg1); } @@ -1686,7 +1686,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDateEdit_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1711,8 +1711,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDateEdit_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1735,7 +1735,7 @@ static void _call_cbs_fixup_c1330_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QString &arg1 = args.read (heap); + QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateEdit_Adaptor *)cls)->cbs_fixup_c1330_0 (arg1); } @@ -1759,7 +1759,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateEdit_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1797,7 +1797,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDateEdit_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -1820,7 +1820,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateEdit_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -1877,7 +1877,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QDateEdit_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -1900,7 +1900,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateEdit_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -1924,7 +1924,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateEdit_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -1948,7 +1948,7 @@ static void _call_cbs_initStyleOption_c2572_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionSpinBox *arg1 = args.read (heap); + QStyleOptionSpinBox *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateEdit_Adaptor *)cls)->cbs_initStyleOption_c2572_0 (arg1); } @@ -1972,7 +1972,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateEdit_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -1996,7 +1996,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QDateEdit_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2037,7 +2037,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateEdit_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2061,7 +2061,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateEdit_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2085,7 +2085,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateEdit_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2123,7 +2123,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QDateEdit_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2165,7 +2165,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateEdit_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2189,7 +2189,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateEdit_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2213,7 +2213,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateEdit_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2237,7 +2237,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateEdit_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2261,7 +2261,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateEdit_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2289,9 +2289,9 @@ static void _call_cbs_nativeEvent_6949_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - QIntegerForSizeof::Signed *arg3 = args.read::Signed * > (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + QIntegerForSizeof::Signed *arg3 = gsi::arg_reader::Signed * >() (args, heap); ret.write ((bool)((QDateEdit_Adaptor *)cls)->cbs_nativeEvent_6949_0 (arg1, arg2, arg3)); } @@ -2351,7 +2351,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateEdit_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2393,7 +2393,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QDateEdit_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -2416,7 +2416,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateEdit_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2487,7 +2487,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateEdit_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2530,7 +2530,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateEdit_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2573,7 +2573,7 @@ static void _call_cbs_stepBy_767_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateEdit_Adaptor *)cls)->cbs_stepBy_767_0 (arg1); } @@ -2616,7 +2616,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateEdit_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2640,7 +2640,7 @@ static void _call_cbs_textFromDateTime_c2175_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDateTime &arg1 = args.read (heap); + const QDateTime &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QDateEdit_Adaptor *)cls)->cbs_textFromDateTime_c2175_0 (arg1)); } @@ -2681,7 +2681,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateEdit_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2744,8 +2744,8 @@ static void _call_cbs_validate_c2171_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QString &arg1 = args.read (heap); - int &arg2 = args.read (heap); + QString &arg1 = gsi::arg_reader() (args, heap); + int &arg2 = gsi::arg_reader() (args, heap); ret.write::target_type > ((qt_gsi::Converter::target_type)((QDateEdit_Adaptor *)cls)->cbs_validate_c2171_0 (arg1, arg2)); } @@ -2768,7 +2768,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateEdit_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQDateTimeEdit.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQDateTimeEdit.cc index ca281141c..15de6bba3 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQDateTimeEdit.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQDateTimeEdit.cc @@ -2214,7 +2214,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -2238,7 +2238,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -2262,7 +2262,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -2306,7 +2306,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -2330,7 +2330,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -2397,7 +2397,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -2457,7 +2457,7 @@ static void _call_cbs_dateTimeFromText_c2025_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QDateTime)((QDateTimeEdit_Adaptor *)cls)->cbs_dateTimeFromText_c2025_0 (arg1)); } @@ -2520,7 +2520,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -2544,7 +2544,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -2568,7 +2568,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -2592,7 +2592,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -2616,7 +2616,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -2654,7 +2654,7 @@ static void _call_cbs_enterEvent_1727_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEnterEvent *arg1 = args.read (heap); + QEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit_Adaptor *)cls)->cbs_enterEvent_1727_0 (arg1); } @@ -2678,7 +2678,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDateTimeEdit_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -2703,8 +2703,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDateTimeEdit_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -2727,7 +2727,7 @@ static void _call_cbs_fixup_c1330_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QString &arg1 = args.read (heap); + QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit_Adaptor *)cls)->cbs_fixup_c1330_0 (arg1); } @@ -2751,7 +2751,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -2789,7 +2789,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDateTimeEdit_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -2812,7 +2812,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -2869,7 +2869,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QDateTimeEdit_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -2892,7 +2892,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -2916,7 +2916,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -2940,7 +2940,7 @@ static void _call_cbs_initStyleOption_c2572_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionSpinBox *arg1 = args.read (heap); + QStyleOptionSpinBox *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit_Adaptor *)cls)->cbs_initStyleOption_c2572_0 (arg1); } @@ -2964,7 +2964,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2988,7 +2988,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QDateTimeEdit_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -3029,7 +3029,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -3053,7 +3053,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -3077,7 +3077,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -3115,7 +3115,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QDateTimeEdit_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -3157,7 +3157,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -3181,7 +3181,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -3205,7 +3205,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -3229,7 +3229,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -3253,7 +3253,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -3281,9 +3281,9 @@ static void _call_cbs_nativeEvent_6949_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - QIntegerForSizeof::Signed *arg3 = args.read::Signed * > (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + QIntegerForSizeof::Signed *arg3 = gsi::arg_reader::Signed * >() (args, heap); ret.write ((bool)((QDateTimeEdit_Adaptor *)cls)->cbs_nativeEvent_6949_0 (arg1, arg2, arg3)); } @@ -3343,7 +3343,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -3385,7 +3385,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QDateTimeEdit_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -3408,7 +3408,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -3479,7 +3479,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -3522,7 +3522,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -3565,7 +3565,7 @@ static void _call_cbs_stepBy_767_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit_Adaptor *)cls)->cbs_stepBy_767_0 (arg1); } @@ -3608,7 +3608,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -3632,7 +3632,7 @@ static void _call_cbs_textFromDateTime_c2175_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDateTime &arg1 = args.read (heap); + const QDateTime &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QDateTimeEdit_Adaptor *)cls)->cbs_textFromDateTime_c2175_0 (arg1)); } @@ -3673,7 +3673,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -3718,8 +3718,8 @@ static void _call_cbs_validate_c2171_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QString &arg1 = args.read (heap); - int &arg2 = args.read (heap); + QString &arg1 = gsi::arg_reader() (args, heap); + int &arg2 = gsi::arg_reader() (args, heap); ret.write::target_type > ((qt_gsi::Converter::target_type)((QDateTimeEdit_Adaptor *)cls)->cbs_validate_c2171_0 (arg1, arg2)); } @@ -3742,7 +3742,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQDial.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQDial.cc index 21c5ef210..dd1fb22c3 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQDial.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQDial.cc @@ -1253,7 +1253,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDial_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1295,7 +1295,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDial_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1319,7 +1319,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDial_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1343,7 +1343,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDial_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1367,7 +1367,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDial_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1434,7 +1434,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDial_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1498,7 +1498,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDial_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1522,7 +1522,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDial_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1546,7 +1546,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDial_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1570,7 +1570,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDial_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1594,7 +1594,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDial_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1618,7 +1618,7 @@ static void _call_cbs_enterEvent_1727_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEnterEvent *arg1 = args.read (heap); + QEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDial_Adaptor *)cls)->cbs_enterEvent_1727_0 (arg1); } @@ -1642,7 +1642,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDial_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1667,8 +1667,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDial_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1691,7 +1691,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDial_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1729,7 +1729,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDial_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -1752,7 +1752,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDial_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -1809,7 +1809,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QDial_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -1832,7 +1832,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDial_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -1856,7 +1856,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDial_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -1880,7 +1880,7 @@ static void _call_cbs_initStyleOption_c2476_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionSlider *arg1 = args.read (heap); + QStyleOptionSlider *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDial_Adaptor *)cls)->cbs_initStyleOption_c2476_0 (arg1); } @@ -1904,7 +1904,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDial_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -1928,7 +1928,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QDial_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -1969,7 +1969,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDial_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -1993,7 +1993,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDial_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2017,7 +2017,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDial_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2041,7 +2041,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QDial_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2083,7 +2083,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDial_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2107,7 +2107,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDial_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2131,7 +2131,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDial_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2155,7 +2155,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDial_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2179,7 +2179,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDial_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2207,9 +2207,9 @@ static void _call_cbs_nativeEvent_6949_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - QIntegerForSizeof::Signed *arg3 = args.read::Signed * > (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + QIntegerForSizeof::Signed *arg3 = gsi::arg_reader::Signed * >() (args, heap); ret.write ((bool)((QDial_Adaptor *)cls)->cbs_nativeEvent_6949_0 (arg1, arg2, arg3)); } @@ -2269,7 +2269,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDial_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2332,7 +2332,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QDial_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -2369,7 +2369,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDial_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2446,7 +2446,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDial_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2489,7 +2489,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDial_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2532,7 +2532,7 @@ static void _call_cbs_sliderChange_3257_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDial_Adaptor *)cls)->cbs_sliderChange_3257_0 (arg1); } @@ -2602,7 +2602,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDial_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2626,7 +2626,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDial_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2687,7 +2687,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDial_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQDialog.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQDialog.cc index fe6b76af6..f66809230 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQDialog.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQDialog.cc @@ -1394,7 +1394,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialog_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1437,7 +1437,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialog_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1461,7 +1461,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialog_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1485,7 +1485,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialog_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1509,7 +1509,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialog_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1576,7 +1576,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialog_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1640,7 +1640,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialog_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1664,7 +1664,7 @@ static void _call_cbs_done_767_0 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialog_Adaptor *)cls)->cbs_done_767_0 (arg1); } @@ -1688,7 +1688,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialog_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1712,7 +1712,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialog_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1736,7 +1736,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialog_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1760,7 +1760,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialog_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1784,7 +1784,7 @@ static void _call_cbs_enterEvent_1727_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEnterEvent *arg1 = args.read (heap); + QEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialog_Adaptor *)cls)->cbs_enterEvent_1727_0 (arg1); } @@ -1808,7 +1808,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDialog_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1833,8 +1833,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDialog_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1894,7 +1894,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialog_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1932,7 +1932,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDialog_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -1955,7 +1955,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialog_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -2012,7 +2012,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QDialog_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -2035,7 +2035,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialog_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -2059,7 +2059,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialog_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -2083,7 +2083,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialog_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2107,7 +2107,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QDialog_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2148,7 +2148,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialog_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2172,7 +2172,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialog_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2196,7 +2196,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialog_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2220,7 +2220,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QDialog_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2262,7 +2262,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialog_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2286,7 +2286,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialog_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2310,7 +2310,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialog_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2334,7 +2334,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialog_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2358,7 +2358,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialog_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2386,9 +2386,9 @@ static void _call_cbs_nativeEvent_6949_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - QIntegerForSizeof::Signed *arg3 = args.read::Signed * > (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + QIntegerForSizeof::Signed *arg3 = gsi::arg_reader::Signed * >() (args, heap); ret.write ((bool)((QDialog_Adaptor *)cls)->cbs_nativeEvent_6949_0 (arg1, arg2, arg3)); } @@ -2468,7 +2468,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialog_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2510,7 +2510,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QDialog_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -2567,7 +2567,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialog_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2619,7 +2619,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialog_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2662,7 +2662,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialog_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2705,7 +2705,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialog_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2729,7 +2729,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialog_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2772,7 +2772,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialog_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQDialogButtonBox.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQDialogButtonBox.cc index 87220dff5..772e9a0b9 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQDialogButtonBox.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQDialogButtonBox.cc @@ -1447,7 +1447,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialogButtonBox_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1471,7 +1471,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialogButtonBox_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1495,7 +1495,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialogButtonBox_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1537,7 +1537,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialogButtonBox_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1561,7 +1561,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialogButtonBox_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1628,7 +1628,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialogButtonBox_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1692,7 +1692,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialogButtonBox_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1716,7 +1716,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialogButtonBox_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1740,7 +1740,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialogButtonBox_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1764,7 +1764,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialogButtonBox_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1788,7 +1788,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialogButtonBox_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1812,7 +1812,7 @@ static void _call_cbs_enterEvent_1727_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEnterEvent *arg1 = args.read (heap); + QEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialogButtonBox_Adaptor *)cls)->cbs_enterEvent_1727_0 (arg1); } @@ -1836,7 +1836,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDialogButtonBox_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1861,8 +1861,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDialogButtonBox_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1885,7 +1885,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialogButtonBox_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1923,7 +1923,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDialogButtonBox_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -1946,7 +1946,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialogButtonBox_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -2003,7 +2003,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QDialogButtonBox_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -2040,7 +2040,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialogButtonBox_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -2064,7 +2064,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialogButtonBox_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -2088,7 +2088,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialogButtonBox_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2112,7 +2112,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QDialogButtonBox_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2153,7 +2153,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialogButtonBox_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2177,7 +2177,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialogButtonBox_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2201,7 +2201,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialogButtonBox_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2225,7 +2225,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QDialogButtonBox_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2267,7 +2267,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialogButtonBox_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2291,7 +2291,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialogButtonBox_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2315,7 +2315,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialogButtonBox_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2339,7 +2339,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialogButtonBox_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2363,7 +2363,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialogButtonBox_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2391,9 +2391,9 @@ static void _call_cbs_nativeEvent_6949_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - QIntegerForSizeof::Signed *arg3 = args.read::Signed * > (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + QIntegerForSizeof::Signed *arg3 = gsi::arg_reader::Signed * >() (args, heap); ret.write ((bool)((QDialogButtonBox_Adaptor *)cls)->cbs_nativeEvent_6949_0 (arg1, arg2, arg3)); } @@ -2453,7 +2453,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialogButtonBox_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2495,7 +2495,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QDialogButtonBox_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -2532,7 +2532,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialogButtonBox_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2584,7 +2584,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialogButtonBox_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2627,7 +2627,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialogButtonBox_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2670,7 +2670,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialogButtonBox_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2694,7 +2694,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialogButtonBox_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2737,7 +2737,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialogButtonBox_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQDockWidget.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQDockWidget.cc index 7f12064ff..ad87df118 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQDockWidget.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQDockWidget.cc @@ -1333,7 +1333,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDockWidget_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1375,7 +1375,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDockWidget_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1399,7 +1399,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDockWidget_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1423,7 +1423,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDockWidget_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1447,7 +1447,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDockWidget_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1514,7 +1514,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDockWidget_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1578,7 +1578,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDockWidget_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1620,7 +1620,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDockWidget_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1644,7 +1644,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDockWidget_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1668,7 +1668,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDockWidget_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1692,7 +1692,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDockWidget_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1716,7 +1716,7 @@ static void _call_cbs_enterEvent_1727_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEnterEvent *arg1 = args.read (heap); + QEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDockWidget_Adaptor *)cls)->cbs_enterEvent_1727_0 (arg1); } @@ -1740,7 +1740,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDockWidget_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1765,8 +1765,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDockWidget_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1807,7 +1807,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDockWidget_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1845,7 +1845,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDockWidget_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -1868,7 +1868,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDockWidget_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -1925,7 +1925,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QDockWidget_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -1948,7 +1948,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDockWidget_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -1972,7 +1972,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDockWidget_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -1996,7 +1996,7 @@ static void _call_cbs_initStyleOption_c2862_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionDockWidget *arg1 = args.read (heap); + QStyleOptionDockWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDockWidget_Adaptor *)cls)->cbs_initStyleOption_c2862_0 (arg1); } @@ -2020,7 +2020,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDockWidget_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2044,7 +2044,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QDockWidget_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2085,7 +2085,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDockWidget_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2109,7 +2109,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDockWidget_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2133,7 +2133,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDockWidget_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2157,7 +2157,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QDockWidget_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2199,7 +2199,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDockWidget_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2223,7 +2223,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDockWidget_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2247,7 +2247,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDockWidget_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2271,7 +2271,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDockWidget_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2295,7 +2295,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDockWidget_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2323,9 +2323,9 @@ static void _call_cbs_nativeEvent_6949_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - QIntegerForSizeof::Signed *arg3 = args.read::Signed * > (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + QIntegerForSizeof::Signed *arg3 = gsi::arg_reader::Signed * >() (args, heap); ret.write ((bool)((QDockWidget_Adaptor *)cls)->cbs_nativeEvent_6949_0 (arg1, arg2, arg3)); } @@ -2385,7 +2385,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDockWidget_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2427,7 +2427,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QDockWidget_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -2450,7 +2450,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDockWidget_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2502,7 +2502,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDockWidget_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2545,7 +2545,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDockWidget_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2588,7 +2588,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDockWidget_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2612,7 +2612,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDockWidget_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2691,7 +2691,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDockWidget_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQDoubleSpinBox.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQDoubleSpinBox.cc index c4f4e68b9..accebcd32 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQDoubleSpinBox.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQDoubleSpinBox.cc @@ -1590,7 +1590,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1614,7 +1614,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1638,7 +1638,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1682,7 +1682,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1706,7 +1706,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1773,7 +1773,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1837,7 +1837,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1861,7 +1861,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1885,7 +1885,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1909,7 +1909,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1933,7 +1933,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1971,7 +1971,7 @@ static void _call_cbs_enterEvent_1727_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEnterEvent *arg1 = args.read (heap); + QEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox_Adaptor *)cls)->cbs_enterEvent_1727_0 (arg1); } @@ -1995,7 +1995,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDoubleSpinBox_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -2020,8 +2020,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDoubleSpinBox_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -2044,7 +2044,7 @@ static void _call_cbs_fixup_c1330_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QString &arg1 = args.read (heap); + QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox_Adaptor *)cls)->cbs_fixup_c1330_0 (arg1); } @@ -2068,7 +2068,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -2106,7 +2106,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDoubleSpinBox_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -2129,7 +2129,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -2186,7 +2186,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QDoubleSpinBox_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -2209,7 +2209,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -2233,7 +2233,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -2257,7 +2257,7 @@ static void _call_cbs_initStyleOption_c2572_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionSpinBox *arg1 = args.read (heap); + QStyleOptionSpinBox *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox_Adaptor *)cls)->cbs_initStyleOption_c2572_0 (arg1); } @@ -2281,7 +2281,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2305,7 +2305,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QDoubleSpinBox_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2346,7 +2346,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2370,7 +2370,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2394,7 +2394,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2432,7 +2432,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QDoubleSpinBox_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2474,7 +2474,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2498,7 +2498,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2522,7 +2522,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2546,7 +2546,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2570,7 +2570,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2598,9 +2598,9 @@ static void _call_cbs_nativeEvent_6949_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - QIntegerForSizeof::Signed *arg3 = args.read::Signed * > (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + QIntegerForSizeof::Signed *arg3 = gsi::arg_reader::Signed * >() (args, heap); ret.write ((bool)((QDoubleSpinBox_Adaptor *)cls)->cbs_nativeEvent_6949_0 (arg1, arg2, arg3)); } @@ -2660,7 +2660,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2702,7 +2702,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QDoubleSpinBox_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -2725,7 +2725,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2796,7 +2796,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2839,7 +2839,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2882,7 +2882,7 @@ static void _call_cbs_stepBy_767_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox_Adaptor *)cls)->cbs_stepBy_767_0 (arg1); } @@ -2925,7 +2925,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2967,7 +2967,7 @@ static void _call_cbs_textFromValue_c1071_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QDoubleSpinBox_Adaptor *)cls)->cbs_textFromValue_c1071_0 (arg1)); } @@ -2990,7 +2990,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -3035,8 +3035,8 @@ static void _call_cbs_validate_c2171_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QString &arg1 = args.read (heap); - int &arg2 = args.read (heap); + QString &arg1 = gsi::arg_reader() (args, heap); + int &arg2 = gsi::arg_reader() (args, heap); ret.write::target_type > ((qt_gsi::Converter::target_type)((QDoubleSpinBox_Adaptor *)cls)->cbs_validate_c2171_0 (arg1, arg2)); } @@ -3077,7 +3077,7 @@ static void _call_cbs_valueFromText_c2025_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((double)((QDoubleSpinBox_Adaptor *)cls)->cbs_valueFromText_c2025_0 (arg1)); } @@ -3100,7 +3100,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQErrorMessage.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQErrorMessage.cc index a514da50e..a4778cb4c 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQErrorMessage.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQErrorMessage.cc @@ -1210,7 +1210,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QErrorMessage_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1253,7 +1253,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QErrorMessage_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1277,7 +1277,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QErrorMessage_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1301,7 +1301,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QErrorMessage_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1325,7 +1325,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QErrorMessage_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1392,7 +1392,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QErrorMessage_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1456,7 +1456,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QErrorMessage_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1480,7 +1480,7 @@ static void _call_cbs_done_767_0 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QErrorMessage_Adaptor *)cls)->cbs_done_767_0 (arg1); } @@ -1504,7 +1504,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QErrorMessage_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1528,7 +1528,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QErrorMessage_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1552,7 +1552,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QErrorMessage_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1576,7 +1576,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QErrorMessage_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1600,7 +1600,7 @@ static void _call_cbs_enterEvent_1727_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEnterEvent *arg1 = args.read (heap); + QEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QErrorMessage_Adaptor *)cls)->cbs_enterEvent_1727_0 (arg1); } @@ -1624,7 +1624,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QErrorMessage_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1649,8 +1649,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QErrorMessage_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1710,7 +1710,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QErrorMessage_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1748,7 +1748,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QErrorMessage_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -1771,7 +1771,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QErrorMessage_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -1828,7 +1828,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QErrorMessage_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -1851,7 +1851,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QErrorMessage_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -1875,7 +1875,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QErrorMessage_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -1899,7 +1899,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QErrorMessage_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -1923,7 +1923,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QErrorMessage_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -1964,7 +1964,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QErrorMessage_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -1988,7 +1988,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QErrorMessage_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2012,7 +2012,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QErrorMessage_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2036,7 +2036,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QErrorMessage_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2078,7 +2078,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QErrorMessage_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2102,7 +2102,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QErrorMessage_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2126,7 +2126,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QErrorMessage_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2150,7 +2150,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QErrorMessage_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2174,7 +2174,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QErrorMessage_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2202,9 +2202,9 @@ static void _call_cbs_nativeEvent_6949_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - QIntegerForSizeof::Signed *arg3 = args.read::Signed * > (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + QIntegerForSizeof::Signed *arg3 = gsi::arg_reader::Signed * >() (args, heap); ret.write ((bool)((QErrorMessage_Adaptor *)cls)->cbs_nativeEvent_6949_0 (arg1, arg2, arg3)); } @@ -2284,7 +2284,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QErrorMessage_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2326,7 +2326,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QErrorMessage_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -2383,7 +2383,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QErrorMessage_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2435,7 +2435,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QErrorMessage_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2478,7 +2478,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QErrorMessage_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2521,7 +2521,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QErrorMessage_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2545,7 +2545,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QErrorMessage_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2588,7 +2588,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QErrorMessage_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQFileDialog.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQFileDialog.cc index d7599ce88..66f3c04d9 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQFileDialog.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQFileDialog.cc @@ -2543,7 +2543,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -2586,7 +2586,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -2610,7 +2610,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -2634,7 +2634,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -2658,7 +2658,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -2761,7 +2761,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -2861,7 +2861,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -2885,7 +2885,7 @@ static void _call_cbs_done_767_0 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog_Adaptor *)cls)->cbs_done_767_0 (arg1); } @@ -2909,7 +2909,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -2933,7 +2933,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -2957,7 +2957,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -2981,7 +2981,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -3005,7 +3005,7 @@ static void _call_cbs_enterEvent_1727_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEnterEvent *arg1 = args.read (heap); + QEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog_Adaptor *)cls)->cbs_enterEvent_1727_0 (arg1); } @@ -3029,7 +3029,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFileDialog_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -3054,8 +3054,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFileDialog_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -3169,7 +3169,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -3207,7 +3207,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFileDialog_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -3230,7 +3230,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -3287,7 +3287,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QFileDialog_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -3310,7 +3310,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -3334,7 +3334,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -3358,7 +3358,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -3382,7 +3382,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QFileDialog_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -3423,7 +3423,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -3447,7 +3447,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -3471,7 +3471,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -3495,7 +3495,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QFileDialog_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -3537,7 +3537,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -3561,7 +3561,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -3585,7 +3585,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -3609,7 +3609,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -3633,7 +3633,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -3661,9 +3661,9 @@ static void _call_cbs_nativeEvent_6949_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - QIntegerForSizeof::Signed *arg3 = args.read::Signed * > (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + QIntegerForSizeof::Signed *arg3 = gsi::arg_reader::Signed * >() (args, heap); ret.write ((bool)((QFileDialog_Adaptor *)cls)->cbs_nativeEvent_6949_0 (arg1, arg2, arg3)); } @@ -3743,7 +3743,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -3785,7 +3785,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QFileDialog_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -3842,7 +3842,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -3894,7 +3894,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -3937,7 +3937,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -3980,7 +3980,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -4004,7 +4004,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -4083,7 +4083,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQFileIconProvider.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQFileIconProvider.cc index 8ff3a2fe2..3d64199b5 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQFileIconProvider.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQFileIconProvider.cc @@ -219,7 +219,7 @@ static void _call_cbs_icon_c3884_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QIcon)((QFileIconProvider_Adaptor *)cls)->cbs_icon_c3884_0 (arg1)); } @@ -242,7 +242,7 @@ static void _call_cbs_icon_c2174_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFileInfo &arg1 = args.read (heap); + const QFileInfo &arg1 = gsi::arg_reader() (args, heap); ret.write ((QIcon)((QFileIconProvider_Adaptor *)cls)->cbs_icon_c2174_0 (arg1)); } @@ -284,7 +284,7 @@ static void _call_cbs_setOptions_4402_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileIconProvider_Adaptor *)cls)->cbs_setOptions_4402_0 (arg1); } @@ -308,7 +308,7 @@ static void _call_cbs_type_c2174_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFileInfo &arg1 = args.read (heap); + const QFileInfo &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QFileIconProvider_Adaptor *)cls)->cbs_type_c2174_0 (arg1)); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQFocusFrame.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQFocusFrame.cc index 801a1b9bd..d41df12ba 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQFocusFrame.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQFocusFrame.cc @@ -1063,7 +1063,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFocusFrame_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1087,7 +1087,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFocusFrame_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1111,7 +1111,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFocusFrame_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1135,7 +1135,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFocusFrame_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1159,7 +1159,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFocusFrame_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1226,7 +1226,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFocusFrame_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1290,7 +1290,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFocusFrame_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1314,7 +1314,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFocusFrame_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1338,7 +1338,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFocusFrame_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1362,7 +1362,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFocusFrame_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1386,7 +1386,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFocusFrame_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1410,7 +1410,7 @@ static void _call_cbs_enterEvent_1727_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEnterEvent *arg1 = args.read (heap); + QEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFocusFrame_Adaptor *)cls)->cbs_enterEvent_1727_0 (arg1); } @@ -1434,7 +1434,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFocusFrame_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1459,8 +1459,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFocusFrame_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1483,7 +1483,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFocusFrame_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1521,7 +1521,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFocusFrame_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -1544,7 +1544,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFocusFrame_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -1601,7 +1601,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QFocusFrame_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -1624,7 +1624,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFocusFrame_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -1648,7 +1648,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFocusFrame_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -1672,7 +1672,7 @@ static void _call_cbs_initStyleOption_c1865_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOption *arg1 = args.read (heap); + QStyleOption *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFocusFrame_Adaptor *)cls)->cbs_initStyleOption_c1865_0 (arg1); } @@ -1696,7 +1696,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFocusFrame_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -1720,7 +1720,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QFocusFrame_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -1761,7 +1761,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFocusFrame_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -1785,7 +1785,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFocusFrame_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -1809,7 +1809,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFocusFrame_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -1833,7 +1833,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QFocusFrame_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -1875,7 +1875,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFocusFrame_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -1899,7 +1899,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFocusFrame_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -1923,7 +1923,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFocusFrame_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -1947,7 +1947,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFocusFrame_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -1971,7 +1971,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFocusFrame_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -1999,9 +1999,9 @@ static void _call_cbs_nativeEvent_6949_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - QIntegerForSizeof::Signed *arg3 = args.read::Signed * > (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + QIntegerForSizeof::Signed *arg3 = gsi::arg_reader::Signed * >() (args, heap); ret.write ((bool)((QFocusFrame_Adaptor *)cls)->cbs_nativeEvent_6949_0 (arg1, arg2, arg3)); } @@ -2061,7 +2061,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFocusFrame_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2103,7 +2103,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QFocusFrame_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -2126,7 +2126,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFocusFrame_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2178,7 +2178,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFocusFrame_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2221,7 +2221,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFocusFrame_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2264,7 +2264,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFocusFrame_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2288,7 +2288,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFocusFrame_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2331,7 +2331,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFocusFrame_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQFontComboBox.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQFontComboBox.cc index 98450237c..ee7fb51b8 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQFontComboBox.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQFontComboBox.cc @@ -1264,7 +1264,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontComboBox_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1306,7 +1306,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontComboBox_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1330,7 +1330,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontComboBox_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1354,7 +1354,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontComboBox_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1378,7 +1378,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontComboBox_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1499,7 +1499,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontComboBox_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1563,7 +1563,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontComboBox_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1587,7 +1587,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontComboBox_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1611,7 +1611,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontComboBox_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1635,7 +1635,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontComboBox_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1659,7 +1659,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontComboBox_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1701,7 +1701,7 @@ static void _call_cbs_enterEvent_1727_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEnterEvent *arg1 = args.read (heap); + QEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontComboBox_Adaptor *)cls)->cbs_enterEvent_1727_0 (arg1); } @@ -1725,7 +1725,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFontComboBox_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1750,8 +1750,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFontComboBox_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1774,7 +1774,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontComboBox_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1812,7 +1812,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFontComboBox_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -1835,7 +1835,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontComboBox_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -1892,7 +1892,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QFontComboBox_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -1915,7 +1915,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontComboBox_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -1977,7 +1977,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontComboBox_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -2001,7 +2001,7 @@ static void _call_cbs_initStyleOption_c2658_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionComboBox *arg1 = args.read (heap); + QStyleOptionComboBox *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontComboBox_Adaptor *)cls)->cbs_initStyleOption_c2658_0 (arg1); } @@ -2025,7 +2025,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontComboBox_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2049,7 +2049,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QFontComboBox_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2090,7 +2090,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontComboBox_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2114,7 +2114,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontComboBox_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2138,7 +2138,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontComboBox_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2162,7 +2162,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QFontComboBox_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2204,7 +2204,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontComboBox_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2228,7 +2228,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontComboBox_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2252,7 +2252,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontComboBox_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2276,7 +2276,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontComboBox_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2300,7 +2300,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontComboBox_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2328,9 +2328,9 @@ static void _call_cbs_nativeEvent_6949_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - QIntegerForSizeof::Signed *arg3 = args.read::Signed * > (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + QIntegerForSizeof::Signed *arg3 = gsi::arg_reader::Signed * >() (args, heap); ret.write ((bool)((QFontComboBox_Adaptor *)cls)->cbs_nativeEvent_6949_0 (arg1, arg2, arg3)); } @@ -2390,7 +2390,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontComboBox_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2432,7 +2432,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QFontComboBox_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -2455,7 +2455,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontComboBox_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2507,7 +2507,7 @@ static void _call_cbs_setModel_2419_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractItemModel *arg1 = args.read (heap); + QAbstractItemModel *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontComboBox_Adaptor *)cls)->cbs_setModel_2419_0 (arg1); } @@ -2531,7 +2531,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontComboBox_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2574,7 +2574,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontComboBox_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2637,7 +2637,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontComboBox_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2697,7 +2697,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontComboBox_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2740,7 +2740,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontComboBox_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQFontDialog.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQFontDialog.cc index f1130f5b5..26502944e 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQFontDialog.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQFontDialog.cc @@ -1447,7 +1447,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontDialog_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1490,7 +1490,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontDialog_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1514,7 +1514,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontDialog_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1538,7 +1538,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontDialog_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1562,7 +1562,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontDialog_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1647,7 +1647,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontDialog_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1711,7 +1711,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontDialog_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1735,7 +1735,7 @@ static void _call_cbs_done_767_0 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontDialog_Adaptor *)cls)->cbs_done_767_0 (arg1); } @@ -1759,7 +1759,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontDialog_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1783,7 +1783,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontDialog_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1807,7 +1807,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontDialog_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1831,7 +1831,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontDialog_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1855,7 +1855,7 @@ static void _call_cbs_enterEvent_1727_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEnterEvent *arg1 = args.read (heap); + QEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontDialog_Adaptor *)cls)->cbs_enterEvent_1727_0 (arg1); } @@ -1879,7 +1879,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFontDialog_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1904,8 +1904,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFontDialog_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1965,7 +1965,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontDialog_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -2003,7 +2003,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFontDialog_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -2026,7 +2026,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontDialog_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -2101,7 +2101,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QFontDialog_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -2124,7 +2124,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontDialog_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -2148,7 +2148,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontDialog_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -2172,7 +2172,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontDialog_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2196,7 +2196,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QFontDialog_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2237,7 +2237,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontDialog_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2261,7 +2261,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontDialog_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2285,7 +2285,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontDialog_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2309,7 +2309,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QFontDialog_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2351,7 +2351,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontDialog_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2375,7 +2375,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontDialog_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2399,7 +2399,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontDialog_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2423,7 +2423,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontDialog_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2447,7 +2447,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontDialog_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2475,9 +2475,9 @@ static void _call_cbs_nativeEvent_6949_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - QIntegerForSizeof::Signed *arg3 = args.read::Signed * > (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + QIntegerForSizeof::Signed *arg3 = gsi::arg_reader::Signed * >() (args, heap); ret.write ((bool)((QFontDialog_Adaptor *)cls)->cbs_nativeEvent_6949_0 (arg1, arg2, arg3)); } @@ -2557,7 +2557,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontDialog_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2599,7 +2599,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QFontDialog_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -2656,7 +2656,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontDialog_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2708,7 +2708,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontDialog_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2751,7 +2751,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontDialog_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2794,7 +2794,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontDialog_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2818,7 +2818,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontDialog_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2861,7 +2861,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontDialog_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQFormLayout.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQFormLayout.cc index 45c73002f..88a901399 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQFormLayout.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQFormLayout.cc @@ -1856,7 +1856,8 @@ static void _call_cbs_addItem_1740_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QLayoutItem *arg1 = args.read (heap); + QLayoutItem *arg1 = gsi::arg_reader() (args, heap); + qt_gsi::qt_keep (arg1); __SUPPRESS_UNUSED_WARNING(ret); ((QFormLayout_Adaptor *)cls)->cbs_addItem_1740_0 (arg1); } @@ -1916,7 +1917,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFormLayout_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1978,7 +1979,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFormLayout_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -2020,7 +2021,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFormLayout_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -2044,7 +2045,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFormLayout_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -2069,8 +2070,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFormLayout_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -2150,7 +2151,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QFormLayout_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -2173,7 +2174,7 @@ static void _call_cbs_indexOf_c2010_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QWidget *arg1 = args.read (heap); + const QWidget *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QFormLayout_Adaptor *)cls)->cbs_indexOf_c2010_0 (arg1)); } @@ -2196,7 +2197,7 @@ static void _call_cbs_indexOf_c2435_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QLayoutItem *arg1 = args.read (heap); + const QLayoutItem *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QFormLayout_Adaptor *)cls)->cbs_indexOf_c2435_0 (arg1)); } @@ -2276,7 +2277,7 @@ static void _call_cbs_itemAt_c767_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QLayoutItem *)((QFormLayout_Adaptor *)cls)->cbs_itemAt_c767_0 (arg1)); } @@ -2337,7 +2338,7 @@ static void _call_cbs_minimumHeightForWidth_c767_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QFormLayout_Adaptor *)cls)->cbs_minimumHeightForWidth_c767_0 (arg1)); } @@ -2419,9 +2420,9 @@ static void _call_cbs_replaceWidget_5361_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - QWidget *arg2 = args.read (heap); - QFlags arg3 = args.read > (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = gsi::arg_reader() (args, heap); + QFlags arg3 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (Qt::FindChildrenRecursively, heap); ret.write ((QLayoutItem *)((QFormLayout_Adaptor *)cls)->cbs_replaceWidget_5361_1 (arg1, arg2, arg3)); } @@ -2472,7 +2473,7 @@ static void _call_cbs_setGeometry_1792_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFormLayout_Adaptor *)cls)->cbs_setGeometry_1792_0 (arg1); } @@ -2496,7 +2497,7 @@ static void _call_cbs_setSpacing_767_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFormLayout_Adaptor *)cls)->cbs_setSpacing_767_0 (arg1); } @@ -2577,7 +2578,7 @@ static void _call_cbs_takeAt_767_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QLayoutItem *)((QFormLayout_Adaptor *)cls)->cbs_takeAt_767_0 (arg1)); } @@ -2600,7 +2601,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFormLayout_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQFrame.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQFrame.cc index 674b88949..5da8a8002 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQFrame.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQFrame.cc @@ -1294,7 +1294,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFrame_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1318,7 +1318,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFrame_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1342,7 +1342,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFrame_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1366,7 +1366,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFrame_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1390,7 +1390,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFrame_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1457,7 +1457,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFrame_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1521,7 +1521,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFrame_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1545,7 +1545,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFrame_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1569,7 +1569,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFrame_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1593,7 +1593,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFrame_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1636,7 +1636,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFrame_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1660,7 +1660,7 @@ static void _call_cbs_enterEvent_1727_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEnterEvent *arg1 = args.read (heap); + QEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFrame_Adaptor *)cls)->cbs_enterEvent_1727_0 (arg1); } @@ -1684,7 +1684,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFrame_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1709,8 +1709,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFrame_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1733,7 +1733,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFrame_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1771,7 +1771,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFrame_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -1794,7 +1794,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFrame_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -1851,7 +1851,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QFrame_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -1874,7 +1874,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFrame_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -1898,7 +1898,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFrame_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -1922,7 +1922,7 @@ static void _call_cbs_initStyleOption_c2356_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionFrame *arg1 = args.read (heap); + QStyleOptionFrame *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFrame_Adaptor *)cls)->cbs_initStyleOption_c2356_0 (arg1); } @@ -1946,7 +1946,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFrame_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -1970,7 +1970,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QFrame_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2011,7 +2011,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFrame_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2035,7 +2035,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFrame_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2059,7 +2059,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFrame_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2083,7 +2083,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QFrame_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2125,7 +2125,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFrame_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2149,7 +2149,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFrame_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2173,7 +2173,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFrame_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2197,7 +2197,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFrame_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2221,7 +2221,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFrame_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2249,9 +2249,9 @@ static void _call_cbs_nativeEvent_6949_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - QIntegerForSizeof::Signed *arg3 = args.read::Signed * > (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + QIntegerForSizeof::Signed *arg3 = gsi::arg_reader::Signed * >() (args, heap); ret.write ((bool)((QFrame_Adaptor *)cls)->cbs_nativeEvent_6949_0 (arg1, arg2, arg3)); } @@ -2311,7 +2311,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFrame_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2353,7 +2353,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QFrame_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -2376,7 +2376,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFrame_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2428,7 +2428,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFrame_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2471,7 +2471,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFrame_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2514,7 +2514,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFrame_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2538,7 +2538,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFrame_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2581,7 +2581,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFrame_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQGesture.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQGesture.cc index 59d046148..000fc0373 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQGesture.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQGesture.cc @@ -424,7 +424,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGesture_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -448,7 +448,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGesture_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -490,7 +490,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGesture_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -514,7 +514,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGesture_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -539,8 +539,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGesture_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -645,7 +645,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGesture_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQGestureEvent.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQGestureEvent.cc index 2594c8880..34bad78b7 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQGestureEvent.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQGestureEvent.cc @@ -524,7 +524,7 @@ static void _call_cbs_setAccepted_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGestureEvent_Adaptor *)cls)->cbs_setAccepted_864_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQGestureRecognizer.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQGestureRecognizer.cc index 2ca6a9283..30ab4453a 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQGestureRecognizer.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQGestureRecognizer.cc @@ -257,7 +257,7 @@ static void _call_cbs_create_1302_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); ret.write ((QGesture *)((QGestureRecognizer_Adaptor *)cls)->cbs_create_1302_0 (arg1)); } @@ -284,9 +284,9 @@ static void _call_cbs_recognize_3741_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGesture *arg1 = args.read (heap); - QObject *arg2 = args.read (heap); - QEvent *arg3 = args.read (heap); + QGesture *arg1 = gsi::arg_reader() (args, heap); + QObject *arg2 = gsi::arg_reader() (args, heap); + QEvent *arg3 = gsi::arg_reader() (args, heap); ret.write > ((QFlags)((QGestureRecognizer_Adaptor *)cls)->cbs_recognize_3741_0 (arg1, arg2, arg3)); } @@ -309,7 +309,7 @@ static void _call_cbs_reset_1438_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGesture *arg1 = args.read (heap); + QGesture *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGestureRecognizer_Adaptor *)cls)->cbs_reset_1438_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsAnchor.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsAnchor.cc index 6e43bf4da..a9d645bc3 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsAnchor.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsAnchor.cc @@ -345,7 +345,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsAnchor_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -369,7 +369,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsAnchor_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -411,7 +411,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsAnchor_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -435,7 +435,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsAnchor_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -460,8 +460,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsAnchor_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -566,7 +566,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsAnchor_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsAnchorLayout.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsAnchorLayout.cc index e021c3c39..61baa37af 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsAnchorLayout.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsAnchorLayout.cc @@ -638,10 +638,10 @@ static void _call_cbs_getContentsMargins_c4704_0 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double *arg1 = args.read (heap); - double *arg2 = args.read (heap); - double *arg3 = args.read (heap); - double *arg4 = args.read (heap); + double *arg1 = gsi::arg_reader() (args, heap); + double *arg2 = gsi::arg_reader() (args, heap); + double *arg3 = gsi::arg_reader() (args, heap); + double *arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsAnchorLayout_Adaptor *)cls)->cbs_getContentsMargins_c4704_0 (arg1, arg2, arg3, arg4); } @@ -704,7 +704,7 @@ static void _call_cbs_itemAt_c767_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QGraphicsLayoutItem *)((QGraphicsAnchorLayout_Adaptor *)cls)->cbs_itemAt_c767_0 (arg1)); } @@ -727,7 +727,7 @@ static void _call_cbs_removeAt_767_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsAnchorLayout_Adaptor *)cls)->cbs_removeAt_767_0 (arg1); } @@ -751,7 +751,7 @@ static void _call_cbs_setGeometry_1862_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsAnchorLayout_Adaptor *)cls)->cbs_setGeometry_1862_0 (arg1); } @@ -815,8 +815,8 @@ static void _call_cbs_sizeHint_c3330_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QSizeF &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QSizeF &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QSizeF(), heap); ret.write ((QSizeF)((QGraphicsAnchorLayout_Adaptor *)cls)->cbs_sizeHint_c3330_1 (arg1, arg2)); } @@ -859,7 +859,7 @@ static void _call_cbs_widgetEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsAnchorLayout_Adaptor *)cls)->cbs_widgetEvent_1217_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsBlurEffect.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsBlurEffect.cc index b05ed94db..0f5559a15 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsBlurEffect.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsBlurEffect.cc @@ -512,7 +512,7 @@ static void _call_cbs_boundingRectFor_c1862_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRectF)((QGraphicsBlurEffect_Adaptor *)cls)->cbs_boundingRectFor_c1862_0 (arg1)); } @@ -535,7 +535,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsBlurEffect_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -559,7 +559,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsBlurEffect_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -601,7 +601,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsBlurEffect_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -625,7 +625,7 @@ static void _call_cbs_draw_1426_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsBlurEffect_Adaptor *)cls)->cbs_draw_1426_0 (arg1); } @@ -686,7 +686,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsBlurEffect_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -711,8 +711,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsBlurEffect_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -835,7 +835,7 @@ static void _call_cbs_sourceChanged_3695_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsBlurEffect_Adaptor *)cls)->cbs_sourceChanged_3695_0 (arg1); } @@ -897,7 +897,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsBlurEffect_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsColorizeEffect.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsColorizeEffect.cc index 3dd74624a..5737ce781 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsColorizeEffect.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsColorizeEffect.cc @@ -457,7 +457,7 @@ static void _call_cbs_boundingRectFor_c1862_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRectF)((QGraphicsColorizeEffect_Adaptor *)cls)->cbs_boundingRectFor_c1862_0 (arg1)); } @@ -480,7 +480,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsColorizeEffect_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -522,7 +522,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsColorizeEffect_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -564,7 +564,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsColorizeEffect_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -588,7 +588,7 @@ static void _call_cbs_draw_1426_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsColorizeEffect_Adaptor *)cls)->cbs_draw_1426_0 (arg1); } @@ -649,7 +649,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsColorizeEffect_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -674,8 +674,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsColorizeEffect_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -798,7 +798,7 @@ static void _call_cbs_sourceChanged_3695_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsColorizeEffect_Adaptor *)cls)->cbs_sourceChanged_3695_0 (arg1); } @@ -878,7 +878,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsColorizeEffect_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsDropShadowEffect.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsDropShadowEffect.cc index f6df2e00a..db3c76911 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsDropShadowEffect.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsDropShadowEffect.cc @@ -659,7 +659,7 @@ static void _call_cbs_boundingRectFor_c1862_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRectF)((QGraphicsDropShadowEffect_Adaptor *)cls)->cbs_boundingRectFor_c1862_0 (arg1)); } @@ -682,7 +682,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsDropShadowEffect_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -724,7 +724,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsDropShadowEffect_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -766,7 +766,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsDropShadowEffect_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -790,7 +790,7 @@ static void _call_cbs_draw_1426_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsDropShadowEffect_Adaptor *)cls)->cbs_draw_1426_0 (arg1); } @@ -851,7 +851,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsDropShadowEffect_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -876,8 +876,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsDropShadowEffect_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1018,7 +1018,7 @@ static void _call_cbs_sourceChanged_3695_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsDropShadowEffect_Adaptor *)cls)->cbs_sourceChanged_3695_0 (arg1); } @@ -1080,7 +1080,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsDropShadowEffect_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsEffect.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsEffect.cc index 49a3e574f..92985a3ae 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsEffect.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsEffect.cc @@ -459,7 +459,7 @@ static void _call_cbs_boundingRectFor_c1862_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRectF)((QGraphicsEffect_Adaptor *)cls)->cbs_boundingRectFor_c1862_0 (arg1)); } @@ -482,7 +482,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsEffect_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -506,7 +506,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsEffect_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -548,7 +548,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsEffect_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -572,7 +572,7 @@ static void _call_cbs_draw_1426_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsEffect_Adaptor *)cls)->cbs_draw_1426_0 (arg1); } @@ -633,7 +633,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsEffect_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -658,8 +658,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsEffect_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -782,7 +782,7 @@ static void _call_cbs_sourceChanged_3695_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsEffect_Adaptor *)cls)->cbs_sourceChanged_3695_0 (arg1); } @@ -844,7 +844,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsEffect_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsEllipseItem.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsEllipseItem.cc index 2112664ef..0d97f9c31 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsEllipseItem.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsEllipseItem.cc @@ -1077,7 +1077,7 @@ static void _call_cbs_advance_767_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsEllipseItem_Adaptor *)cls)->cbs_advance_767_0 (arg1); } @@ -1122,8 +1122,8 @@ static void _call_cbs_collidesWithItem_c4977_1 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape), heap); ret.write ((bool)((QGraphicsEllipseItem_Adaptor *)cls)->cbs_collidesWithItem_c4977_1 (arg1, arg2)); } @@ -1148,8 +1148,8 @@ static void _call_cbs_collidesWithPath_c4877_1 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape), heap); ret.write ((bool)((QGraphicsEllipseItem_Adaptor *)cls)->cbs_collidesWithPath_c4877_1 (arg1, arg2)); } @@ -1172,7 +1172,7 @@ static void _call_cbs_contains_c1986_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsEllipseItem_Adaptor *)cls)->cbs_contains_c1986_0 (arg1)); } @@ -1195,7 +1195,7 @@ static void _call_cbs_contextMenuEvent_3674_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneContextMenuEvent *arg1 = args.read (heap); + QGraphicsSceneContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsEllipseItem_Adaptor *)cls)->cbs_contextMenuEvent_3674_0 (arg1); } @@ -1219,7 +1219,7 @@ static void _call_cbs_dragEnterEvent_3315_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsEllipseItem_Adaptor *)cls)->cbs_dragEnterEvent_3315_0 (arg1); } @@ -1243,7 +1243,7 @@ static void _call_cbs_dragLeaveEvent_3315_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsEllipseItem_Adaptor *)cls)->cbs_dragLeaveEvent_3315_0 (arg1); } @@ -1267,7 +1267,7 @@ static void _call_cbs_dragMoveEvent_3315_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsEllipseItem_Adaptor *)cls)->cbs_dragMoveEvent_3315_0 (arg1); } @@ -1291,7 +1291,7 @@ static void _call_cbs_dropEvent_3315_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsEllipseItem_Adaptor *)cls)->cbs_dropEvent_3315_0 (arg1); } @@ -1315,7 +1315,7 @@ static void _call_cbs_extension_c2119_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVariant &arg1 = args.read (heap); + const QVariant &arg1 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QGraphicsEllipseItem_Adaptor *)cls)->cbs_extension_c2119_0 (arg1)); } @@ -1338,7 +1338,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsEllipseItem_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1362,7 +1362,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsEllipseItem_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -1386,7 +1386,7 @@ static void _call_cbs_hoverEnterEvent_3044_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsEllipseItem_Adaptor *)cls)->cbs_hoverEnterEvent_3044_0 (arg1); } @@ -1410,7 +1410,7 @@ static void _call_cbs_hoverLeaveEvent_3044_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsEllipseItem_Adaptor *)cls)->cbs_hoverLeaveEvent_3044_0 (arg1); } @@ -1434,7 +1434,7 @@ static void _call_cbs_hoverMoveEvent_3044_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsEllipseItem_Adaptor *)cls)->cbs_hoverMoveEvent_3044_0 (arg1); } @@ -1458,7 +1458,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsEllipseItem_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -1482,7 +1482,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QGraphicsEllipseItem_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -1505,7 +1505,7 @@ static void _call_cbs_isObscuredBy_c2614_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsEllipseItem_Adaptor *)cls)->cbs_isObscuredBy_c2614_0 (arg1)); } @@ -1530,8 +1530,8 @@ static void _call_cbs_itemChange_5658_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QVariant &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QGraphicsEllipseItem_Adaptor *)cls)->cbs_itemChange_5658_0 (arg1, arg2)); } @@ -1554,7 +1554,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsEllipseItem_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -1578,7 +1578,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsEllipseItem_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -1602,7 +1602,7 @@ static void _call_cbs_mouseDoubleClickEvent_3049_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsEllipseItem_Adaptor *)cls)->cbs_mouseDoubleClickEvent_3049_0 (arg1); } @@ -1626,7 +1626,7 @@ static void _call_cbs_mouseMoveEvent_3049_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsEllipseItem_Adaptor *)cls)->cbs_mouseMoveEvent_3049_0 (arg1); } @@ -1650,7 +1650,7 @@ static void _call_cbs_mousePressEvent_3049_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsEllipseItem_Adaptor *)cls)->cbs_mousePressEvent_3049_0 (arg1); } @@ -1674,7 +1674,7 @@ static void _call_cbs_mouseReleaseEvent_3049_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsEllipseItem_Adaptor *)cls)->cbs_mouseReleaseEvent_3049_0 (arg1); } @@ -1721,9 +1721,9 @@ static void _call_cbs_paint_6301_1 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QStyleOptionGraphicsItem *arg2 = args.read (heap); - QWidget *arg3 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionGraphicsItem *arg2 = gsi::arg_reader() (args, heap); + QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsEllipseItem_Adaptor *)cls)->cbs_paint_6301_1 (arg1, arg2, arg3); } @@ -1777,7 +1777,7 @@ static void _call_cbs_sceneEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsEllipseItem_Adaptor *)cls)->cbs_sceneEvent_1217_0 (arg1)); } @@ -1802,8 +1802,8 @@ static void _call_cbs_sceneEventFilter_3028_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsItem *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsEllipseItem_Adaptor *)cls)->cbs_sceneEventFilter_3028_0 (arg1, arg2)); } @@ -1828,8 +1828,8 @@ static void _call_cbs_setExtension_4817_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsEllipseItem_Adaptor *)cls)->cbs_setExtension_4817_0 (arg1, arg2); } @@ -1872,7 +1872,7 @@ static void _call_cbs_supportsExtension_c2806_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsEllipseItem_Adaptor *)cls)->cbs_supportsExtension_c2806_0 (arg1)); } @@ -1929,7 +1929,7 @@ static void _call_cbs_wheelEvent_3029_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneWheelEvent *arg1 = args.read (heap); + QGraphicsSceneWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsEllipseItem_Adaptor *)cls)->cbs_wheelEvent_3029_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsGridLayout.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsGridLayout.cc index eadee144d..3e88f66fc 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsGridLayout.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsGridLayout.cc @@ -1307,10 +1307,10 @@ static void _call_cbs_getContentsMargins_c4704_0 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double *arg1 = args.read (heap); - double *arg2 = args.read (heap); - double *arg3 = args.read (heap); - double *arg4 = args.read (heap); + double *arg1 = gsi::arg_reader() (args, heap); + double *arg2 = gsi::arg_reader() (args, heap); + double *arg3 = gsi::arg_reader() (args, heap); + double *arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsGridLayout_Adaptor *)cls)->cbs_getContentsMargins_c4704_0 (arg1, arg2, arg3, arg4); } @@ -1373,7 +1373,7 @@ static void _call_cbs_itemAt_c767_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QGraphicsLayoutItem *)((QGraphicsGridLayout_Adaptor *)cls)->cbs_itemAt_c767_0 (arg1)); } @@ -1396,7 +1396,7 @@ static void _call_cbs_removeAt_767_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsGridLayout_Adaptor *)cls)->cbs_removeAt_767_0 (arg1); } @@ -1420,7 +1420,7 @@ static void _call_cbs_setGeometry_1862_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsGridLayout_Adaptor *)cls)->cbs_setGeometry_1862_0 (arg1); } @@ -1484,8 +1484,8 @@ static void _call_cbs_sizeHint_c3330_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QSizeF &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QSizeF &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QSizeF(), heap); ret.write ((QSizeF)((QGraphicsGridLayout_Adaptor *)cls)->cbs_sizeHint_c3330_1 (arg1, arg2)); } @@ -1528,7 +1528,7 @@ static void _call_cbs_widgetEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsGridLayout_Adaptor *)cls)->cbs_widgetEvent_1217_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsItem.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsItem.cc index a511797e6..74501a2cb 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsItem.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsItem.cc @@ -4309,7 +4309,7 @@ static void _call_cbs_advance_767_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem_Adaptor *)cls)->cbs_advance_767_0 (arg1); } @@ -4354,8 +4354,8 @@ static void _call_cbs_collidesWithItem_c4977_1 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape), heap); ret.write ((bool)((QGraphicsItem_Adaptor *)cls)->cbs_collidesWithItem_c4977_1 (arg1, arg2)); } @@ -4380,8 +4380,8 @@ static void _call_cbs_collidesWithPath_c4877_1 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape), heap); ret.write ((bool)((QGraphicsItem_Adaptor *)cls)->cbs_collidesWithPath_c4877_1 (arg1, arg2)); } @@ -4404,7 +4404,7 @@ static void _call_cbs_contains_c1986_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsItem_Adaptor *)cls)->cbs_contains_c1986_0 (arg1)); } @@ -4427,7 +4427,7 @@ static void _call_cbs_contextMenuEvent_3674_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneContextMenuEvent *arg1 = args.read (heap); + QGraphicsSceneContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem_Adaptor *)cls)->cbs_contextMenuEvent_3674_0 (arg1); } @@ -4451,7 +4451,7 @@ static void _call_cbs_dragEnterEvent_3315_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem_Adaptor *)cls)->cbs_dragEnterEvent_3315_0 (arg1); } @@ -4475,7 +4475,7 @@ static void _call_cbs_dragLeaveEvent_3315_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem_Adaptor *)cls)->cbs_dragLeaveEvent_3315_0 (arg1); } @@ -4499,7 +4499,7 @@ static void _call_cbs_dragMoveEvent_3315_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem_Adaptor *)cls)->cbs_dragMoveEvent_3315_0 (arg1); } @@ -4523,7 +4523,7 @@ static void _call_cbs_dropEvent_3315_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem_Adaptor *)cls)->cbs_dropEvent_3315_0 (arg1); } @@ -4547,7 +4547,7 @@ static void _call_cbs_extension_c2119_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVariant &arg1 = args.read (heap); + const QVariant &arg1 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QGraphicsItem_Adaptor *)cls)->cbs_extension_c2119_0 (arg1)); } @@ -4570,7 +4570,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -4594,7 +4594,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -4618,7 +4618,7 @@ static void _call_cbs_hoverEnterEvent_3044_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem_Adaptor *)cls)->cbs_hoverEnterEvent_3044_0 (arg1); } @@ -4642,7 +4642,7 @@ static void _call_cbs_hoverLeaveEvent_3044_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem_Adaptor *)cls)->cbs_hoverLeaveEvent_3044_0 (arg1); } @@ -4666,7 +4666,7 @@ static void _call_cbs_hoverMoveEvent_3044_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem_Adaptor *)cls)->cbs_hoverMoveEvent_3044_0 (arg1); } @@ -4690,7 +4690,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -4714,7 +4714,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QGraphicsItem_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -4737,7 +4737,7 @@ static void _call_cbs_isObscuredBy_c2614_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsItem_Adaptor *)cls)->cbs_isObscuredBy_c2614_0 (arg1)); } @@ -4762,8 +4762,8 @@ static void _call_cbs_itemChange_5658_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QVariant &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QGraphicsItem_Adaptor *)cls)->cbs_itemChange_5658_0 (arg1, arg2)); } @@ -4786,7 +4786,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -4810,7 +4810,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -4834,7 +4834,7 @@ static void _call_cbs_mouseDoubleClickEvent_3049_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem_Adaptor *)cls)->cbs_mouseDoubleClickEvent_3049_0 (arg1); } @@ -4858,7 +4858,7 @@ static void _call_cbs_mouseMoveEvent_3049_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem_Adaptor *)cls)->cbs_mouseMoveEvent_3049_0 (arg1); } @@ -4882,7 +4882,7 @@ static void _call_cbs_mousePressEvent_3049_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem_Adaptor *)cls)->cbs_mousePressEvent_3049_0 (arg1); } @@ -4906,7 +4906,7 @@ static void _call_cbs_mouseReleaseEvent_3049_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem_Adaptor *)cls)->cbs_mouseReleaseEvent_3049_0 (arg1); } @@ -4953,9 +4953,9 @@ static void _call_cbs_paint_6301_1 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QStyleOptionGraphicsItem *arg2 = args.read (heap); - QWidget *arg3 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionGraphicsItem *arg2 = gsi::arg_reader() (args, heap); + QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem_Adaptor *)cls)->cbs_paint_6301_1 (arg1, arg2, arg3); } @@ -5009,7 +5009,7 @@ static void _call_cbs_sceneEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsItem_Adaptor *)cls)->cbs_sceneEvent_1217_0 (arg1)); } @@ -5034,8 +5034,8 @@ static void _call_cbs_sceneEventFilter_3028_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsItem *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsItem_Adaptor *)cls)->cbs_sceneEventFilter_3028_0 (arg1, arg2)); } @@ -5060,8 +5060,8 @@ static void _call_cbs_setExtension_4817_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem_Adaptor *)cls)->cbs_setExtension_4817_0 (arg1, arg2); } @@ -5104,7 +5104,7 @@ static void _call_cbs_supportsExtension_c2806_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsItem_Adaptor *)cls)->cbs_supportsExtension_c2806_0 (arg1)); } @@ -5161,7 +5161,7 @@ static void _call_cbs_wheelEvent_3029_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneWheelEvent *arg1 = args.read (heap); + QGraphicsSceneWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem_Adaptor *)cls)->cbs_wheelEvent_3029_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsItemAnimation.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsItemAnimation.cc index 92749c8ea..f72b53f6c 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsItemAnimation.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsItemAnimation.cc @@ -821,7 +821,7 @@ static void _call_cbs_afterAnimationStep_1071_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItemAnimation_Adaptor *)cls)->cbs_afterAnimationStep_1071_0 (arg1); } @@ -845,7 +845,7 @@ static void _call_cbs_beforeAnimationStep_1071_0 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItemAnimation_Adaptor *)cls)->cbs_beforeAnimationStep_1071_0 (arg1); } @@ -869,7 +869,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItemAnimation_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -893,7 +893,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItemAnimation_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -935,7 +935,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItemAnimation_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -959,7 +959,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsItemAnimation_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -984,8 +984,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsItemAnimation_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1090,7 +1090,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItemAnimation_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsItemGroup.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsItemGroup.cc index 32fd7e77d..14a4b45a9 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsItemGroup.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsItemGroup.cc @@ -865,7 +865,7 @@ static void _call_cbs_advance_767_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItemGroup_Adaptor *)cls)->cbs_advance_767_0 (arg1); } @@ -910,8 +910,8 @@ static void _call_cbs_collidesWithItem_c4977_1 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape), heap); ret.write ((bool)((QGraphicsItemGroup_Adaptor *)cls)->cbs_collidesWithItem_c4977_1 (arg1, arg2)); } @@ -936,8 +936,8 @@ static void _call_cbs_collidesWithPath_c4877_1 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape), heap); ret.write ((bool)((QGraphicsItemGroup_Adaptor *)cls)->cbs_collidesWithPath_c4877_1 (arg1, arg2)); } @@ -960,7 +960,7 @@ static void _call_cbs_contains_c1986_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsItemGroup_Adaptor *)cls)->cbs_contains_c1986_0 (arg1)); } @@ -983,7 +983,7 @@ static void _call_cbs_contextMenuEvent_3674_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneContextMenuEvent *arg1 = args.read (heap); + QGraphicsSceneContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItemGroup_Adaptor *)cls)->cbs_contextMenuEvent_3674_0 (arg1); } @@ -1007,7 +1007,7 @@ static void _call_cbs_dragEnterEvent_3315_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItemGroup_Adaptor *)cls)->cbs_dragEnterEvent_3315_0 (arg1); } @@ -1031,7 +1031,7 @@ static void _call_cbs_dragLeaveEvent_3315_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItemGroup_Adaptor *)cls)->cbs_dragLeaveEvent_3315_0 (arg1); } @@ -1055,7 +1055,7 @@ static void _call_cbs_dragMoveEvent_3315_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItemGroup_Adaptor *)cls)->cbs_dragMoveEvent_3315_0 (arg1); } @@ -1079,7 +1079,7 @@ static void _call_cbs_dropEvent_3315_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItemGroup_Adaptor *)cls)->cbs_dropEvent_3315_0 (arg1); } @@ -1103,7 +1103,7 @@ static void _call_cbs_extension_c2119_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVariant &arg1 = args.read (heap); + const QVariant &arg1 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QGraphicsItemGroup_Adaptor *)cls)->cbs_extension_c2119_0 (arg1)); } @@ -1126,7 +1126,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItemGroup_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1150,7 +1150,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItemGroup_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -1174,7 +1174,7 @@ static void _call_cbs_hoverEnterEvent_3044_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItemGroup_Adaptor *)cls)->cbs_hoverEnterEvent_3044_0 (arg1); } @@ -1198,7 +1198,7 @@ static void _call_cbs_hoverLeaveEvent_3044_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItemGroup_Adaptor *)cls)->cbs_hoverLeaveEvent_3044_0 (arg1); } @@ -1222,7 +1222,7 @@ static void _call_cbs_hoverMoveEvent_3044_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItemGroup_Adaptor *)cls)->cbs_hoverMoveEvent_3044_0 (arg1); } @@ -1246,7 +1246,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItemGroup_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -1270,7 +1270,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QGraphicsItemGroup_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -1293,7 +1293,7 @@ static void _call_cbs_isObscuredBy_c2614_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsItemGroup_Adaptor *)cls)->cbs_isObscuredBy_c2614_0 (arg1)); } @@ -1318,8 +1318,8 @@ static void _call_cbs_itemChange_5658_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QVariant &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QGraphicsItemGroup_Adaptor *)cls)->cbs_itemChange_5658_0 (arg1, arg2)); } @@ -1342,7 +1342,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItemGroup_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -1366,7 +1366,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItemGroup_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -1390,7 +1390,7 @@ static void _call_cbs_mouseDoubleClickEvent_3049_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItemGroup_Adaptor *)cls)->cbs_mouseDoubleClickEvent_3049_0 (arg1); } @@ -1414,7 +1414,7 @@ static void _call_cbs_mouseMoveEvent_3049_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItemGroup_Adaptor *)cls)->cbs_mouseMoveEvent_3049_0 (arg1); } @@ -1438,7 +1438,7 @@ static void _call_cbs_mousePressEvent_3049_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItemGroup_Adaptor *)cls)->cbs_mousePressEvent_3049_0 (arg1); } @@ -1462,7 +1462,7 @@ static void _call_cbs_mouseReleaseEvent_3049_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItemGroup_Adaptor *)cls)->cbs_mouseReleaseEvent_3049_0 (arg1); } @@ -1509,9 +1509,9 @@ static void _call_cbs_paint_6301_1 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QStyleOptionGraphicsItem *arg2 = args.read (heap); - QWidget *arg3 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionGraphicsItem *arg2 = gsi::arg_reader() (args, heap); + QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItemGroup_Adaptor *)cls)->cbs_paint_6301_1 (arg1, arg2, arg3); } @@ -1565,7 +1565,7 @@ static void _call_cbs_sceneEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsItemGroup_Adaptor *)cls)->cbs_sceneEvent_1217_0 (arg1)); } @@ -1590,8 +1590,8 @@ static void _call_cbs_sceneEventFilter_3028_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsItem *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsItemGroup_Adaptor *)cls)->cbs_sceneEventFilter_3028_0 (arg1, arg2)); } @@ -1616,8 +1616,8 @@ static void _call_cbs_setExtension_4817_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItemGroup_Adaptor *)cls)->cbs_setExtension_4817_0 (arg1, arg2); } @@ -1660,7 +1660,7 @@ static void _call_cbs_supportsExtension_c2806_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsItemGroup_Adaptor *)cls)->cbs_supportsExtension_c2806_0 (arg1)); } @@ -1717,7 +1717,7 @@ static void _call_cbs_wheelEvent_3029_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneWheelEvent *arg1 = args.read (heap); + QGraphicsSceneWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItemGroup_Adaptor *)cls)->cbs_wheelEvent_3029_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsLayout.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsLayout.cc index 53e2861cb..fa254258a 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsLayout.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsLayout.cc @@ -578,10 +578,10 @@ static void _call_cbs_getContentsMargins_c4704_0 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double *arg1 = args.read (heap); - double *arg2 = args.read (heap); - double *arg3 = args.read (heap); - double *arg4 = args.read (heap); + double *arg1 = gsi::arg_reader() (args, heap); + double *arg2 = gsi::arg_reader() (args, heap); + double *arg3 = gsi::arg_reader() (args, heap); + double *arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLayout_Adaptor *)cls)->cbs_getContentsMargins_c4704_0 (arg1, arg2, arg3, arg4); } @@ -644,7 +644,7 @@ static void _call_cbs_itemAt_c767_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QGraphicsLayoutItem *)((QGraphicsLayout_Adaptor *)cls)->cbs_itemAt_c767_0 (arg1)); } @@ -667,7 +667,7 @@ static void _call_cbs_removeAt_767_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLayout_Adaptor *)cls)->cbs_removeAt_767_0 (arg1); } @@ -691,7 +691,7 @@ static void _call_cbs_setGeometry_1862_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLayout_Adaptor *)cls)->cbs_setGeometry_1862_0 (arg1); } @@ -755,8 +755,8 @@ static void _call_cbs_sizeHint_c3330_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QSizeF &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QSizeF &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QSizeF(), heap); ret.write ((QSizeF)((QGraphicsLayout_Adaptor *)cls)->cbs_sizeHint_c3330_1 (arg1, arg2)); } @@ -799,7 +799,7 @@ static void _call_cbs_widgetEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLayout_Adaptor *)cls)->cbs_widgetEvent_1217_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsLayoutItem.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsLayoutItem.cc index b444d9862..07ef0d340 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsLayoutItem.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsLayoutItem.cc @@ -909,10 +909,10 @@ static void _call_cbs_getContentsMargins_c4704_0 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double *arg1 = args.read (heap); - double *arg2 = args.read (heap); - double *arg3 = args.read (heap); - double *arg4 = args.read (heap); + double *arg1 = gsi::arg_reader() (args, heap); + double *arg2 = gsi::arg_reader() (args, heap); + double *arg3 = gsi::arg_reader() (args, heap); + double *arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLayoutItem_Adaptor *)cls)->cbs_getContentsMargins_c4704_0 (arg1, arg2, arg3, arg4); } @@ -955,7 +955,7 @@ static void _call_cbs_setGeometry_1862_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLayoutItem_Adaptor *)cls)->cbs_setGeometry_1862_0 (arg1); } @@ -1019,8 +1019,8 @@ static void _call_cbs_sizeHint_c3330_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QSizeF &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QSizeF &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QSizeF(), heap); ret.write ((QSizeF)((QGraphicsLayoutItem_Adaptor *)cls)->cbs_sizeHint_c3330_1 (arg1, arg2)); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsLineItem.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsLineItem.cc index 70fd87a7a..6540232d8 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsLineItem.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsLineItem.cc @@ -1040,7 +1040,7 @@ static void _call_cbs_advance_767_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLineItem_Adaptor *)cls)->cbs_advance_767_0 (arg1); } @@ -1085,8 +1085,8 @@ static void _call_cbs_collidesWithItem_c4977_1 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape), heap); ret.write ((bool)((QGraphicsLineItem_Adaptor *)cls)->cbs_collidesWithItem_c4977_1 (arg1, arg2)); } @@ -1111,8 +1111,8 @@ static void _call_cbs_collidesWithPath_c4877_1 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape), heap); ret.write ((bool)((QGraphicsLineItem_Adaptor *)cls)->cbs_collidesWithPath_c4877_1 (arg1, arg2)); } @@ -1135,7 +1135,7 @@ static void _call_cbs_contains_c1986_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsLineItem_Adaptor *)cls)->cbs_contains_c1986_0 (arg1)); } @@ -1158,7 +1158,7 @@ static void _call_cbs_contextMenuEvent_3674_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneContextMenuEvent *arg1 = args.read (heap); + QGraphicsSceneContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLineItem_Adaptor *)cls)->cbs_contextMenuEvent_3674_0 (arg1); } @@ -1182,7 +1182,7 @@ static void _call_cbs_dragEnterEvent_3315_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLineItem_Adaptor *)cls)->cbs_dragEnterEvent_3315_0 (arg1); } @@ -1206,7 +1206,7 @@ static void _call_cbs_dragLeaveEvent_3315_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLineItem_Adaptor *)cls)->cbs_dragLeaveEvent_3315_0 (arg1); } @@ -1230,7 +1230,7 @@ static void _call_cbs_dragMoveEvent_3315_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLineItem_Adaptor *)cls)->cbs_dragMoveEvent_3315_0 (arg1); } @@ -1254,7 +1254,7 @@ static void _call_cbs_dropEvent_3315_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLineItem_Adaptor *)cls)->cbs_dropEvent_3315_0 (arg1); } @@ -1278,7 +1278,7 @@ static void _call_cbs_extension_c2119_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVariant &arg1 = args.read (heap); + const QVariant &arg1 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QGraphicsLineItem_Adaptor *)cls)->cbs_extension_c2119_0 (arg1)); } @@ -1301,7 +1301,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLineItem_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1325,7 +1325,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLineItem_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -1349,7 +1349,7 @@ static void _call_cbs_hoverEnterEvent_3044_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLineItem_Adaptor *)cls)->cbs_hoverEnterEvent_3044_0 (arg1); } @@ -1373,7 +1373,7 @@ static void _call_cbs_hoverLeaveEvent_3044_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLineItem_Adaptor *)cls)->cbs_hoverLeaveEvent_3044_0 (arg1); } @@ -1397,7 +1397,7 @@ static void _call_cbs_hoverMoveEvent_3044_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLineItem_Adaptor *)cls)->cbs_hoverMoveEvent_3044_0 (arg1); } @@ -1421,7 +1421,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLineItem_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -1445,7 +1445,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QGraphicsLineItem_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -1468,7 +1468,7 @@ static void _call_cbs_isObscuredBy_c2614_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsLineItem_Adaptor *)cls)->cbs_isObscuredBy_c2614_0 (arg1)); } @@ -1493,8 +1493,8 @@ static void _call_cbs_itemChange_5658_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QVariant &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QGraphicsLineItem_Adaptor *)cls)->cbs_itemChange_5658_0 (arg1, arg2)); } @@ -1517,7 +1517,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLineItem_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -1541,7 +1541,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLineItem_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -1565,7 +1565,7 @@ static void _call_cbs_mouseDoubleClickEvent_3049_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLineItem_Adaptor *)cls)->cbs_mouseDoubleClickEvent_3049_0 (arg1); } @@ -1589,7 +1589,7 @@ static void _call_cbs_mouseMoveEvent_3049_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLineItem_Adaptor *)cls)->cbs_mouseMoveEvent_3049_0 (arg1); } @@ -1613,7 +1613,7 @@ static void _call_cbs_mousePressEvent_3049_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLineItem_Adaptor *)cls)->cbs_mousePressEvent_3049_0 (arg1); } @@ -1637,7 +1637,7 @@ static void _call_cbs_mouseReleaseEvent_3049_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLineItem_Adaptor *)cls)->cbs_mouseReleaseEvent_3049_0 (arg1); } @@ -1684,9 +1684,9 @@ static void _call_cbs_paint_6301_1 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QStyleOptionGraphicsItem *arg2 = args.read (heap); - QWidget *arg3 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionGraphicsItem *arg2 = gsi::arg_reader() (args, heap); + QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLineItem_Adaptor *)cls)->cbs_paint_6301_1 (arg1, arg2, arg3); } @@ -1740,7 +1740,7 @@ static void _call_cbs_sceneEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsLineItem_Adaptor *)cls)->cbs_sceneEvent_1217_0 (arg1)); } @@ -1765,8 +1765,8 @@ static void _call_cbs_sceneEventFilter_3028_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsItem *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsLineItem_Adaptor *)cls)->cbs_sceneEventFilter_3028_0 (arg1, arg2)); } @@ -1791,8 +1791,8 @@ static void _call_cbs_setExtension_4817_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLineItem_Adaptor *)cls)->cbs_setExtension_4817_0 (arg1, arg2); } @@ -1835,7 +1835,7 @@ static void _call_cbs_supportsExtension_c2806_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsLineItem_Adaptor *)cls)->cbs_supportsExtension_c2806_0 (arg1)); } @@ -1892,7 +1892,7 @@ static void _call_cbs_wheelEvent_3029_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneWheelEvent *arg1 = args.read (heap); + QGraphicsSceneWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLineItem_Adaptor *)cls)->cbs_wheelEvent_3029_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsLinearLayout.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsLinearLayout.cc index aba719b15..c432bc6ad 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsLinearLayout.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsLinearLayout.cc @@ -821,10 +821,10 @@ static void _call_cbs_getContentsMargins_c4704_0 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double *arg1 = args.read (heap); - double *arg2 = args.read (heap); - double *arg3 = args.read (heap); - double *arg4 = args.read (heap); + double *arg1 = gsi::arg_reader() (args, heap); + double *arg2 = gsi::arg_reader() (args, heap); + double *arg3 = gsi::arg_reader() (args, heap); + double *arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLinearLayout_Adaptor *)cls)->cbs_getContentsMargins_c4704_0 (arg1, arg2, arg3, arg4); } @@ -887,7 +887,7 @@ static void _call_cbs_itemAt_c767_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QGraphicsLayoutItem *)((QGraphicsLinearLayout_Adaptor *)cls)->cbs_itemAt_c767_0 (arg1)); } @@ -910,7 +910,7 @@ static void _call_cbs_removeAt_767_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLinearLayout_Adaptor *)cls)->cbs_removeAt_767_0 (arg1); } @@ -934,7 +934,7 @@ static void _call_cbs_setGeometry_1862_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLinearLayout_Adaptor *)cls)->cbs_setGeometry_1862_0 (arg1); } @@ -998,8 +998,8 @@ static void _call_cbs_sizeHint_c3330_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QSizeF &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QSizeF &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QSizeF(), heap); ret.write ((QSizeF)((QGraphicsLinearLayout_Adaptor *)cls)->cbs_sizeHint_c3330_1 (arg1, arg2)); } @@ -1042,7 +1042,7 @@ static void _call_cbs_widgetEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLinearLayout_Adaptor *)cls)->cbs_widgetEvent_1217_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsObject.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsObject.cc index 35bd5bbd0..bea57d073 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsObject.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsObject.cc @@ -1107,7 +1107,7 @@ static void _call_cbs_advance_767_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsObject_Adaptor *)cls)->cbs_advance_767_0 (arg1); } @@ -1150,7 +1150,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsObject_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1190,8 +1190,8 @@ static void _call_cbs_collidesWithItem_c4977_1 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape), heap); ret.write ((bool)((QGraphicsObject_Adaptor *)cls)->cbs_collidesWithItem_c4977_1 (arg1, arg2)); } @@ -1216,8 +1216,8 @@ static void _call_cbs_collidesWithPath_c4877_1 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape), heap); ret.write ((bool)((QGraphicsObject_Adaptor *)cls)->cbs_collidesWithPath_c4877_1 (arg1, arg2)); } @@ -1240,7 +1240,7 @@ static void _call_cbs_contains_c1986_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsObject_Adaptor *)cls)->cbs_contains_c1986_0 (arg1)); } @@ -1263,7 +1263,7 @@ static void _call_cbs_contextMenuEvent_3674_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneContextMenuEvent *arg1 = args.read (heap); + QGraphicsSceneContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsObject_Adaptor *)cls)->cbs_contextMenuEvent_3674_0 (arg1); } @@ -1287,7 +1287,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsObject_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1329,7 +1329,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsObject_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1353,7 +1353,7 @@ static void _call_cbs_dragEnterEvent_3315_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsObject_Adaptor *)cls)->cbs_dragEnterEvent_3315_0 (arg1); } @@ -1377,7 +1377,7 @@ static void _call_cbs_dragLeaveEvent_3315_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsObject_Adaptor *)cls)->cbs_dragLeaveEvent_3315_0 (arg1); } @@ -1401,7 +1401,7 @@ static void _call_cbs_dragMoveEvent_3315_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsObject_Adaptor *)cls)->cbs_dragMoveEvent_3315_0 (arg1); } @@ -1425,7 +1425,7 @@ static void _call_cbs_dropEvent_3315_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsObject_Adaptor *)cls)->cbs_dropEvent_3315_0 (arg1); } @@ -1463,7 +1463,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsObject_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1488,8 +1488,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsObject_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1512,7 +1512,7 @@ static void _call_cbs_extension_c2119_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVariant &arg1 = args.read (heap); + const QVariant &arg1 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QGraphicsObject_Adaptor *)cls)->cbs_extension_c2119_0 (arg1)); } @@ -1535,7 +1535,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsObject_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1559,7 +1559,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsObject_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -1597,7 +1597,7 @@ static void _call_cbs_hoverEnterEvent_3044_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsObject_Adaptor *)cls)->cbs_hoverEnterEvent_3044_0 (arg1); } @@ -1621,7 +1621,7 @@ static void _call_cbs_hoverLeaveEvent_3044_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsObject_Adaptor *)cls)->cbs_hoverLeaveEvent_3044_0 (arg1); } @@ -1645,7 +1645,7 @@ static void _call_cbs_hoverMoveEvent_3044_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsObject_Adaptor *)cls)->cbs_hoverMoveEvent_3044_0 (arg1); } @@ -1669,7 +1669,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsObject_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -1693,7 +1693,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QGraphicsObject_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -1716,7 +1716,7 @@ static void _call_cbs_isObscuredBy_c2614_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsObject_Adaptor *)cls)->cbs_isObscuredBy_c2614_0 (arg1)); } @@ -1759,8 +1759,8 @@ static void _call_cbs_itemChange_5658_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QVariant &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QGraphicsObject_Adaptor *)cls)->cbs_itemChange_5658_0 (arg1, arg2)); } @@ -1783,7 +1783,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsObject_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -1807,7 +1807,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsObject_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -1831,7 +1831,7 @@ static void _call_cbs_mouseDoubleClickEvent_3049_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsObject_Adaptor *)cls)->cbs_mouseDoubleClickEvent_3049_0 (arg1); } @@ -1855,7 +1855,7 @@ static void _call_cbs_mouseMoveEvent_3049_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsObject_Adaptor *)cls)->cbs_mouseMoveEvent_3049_0 (arg1); } @@ -1879,7 +1879,7 @@ static void _call_cbs_mousePressEvent_3049_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsObject_Adaptor *)cls)->cbs_mousePressEvent_3049_0 (arg1); } @@ -1903,7 +1903,7 @@ static void _call_cbs_mouseReleaseEvent_3049_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsObject_Adaptor *)cls)->cbs_mouseReleaseEvent_3049_0 (arg1); } @@ -1982,9 +1982,9 @@ static void _call_cbs_paint_6301_1 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QStyleOptionGraphicsItem *arg2 = args.read (heap); - QWidget *arg3 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionGraphicsItem *arg2 = gsi::arg_reader() (args, heap); + QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsObject_Adaptor *)cls)->cbs_paint_6301_1 (arg1, arg2, arg3); } @@ -2098,7 +2098,7 @@ static void _call_cbs_sceneEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsObject_Adaptor *)cls)->cbs_sceneEvent_1217_0 (arg1)); } @@ -2123,8 +2123,8 @@ static void _call_cbs_sceneEventFilter_3028_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsItem *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsObject_Adaptor *)cls)->cbs_sceneEventFilter_3028_0 (arg1, arg2)); } @@ -2177,8 +2177,8 @@ static void _call_cbs_setExtension_4817_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsObject_Adaptor *)cls)->cbs_setExtension_4817_0 (arg1, arg2); } @@ -2221,7 +2221,7 @@ static void _call_cbs_supportsExtension_c2806_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsObject_Adaptor *)cls)->cbs_supportsExtension_c2806_0 (arg1)); } @@ -2244,7 +2244,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsObject_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2316,7 +2316,7 @@ static void _call_cbs_wheelEvent_3029_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneWheelEvent *arg1 = args.read (heap); + QGraphicsSceneWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsObject_Adaptor *)cls)->cbs_wheelEvent_3029_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsOpacityEffect.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsOpacityEffect.cc index b1b8a5c09..554c5e3e7 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsOpacityEffect.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsOpacityEffect.cc @@ -457,7 +457,7 @@ static void _call_cbs_boundingRectFor_c1862_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRectF)((QGraphicsOpacityEffect_Adaptor *)cls)->cbs_boundingRectFor_c1862_0 (arg1)); } @@ -480,7 +480,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsOpacityEffect_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -504,7 +504,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsOpacityEffect_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -546,7 +546,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsOpacityEffect_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -570,7 +570,7 @@ static void _call_cbs_draw_1426_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsOpacityEffect_Adaptor *)cls)->cbs_draw_1426_0 (arg1); } @@ -631,7 +631,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsOpacityEffect_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -656,8 +656,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsOpacityEffect_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -816,7 +816,7 @@ static void _call_cbs_sourceChanged_3695_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsOpacityEffect_Adaptor *)cls)->cbs_sourceChanged_3695_0 (arg1); } @@ -878,7 +878,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsOpacityEffect_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsPathItem.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsPathItem.cc index 7b8217662..4abbd3352 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsPathItem.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsPathItem.cc @@ -931,7 +931,7 @@ static void _call_cbs_advance_767_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPathItem_Adaptor *)cls)->cbs_advance_767_0 (arg1); } @@ -976,8 +976,8 @@ static void _call_cbs_collidesWithItem_c4977_1 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape), heap); ret.write ((bool)((QGraphicsPathItem_Adaptor *)cls)->cbs_collidesWithItem_c4977_1 (arg1, arg2)); } @@ -1002,8 +1002,8 @@ static void _call_cbs_collidesWithPath_c4877_1 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape), heap); ret.write ((bool)((QGraphicsPathItem_Adaptor *)cls)->cbs_collidesWithPath_c4877_1 (arg1, arg2)); } @@ -1026,7 +1026,7 @@ static void _call_cbs_contains_c1986_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsPathItem_Adaptor *)cls)->cbs_contains_c1986_0 (arg1)); } @@ -1049,7 +1049,7 @@ static void _call_cbs_contextMenuEvent_3674_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneContextMenuEvent *arg1 = args.read (heap); + QGraphicsSceneContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPathItem_Adaptor *)cls)->cbs_contextMenuEvent_3674_0 (arg1); } @@ -1073,7 +1073,7 @@ static void _call_cbs_dragEnterEvent_3315_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPathItem_Adaptor *)cls)->cbs_dragEnterEvent_3315_0 (arg1); } @@ -1097,7 +1097,7 @@ static void _call_cbs_dragLeaveEvent_3315_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPathItem_Adaptor *)cls)->cbs_dragLeaveEvent_3315_0 (arg1); } @@ -1121,7 +1121,7 @@ static void _call_cbs_dragMoveEvent_3315_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPathItem_Adaptor *)cls)->cbs_dragMoveEvent_3315_0 (arg1); } @@ -1145,7 +1145,7 @@ static void _call_cbs_dropEvent_3315_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPathItem_Adaptor *)cls)->cbs_dropEvent_3315_0 (arg1); } @@ -1169,7 +1169,7 @@ static void _call_cbs_extension_c2119_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVariant &arg1 = args.read (heap); + const QVariant &arg1 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QGraphicsPathItem_Adaptor *)cls)->cbs_extension_c2119_0 (arg1)); } @@ -1192,7 +1192,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPathItem_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1216,7 +1216,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPathItem_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -1240,7 +1240,7 @@ static void _call_cbs_hoverEnterEvent_3044_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPathItem_Adaptor *)cls)->cbs_hoverEnterEvent_3044_0 (arg1); } @@ -1264,7 +1264,7 @@ static void _call_cbs_hoverLeaveEvent_3044_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPathItem_Adaptor *)cls)->cbs_hoverLeaveEvent_3044_0 (arg1); } @@ -1288,7 +1288,7 @@ static void _call_cbs_hoverMoveEvent_3044_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPathItem_Adaptor *)cls)->cbs_hoverMoveEvent_3044_0 (arg1); } @@ -1312,7 +1312,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPathItem_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -1336,7 +1336,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QGraphicsPathItem_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -1359,7 +1359,7 @@ static void _call_cbs_isObscuredBy_c2614_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsPathItem_Adaptor *)cls)->cbs_isObscuredBy_c2614_0 (arg1)); } @@ -1384,8 +1384,8 @@ static void _call_cbs_itemChange_5658_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QVariant &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QGraphicsPathItem_Adaptor *)cls)->cbs_itemChange_5658_0 (arg1, arg2)); } @@ -1408,7 +1408,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPathItem_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -1432,7 +1432,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPathItem_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -1456,7 +1456,7 @@ static void _call_cbs_mouseDoubleClickEvent_3049_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPathItem_Adaptor *)cls)->cbs_mouseDoubleClickEvent_3049_0 (arg1); } @@ -1480,7 +1480,7 @@ static void _call_cbs_mouseMoveEvent_3049_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPathItem_Adaptor *)cls)->cbs_mouseMoveEvent_3049_0 (arg1); } @@ -1504,7 +1504,7 @@ static void _call_cbs_mousePressEvent_3049_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPathItem_Adaptor *)cls)->cbs_mousePressEvent_3049_0 (arg1); } @@ -1528,7 +1528,7 @@ static void _call_cbs_mouseReleaseEvent_3049_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPathItem_Adaptor *)cls)->cbs_mouseReleaseEvent_3049_0 (arg1); } @@ -1575,9 +1575,9 @@ static void _call_cbs_paint_6301_1 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QStyleOptionGraphicsItem *arg2 = args.read (heap); - QWidget *arg3 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionGraphicsItem *arg2 = gsi::arg_reader() (args, heap); + QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPathItem_Adaptor *)cls)->cbs_paint_6301_1 (arg1, arg2, arg3); } @@ -1631,7 +1631,7 @@ static void _call_cbs_sceneEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsPathItem_Adaptor *)cls)->cbs_sceneEvent_1217_0 (arg1)); } @@ -1656,8 +1656,8 @@ static void _call_cbs_sceneEventFilter_3028_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsItem *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsPathItem_Adaptor *)cls)->cbs_sceneEventFilter_3028_0 (arg1, arg2)); } @@ -1682,8 +1682,8 @@ static void _call_cbs_setExtension_4817_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPathItem_Adaptor *)cls)->cbs_setExtension_4817_0 (arg1, arg2); } @@ -1726,7 +1726,7 @@ static void _call_cbs_supportsExtension_c2806_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsPathItem_Adaptor *)cls)->cbs_supportsExtension_c2806_0 (arg1)); } @@ -1783,7 +1783,7 @@ static void _call_cbs_wheelEvent_3029_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneWheelEvent *arg1 = args.read (heap); + QGraphicsSceneWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPathItem_Adaptor *)cls)->cbs_wheelEvent_3029_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsPixmapItem.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsPixmapItem.cc index 6bb429f81..e5a723752 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsPixmapItem.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsPixmapItem.cc @@ -1065,7 +1065,7 @@ static void _call_cbs_advance_767_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPixmapItem_Adaptor *)cls)->cbs_advance_767_0 (arg1); } @@ -1110,8 +1110,8 @@ static void _call_cbs_collidesWithItem_c4977_1 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape), heap); ret.write ((bool)((QGraphicsPixmapItem_Adaptor *)cls)->cbs_collidesWithItem_c4977_1 (arg1, arg2)); } @@ -1136,8 +1136,8 @@ static void _call_cbs_collidesWithPath_c4877_1 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape), heap); ret.write ((bool)((QGraphicsPixmapItem_Adaptor *)cls)->cbs_collidesWithPath_c4877_1 (arg1, arg2)); } @@ -1160,7 +1160,7 @@ static void _call_cbs_contains_c1986_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsPixmapItem_Adaptor *)cls)->cbs_contains_c1986_0 (arg1)); } @@ -1183,7 +1183,7 @@ static void _call_cbs_contextMenuEvent_3674_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneContextMenuEvent *arg1 = args.read (heap); + QGraphicsSceneContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPixmapItem_Adaptor *)cls)->cbs_contextMenuEvent_3674_0 (arg1); } @@ -1207,7 +1207,7 @@ static void _call_cbs_dragEnterEvent_3315_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPixmapItem_Adaptor *)cls)->cbs_dragEnterEvent_3315_0 (arg1); } @@ -1231,7 +1231,7 @@ static void _call_cbs_dragLeaveEvent_3315_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPixmapItem_Adaptor *)cls)->cbs_dragLeaveEvent_3315_0 (arg1); } @@ -1255,7 +1255,7 @@ static void _call_cbs_dragMoveEvent_3315_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPixmapItem_Adaptor *)cls)->cbs_dragMoveEvent_3315_0 (arg1); } @@ -1279,7 +1279,7 @@ static void _call_cbs_dropEvent_3315_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPixmapItem_Adaptor *)cls)->cbs_dropEvent_3315_0 (arg1); } @@ -1303,7 +1303,7 @@ static void _call_cbs_extension_c2119_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVariant &arg1 = args.read (heap); + const QVariant &arg1 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QGraphicsPixmapItem_Adaptor *)cls)->cbs_extension_c2119_0 (arg1)); } @@ -1326,7 +1326,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPixmapItem_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1350,7 +1350,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPixmapItem_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -1374,7 +1374,7 @@ static void _call_cbs_hoverEnterEvent_3044_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPixmapItem_Adaptor *)cls)->cbs_hoverEnterEvent_3044_0 (arg1); } @@ -1398,7 +1398,7 @@ static void _call_cbs_hoverLeaveEvent_3044_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPixmapItem_Adaptor *)cls)->cbs_hoverLeaveEvent_3044_0 (arg1); } @@ -1422,7 +1422,7 @@ static void _call_cbs_hoverMoveEvent_3044_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPixmapItem_Adaptor *)cls)->cbs_hoverMoveEvent_3044_0 (arg1); } @@ -1446,7 +1446,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPixmapItem_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -1470,7 +1470,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QGraphicsPixmapItem_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -1493,7 +1493,7 @@ static void _call_cbs_isObscuredBy_c2614_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsPixmapItem_Adaptor *)cls)->cbs_isObscuredBy_c2614_0 (arg1)); } @@ -1518,8 +1518,8 @@ static void _call_cbs_itemChange_5658_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QVariant &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QGraphicsPixmapItem_Adaptor *)cls)->cbs_itemChange_5658_0 (arg1, arg2)); } @@ -1542,7 +1542,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPixmapItem_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -1566,7 +1566,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPixmapItem_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -1590,7 +1590,7 @@ static void _call_cbs_mouseDoubleClickEvent_3049_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPixmapItem_Adaptor *)cls)->cbs_mouseDoubleClickEvent_3049_0 (arg1); } @@ -1614,7 +1614,7 @@ static void _call_cbs_mouseMoveEvent_3049_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPixmapItem_Adaptor *)cls)->cbs_mouseMoveEvent_3049_0 (arg1); } @@ -1638,7 +1638,7 @@ static void _call_cbs_mousePressEvent_3049_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPixmapItem_Adaptor *)cls)->cbs_mousePressEvent_3049_0 (arg1); } @@ -1662,7 +1662,7 @@ static void _call_cbs_mouseReleaseEvent_3049_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPixmapItem_Adaptor *)cls)->cbs_mouseReleaseEvent_3049_0 (arg1); } @@ -1709,9 +1709,9 @@ static void _call_cbs_paint_6301_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QStyleOptionGraphicsItem *arg2 = args.read (heap); - QWidget *arg3 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionGraphicsItem *arg2 = gsi::arg_reader() (args, heap); + QWidget *arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPixmapItem_Adaptor *)cls)->cbs_paint_6301_0 (arg1, arg2, arg3); } @@ -1765,7 +1765,7 @@ static void _call_cbs_sceneEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsPixmapItem_Adaptor *)cls)->cbs_sceneEvent_1217_0 (arg1)); } @@ -1790,8 +1790,8 @@ static void _call_cbs_sceneEventFilter_3028_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsItem *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsPixmapItem_Adaptor *)cls)->cbs_sceneEventFilter_3028_0 (arg1, arg2)); } @@ -1816,8 +1816,8 @@ static void _call_cbs_setExtension_4817_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPixmapItem_Adaptor *)cls)->cbs_setExtension_4817_0 (arg1, arg2); } @@ -1860,7 +1860,7 @@ static void _call_cbs_supportsExtension_c2806_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsPixmapItem_Adaptor *)cls)->cbs_supportsExtension_c2806_0 (arg1)); } @@ -1917,7 +1917,7 @@ static void _call_cbs_wheelEvent_3029_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneWheelEvent *arg1 = args.read (heap); + QGraphicsSceneWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPixmapItem_Adaptor *)cls)->cbs_wheelEvent_3029_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsPolygonItem.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsPolygonItem.cc index f6e8661eb..282395913 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsPolygonItem.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsPolygonItem.cc @@ -968,7 +968,7 @@ static void _call_cbs_advance_767_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPolygonItem_Adaptor *)cls)->cbs_advance_767_0 (arg1); } @@ -1013,8 +1013,8 @@ static void _call_cbs_collidesWithItem_c4977_1 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape), heap); ret.write ((bool)((QGraphicsPolygonItem_Adaptor *)cls)->cbs_collidesWithItem_c4977_1 (arg1, arg2)); } @@ -1039,8 +1039,8 @@ static void _call_cbs_collidesWithPath_c4877_1 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape), heap); ret.write ((bool)((QGraphicsPolygonItem_Adaptor *)cls)->cbs_collidesWithPath_c4877_1 (arg1, arg2)); } @@ -1063,7 +1063,7 @@ static void _call_cbs_contains_c1986_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsPolygonItem_Adaptor *)cls)->cbs_contains_c1986_0 (arg1)); } @@ -1086,7 +1086,7 @@ static void _call_cbs_contextMenuEvent_3674_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneContextMenuEvent *arg1 = args.read (heap); + QGraphicsSceneContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPolygonItem_Adaptor *)cls)->cbs_contextMenuEvent_3674_0 (arg1); } @@ -1110,7 +1110,7 @@ static void _call_cbs_dragEnterEvent_3315_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPolygonItem_Adaptor *)cls)->cbs_dragEnterEvent_3315_0 (arg1); } @@ -1134,7 +1134,7 @@ static void _call_cbs_dragLeaveEvent_3315_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPolygonItem_Adaptor *)cls)->cbs_dragLeaveEvent_3315_0 (arg1); } @@ -1158,7 +1158,7 @@ static void _call_cbs_dragMoveEvent_3315_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPolygonItem_Adaptor *)cls)->cbs_dragMoveEvent_3315_0 (arg1); } @@ -1182,7 +1182,7 @@ static void _call_cbs_dropEvent_3315_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPolygonItem_Adaptor *)cls)->cbs_dropEvent_3315_0 (arg1); } @@ -1206,7 +1206,7 @@ static void _call_cbs_extension_c2119_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVariant &arg1 = args.read (heap); + const QVariant &arg1 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QGraphicsPolygonItem_Adaptor *)cls)->cbs_extension_c2119_0 (arg1)); } @@ -1229,7 +1229,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPolygonItem_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1253,7 +1253,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPolygonItem_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -1277,7 +1277,7 @@ static void _call_cbs_hoverEnterEvent_3044_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPolygonItem_Adaptor *)cls)->cbs_hoverEnterEvent_3044_0 (arg1); } @@ -1301,7 +1301,7 @@ static void _call_cbs_hoverLeaveEvent_3044_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPolygonItem_Adaptor *)cls)->cbs_hoverLeaveEvent_3044_0 (arg1); } @@ -1325,7 +1325,7 @@ static void _call_cbs_hoverMoveEvent_3044_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPolygonItem_Adaptor *)cls)->cbs_hoverMoveEvent_3044_0 (arg1); } @@ -1349,7 +1349,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPolygonItem_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -1373,7 +1373,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QGraphicsPolygonItem_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -1396,7 +1396,7 @@ static void _call_cbs_isObscuredBy_c2614_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsPolygonItem_Adaptor *)cls)->cbs_isObscuredBy_c2614_0 (arg1)); } @@ -1421,8 +1421,8 @@ static void _call_cbs_itemChange_5658_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QVariant &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QGraphicsPolygonItem_Adaptor *)cls)->cbs_itemChange_5658_0 (arg1, arg2)); } @@ -1445,7 +1445,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPolygonItem_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -1469,7 +1469,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPolygonItem_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -1493,7 +1493,7 @@ static void _call_cbs_mouseDoubleClickEvent_3049_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPolygonItem_Adaptor *)cls)->cbs_mouseDoubleClickEvent_3049_0 (arg1); } @@ -1517,7 +1517,7 @@ static void _call_cbs_mouseMoveEvent_3049_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPolygonItem_Adaptor *)cls)->cbs_mouseMoveEvent_3049_0 (arg1); } @@ -1541,7 +1541,7 @@ static void _call_cbs_mousePressEvent_3049_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPolygonItem_Adaptor *)cls)->cbs_mousePressEvent_3049_0 (arg1); } @@ -1565,7 +1565,7 @@ static void _call_cbs_mouseReleaseEvent_3049_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPolygonItem_Adaptor *)cls)->cbs_mouseReleaseEvent_3049_0 (arg1); } @@ -1612,9 +1612,9 @@ static void _call_cbs_paint_6301_1 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QStyleOptionGraphicsItem *arg2 = args.read (heap); - QWidget *arg3 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionGraphicsItem *arg2 = gsi::arg_reader() (args, heap); + QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPolygonItem_Adaptor *)cls)->cbs_paint_6301_1 (arg1, arg2, arg3); } @@ -1668,7 +1668,7 @@ static void _call_cbs_sceneEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsPolygonItem_Adaptor *)cls)->cbs_sceneEvent_1217_0 (arg1)); } @@ -1693,8 +1693,8 @@ static void _call_cbs_sceneEventFilter_3028_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsItem *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsPolygonItem_Adaptor *)cls)->cbs_sceneEventFilter_3028_0 (arg1, arg2)); } @@ -1719,8 +1719,8 @@ static void _call_cbs_setExtension_4817_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPolygonItem_Adaptor *)cls)->cbs_setExtension_4817_0 (arg1, arg2); } @@ -1763,7 +1763,7 @@ static void _call_cbs_supportsExtension_c2806_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsPolygonItem_Adaptor *)cls)->cbs_supportsExtension_c2806_0 (arg1)); } @@ -1820,7 +1820,7 @@ static void _call_cbs_wheelEvent_3029_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneWheelEvent *arg1 = args.read (heap); + QGraphicsSceneWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPolygonItem_Adaptor *)cls)->cbs_wheelEvent_3029_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsProxyWidget.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsProxyWidget.cc index 70cf1cf3b..b6de5a741 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsProxyWidget.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsProxyWidget.cc @@ -1535,7 +1535,7 @@ static void _call_cbs_advance_767_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsProxyWidget_Adaptor *)cls)->cbs_advance_767_0 (arg1); } @@ -1578,7 +1578,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsProxyWidget_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1602,7 +1602,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsProxyWidget_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1640,7 +1640,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsProxyWidget_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1666,8 +1666,8 @@ static void _call_cbs_collidesWithItem_c4977_1 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape), heap); ret.write ((bool)((QGraphicsProxyWidget_Adaptor *)cls)->cbs_collidesWithItem_c4977_1 (arg1, arg2)); } @@ -1692,8 +1692,8 @@ static void _call_cbs_collidesWithPath_c4877_1 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape), heap); ret.write ((bool)((QGraphicsProxyWidget_Adaptor *)cls)->cbs_collidesWithPath_c4877_1 (arg1, arg2)); } @@ -1716,7 +1716,7 @@ static void _call_cbs_contains_c1986_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsProxyWidget_Adaptor *)cls)->cbs_contains_c1986_0 (arg1)); } @@ -1739,7 +1739,7 @@ static void _call_cbs_contextMenuEvent_3674_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneContextMenuEvent *arg1 = args.read (heap); + QGraphicsSceneContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsProxyWidget_Adaptor *)cls)->cbs_contextMenuEvent_3674_0 (arg1); } @@ -1763,7 +1763,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsProxyWidget_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1805,7 +1805,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsProxyWidget_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1829,7 +1829,7 @@ static void _call_cbs_dragEnterEvent_3315_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsProxyWidget_Adaptor *)cls)->cbs_dragEnterEvent_3315_0 (arg1); } @@ -1853,7 +1853,7 @@ static void _call_cbs_dragLeaveEvent_3315_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsProxyWidget_Adaptor *)cls)->cbs_dragLeaveEvent_3315_0 (arg1); } @@ -1877,7 +1877,7 @@ static void _call_cbs_dragMoveEvent_3315_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsProxyWidget_Adaptor *)cls)->cbs_dragMoveEvent_3315_0 (arg1); } @@ -1901,7 +1901,7 @@ static void _call_cbs_dropEvent_3315_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsProxyWidget_Adaptor *)cls)->cbs_dropEvent_3315_0 (arg1); } @@ -1939,7 +1939,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsProxyWidget_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1964,8 +1964,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsProxyWidget_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1988,7 +1988,7 @@ static void _call_cbs_extension_c2119_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVariant &arg1 = args.read (heap); + const QVariant &arg1 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QGraphicsProxyWidget_Adaptor *)cls)->cbs_extension_c2119_0 (arg1)); } @@ -2011,7 +2011,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsProxyWidget_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -2035,7 +2035,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsProxyWidget_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -2058,7 +2058,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsProxyWidget_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -2102,10 +2102,10 @@ static void _call_cbs_getContentsMargins_c4704_0 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double *arg1 = args.read (heap); - double *arg2 = args.read (heap); - double *arg3 = args.read (heap); - double *arg4 = args.read (heap); + double *arg1 = gsi::arg_reader() (args, heap); + double *arg2 = gsi::arg_reader() (args, heap); + double *arg3 = gsi::arg_reader() (args, heap); + double *arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsProxyWidget_Adaptor *)cls)->cbs_getContentsMargins_c4704_0 (arg1, arg2, arg3, arg4); } @@ -2129,7 +2129,7 @@ static void _call_cbs_grabKeyboardEvent_1217_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsProxyWidget_Adaptor *)cls)->cbs_grabKeyboardEvent_1217_0 (arg1); } @@ -2153,7 +2153,7 @@ static void _call_cbs_grabMouseEvent_1217_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsProxyWidget_Adaptor *)cls)->cbs_grabMouseEvent_1217_0 (arg1); } @@ -2191,7 +2191,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsProxyWidget_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -2215,7 +2215,7 @@ static void _call_cbs_hoverEnterEvent_3044_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsProxyWidget_Adaptor *)cls)->cbs_hoverEnterEvent_3044_0 (arg1); } @@ -2239,7 +2239,7 @@ static void _call_cbs_hoverLeaveEvent_3044_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsProxyWidget_Adaptor *)cls)->cbs_hoverLeaveEvent_3044_0 (arg1); } @@ -2263,7 +2263,7 @@ static void _call_cbs_hoverMoveEvent_3044_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsProxyWidget_Adaptor *)cls)->cbs_hoverMoveEvent_3044_0 (arg1); } @@ -2287,7 +2287,7 @@ static void _call_cbs_initStyleOption_c1865_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOption *arg1 = args.read (heap); + QStyleOption *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsProxyWidget_Adaptor *)cls)->cbs_initStyleOption_c1865_0 (arg1); } @@ -2311,7 +2311,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsProxyWidget_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2335,7 +2335,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QGraphicsProxyWidget_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2377,7 +2377,7 @@ static void _call_cbs_isObscuredBy_c2614_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsProxyWidget_Adaptor *)cls)->cbs_isObscuredBy_c2614_0 (arg1)); } @@ -2420,8 +2420,8 @@ static void _call_cbs_itemChange_5658_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QVariant &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QGraphicsProxyWidget_Adaptor *)cls)->cbs_itemChange_5658_0 (arg1, arg2)); } @@ -2444,7 +2444,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsProxyWidget_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2468,7 +2468,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsProxyWidget_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2506,7 +2506,7 @@ static void _call_cbs_mouseDoubleClickEvent_3049_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsProxyWidget_Adaptor *)cls)->cbs_mouseDoubleClickEvent_3049_0 (arg1); } @@ -2530,7 +2530,7 @@ static void _call_cbs_mouseMoveEvent_3049_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsProxyWidget_Adaptor *)cls)->cbs_mouseMoveEvent_3049_0 (arg1); } @@ -2554,7 +2554,7 @@ static void _call_cbs_mousePressEvent_3049_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsProxyWidget_Adaptor *)cls)->cbs_mousePressEvent_3049_0 (arg1); } @@ -2578,7 +2578,7 @@ static void _call_cbs_mouseReleaseEvent_3049_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsProxyWidget_Adaptor *)cls)->cbs_mouseReleaseEvent_3049_0 (arg1); } @@ -2602,7 +2602,7 @@ static void _call_cbs_moveEvent_2935_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMoveEvent *arg1 = args.read (heap); + QGraphicsSceneMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsProxyWidget_Adaptor *)cls)->cbs_moveEvent_2935_0 (arg1); } @@ -2699,9 +2699,9 @@ static void _call_cbs_paint_6301_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QStyleOptionGraphicsItem *arg2 = args.read (heap); - QWidget *arg3 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionGraphicsItem *arg2 = gsi::arg_reader() (args, heap); + QWidget *arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsProxyWidget_Adaptor *)cls)->cbs_paint_6301_0 (arg1, arg2, arg3); } @@ -2729,9 +2729,9 @@ static void _call_cbs_paintWindowFrame_6301_1 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QStyleOptionGraphicsItem *arg2 = args.read (heap); - QWidget *arg3 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionGraphicsItem *arg2 = gsi::arg_reader() (args, heap); + QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsProxyWidget_Adaptor *)cls)->cbs_paintWindowFrame_6301_1 (arg1, arg2, arg3); } @@ -2806,8 +2806,8 @@ static void _call_cbs_propertyChange_4036_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QGraphicsProxyWidget_Adaptor *)cls)->cbs_propertyChange_4036_0 (arg1, arg2)); } @@ -2863,7 +2863,7 @@ static void _call_cbs_resizeEvent_3154_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneResizeEvent *arg1 = args.read (heap); + QGraphicsSceneResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsProxyWidget_Adaptor *)cls)->cbs_resizeEvent_3154_0 (arg1); } @@ -2915,7 +2915,7 @@ static void _call_cbs_sceneEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsProxyWidget_Adaptor *)cls)->cbs_sceneEvent_1217_0 (arg1)); } @@ -2940,8 +2940,8 @@ static void _call_cbs_sceneEventFilter_3028_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsItem *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsProxyWidget_Adaptor *)cls)->cbs_sceneEventFilter_3028_0 (arg1, arg2)); } @@ -2994,8 +2994,8 @@ static void _call_cbs_setExtension_4817_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsProxyWidget_Adaptor *)cls)->cbs_setExtension_4817_0 (arg1, arg2); } @@ -3019,7 +3019,7 @@ static void _call_cbs_setGeometry_1862_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsProxyWidget_Adaptor *)cls)->cbs_setGeometry_1862_0 (arg1); } @@ -3100,7 +3100,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsProxyWidget_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -3126,8 +3126,8 @@ static void _call_cbs_sizeHint_c3330_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QSizeF &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QSizeF &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QSizeF(), heap); ret.write ((QSizeF)((QGraphicsProxyWidget_Adaptor *)cls)->cbs_sizeHint_c3330_1 (arg1, arg2)); } @@ -3150,7 +3150,7 @@ static void _call_cbs_supportsExtension_c2806_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsProxyWidget_Adaptor *)cls)->cbs_supportsExtension_c2806_0 (arg1)); } @@ -3173,7 +3173,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsProxyWidget_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -3216,7 +3216,7 @@ static void _call_cbs_ungrabKeyboardEvent_1217_0 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsProxyWidget_Adaptor *)cls)->cbs_ungrabKeyboardEvent_1217_0 (arg1); } @@ -3240,7 +3240,7 @@ static void _call_cbs_ungrabMouseEvent_1217_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsProxyWidget_Adaptor *)cls)->cbs_ungrabMouseEvent_1217_0 (arg1); } @@ -3313,7 +3313,7 @@ static void _call_cbs_wheelEvent_3029_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneWheelEvent *arg1 = args.read (heap); + QGraphicsSceneWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsProxyWidget_Adaptor *)cls)->cbs_wheelEvent_3029_0 (arg1); } @@ -3351,7 +3351,7 @@ static void _call_cbs_windowFrameEvent_1217_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsProxyWidget_Adaptor *)cls)->cbs_windowFrameEvent_1217_0 (arg1)); } @@ -3374,7 +3374,7 @@ static void _call_cbs_windowFrameSectionAt_c1986_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); ret.write::target_type > ((qt_gsi::Converter::target_type)((QGraphicsProxyWidget_Adaptor *)cls)->cbs_windowFrameSectionAt_c1986_0 (arg1)); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsRectItem.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsRectItem.cc index b8b7c29f3..e2817291f 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsRectItem.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsRectItem.cc @@ -1003,7 +1003,7 @@ static void _call_cbs_advance_767_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsRectItem_Adaptor *)cls)->cbs_advance_767_0 (arg1); } @@ -1048,8 +1048,8 @@ static void _call_cbs_collidesWithItem_c4977_1 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape), heap); ret.write ((bool)((QGraphicsRectItem_Adaptor *)cls)->cbs_collidesWithItem_c4977_1 (arg1, arg2)); } @@ -1074,8 +1074,8 @@ static void _call_cbs_collidesWithPath_c4877_1 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape), heap); ret.write ((bool)((QGraphicsRectItem_Adaptor *)cls)->cbs_collidesWithPath_c4877_1 (arg1, arg2)); } @@ -1098,7 +1098,7 @@ static void _call_cbs_contains_c1986_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsRectItem_Adaptor *)cls)->cbs_contains_c1986_0 (arg1)); } @@ -1121,7 +1121,7 @@ static void _call_cbs_contextMenuEvent_3674_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneContextMenuEvent *arg1 = args.read (heap); + QGraphicsSceneContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsRectItem_Adaptor *)cls)->cbs_contextMenuEvent_3674_0 (arg1); } @@ -1145,7 +1145,7 @@ static void _call_cbs_dragEnterEvent_3315_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsRectItem_Adaptor *)cls)->cbs_dragEnterEvent_3315_0 (arg1); } @@ -1169,7 +1169,7 @@ static void _call_cbs_dragLeaveEvent_3315_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsRectItem_Adaptor *)cls)->cbs_dragLeaveEvent_3315_0 (arg1); } @@ -1193,7 +1193,7 @@ static void _call_cbs_dragMoveEvent_3315_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsRectItem_Adaptor *)cls)->cbs_dragMoveEvent_3315_0 (arg1); } @@ -1217,7 +1217,7 @@ static void _call_cbs_dropEvent_3315_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsRectItem_Adaptor *)cls)->cbs_dropEvent_3315_0 (arg1); } @@ -1241,7 +1241,7 @@ static void _call_cbs_extension_c2119_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVariant &arg1 = args.read (heap); + const QVariant &arg1 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QGraphicsRectItem_Adaptor *)cls)->cbs_extension_c2119_0 (arg1)); } @@ -1264,7 +1264,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsRectItem_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1288,7 +1288,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsRectItem_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -1312,7 +1312,7 @@ static void _call_cbs_hoverEnterEvent_3044_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsRectItem_Adaptor *)cls)->cbs_hoverEnterEvent_3044_0 (arg1); } @@ -1336,7 +1336,7 @@ static void _call_cbs_hoverLeaveEvent_3044_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsRectItem_Adaptor *)cls)->cbs_hoverLeaveEvent_3044_0 (arg1); } @@ -1360,7 +1360,7 @@ static void _call_cbs_hoverMoveEvent_3044_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsRectItem_Adaptor *)cls)->cbs_hoverMoveEvent_3044_0 (arg1); } @@ -1384,7 +1384,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsRectItem_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -1408,7 +1408,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QGraphicsRectItem_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -1431,7 +1431,7 @@ static void _call_cbs_isObscuredBy_c2614_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsRectItem_Adaptor *)cls)->cbs_isObscuredBy_c2614_0 (arg1)); } @@ -1456,8 +1456,8 @@ static void _call_cbs_itemChange_5658_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QVariant &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QGraphicsRectItem_Adaptor *)cls)->cbs_itemChange_5658_0 (arg1, arg2)); } @@ -1480,7 +1480,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsRectItem_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -1504,7 +1504,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsRectItem_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -1528,7 +1528,7 @@ static void _call_cbs_mouseDoubleClickEvent_3049_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsRectItem_Adaptor *)cls)->cbs_mouseDoubleClickEvent_3049_0 (arg1); } @@ -1552,7 +1552,7 @@ static void _call_cbs_mouseMoveEvent_3049_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsRectItem_Adaptor *)cls)->cbs_mouseMoveEvent_3049_0 (arg1); } @@ -1576,7 +1576,7 @@ static void _call_cbs_mousePressEvent_3049_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsRectItem_Adaptor *)cls)->cbs_mousePressEvent_3049_0 (arg1); } @@ -1600,7 +1600,7 @@ static void _call_cbs_mouseReleaseEvent_3049_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsRectItem_Adaptor *)cls)->cbs_mouseReleaseEvent_3049_0 (arg1); } @@ -1647,9 +1647,9 @@ static void _call_cbs_paint_6301_1 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QStyleOptionGraphicsItem *arg2 = args.read (heap); - QWidget *arg3 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionGraphicsItem *arg2 = gsi::arg_reader() (args, heap); + QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsRectItem_Adaptor *)cls)->cbs_paint_6301_1 (arg1, arg2, arg3); } @@ -1703,7 +1703,7 @@ static void _call_cbs_sceneEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsRectItem_Adaptor *)cls)->cbs_sceneEvent_1217_0 (arg1)); } @@ -1728,8 +1728,8 @@ static void _call_cbs_sceneEventFilter_3028_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsItem *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsRectItem_Adaptor *)cls)->cbs_sceneEventFilter_3028_0 (arg1, arg2)); } @@ -1754,8 +1754,8 @@ static void _call_cbs_setExtension_4817_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsRectItem_Adaptor *)cls)->cbs_setExtension_4817_0 (arg1, arg2); } @@ -1798,7 +1798,7 @@ static void _call_cbs_supportsExtension_c2806_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsRectItem_Adaptor *)cls)->cbs_supportsExtension_c2806_0 (arg1)); } @@ -1855,7 +1855,7 @@ static void _call_cbs_wheelEvent_3029_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneWheelEvent *arg1 = args.read (heap); + QGraphicsSceneWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsRectItem_Adaptor *)cls)->cbs_wheelEvent_3029_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsRotation.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsRotation.cc index f52b1170c..389c2ac44 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsRotation.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsRotation.cc @@ -495,7 +495,7 @@ static void _call_cbs_applyTo_c1556_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMatrix4x4 *arg1 = args.read (heap); + QMatrix4x4 *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsRotation_Adaptor *)cls)->cbs_applyTo_c1556_0 (arg1); } @@ -533,7 +533,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsRotation_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -557,7 +557,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsRotation_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -599,7 +599,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsRotation_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -623,7 +623,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsRotation_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -648,8 +648,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsRotation_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -768,7 +768,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsRotation_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsScale.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsScale.cc index 1e25c0f68..0af920a4f 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsScale.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsScale.cc @@ -511,7 +511,7 @@ static void _call_cbs_applyTo_c1556_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMatrix4x4 *arg1 = args.read (heap); + QMatrix4x4 *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScale_Adaptor *)cls)->cbs_applyTo_c1556_0 (arg1); } @@ -535,7 +535,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScale_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -559,7 +559,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScale_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -601,7 +601,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScale_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -625,7 +625,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsScale_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -650,8 +650,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsScale_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -784,7 +784,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScale_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsScene.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsScene.cc index 0bd4dedd2..2d5b8b282 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsScene.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsScene.cc @@ -2405,7 +2405,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScene_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -2429,7 +2429,7 @@ static void _call_cbs_contextMenuEvent_3674_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneContextMenuEvent *arg1 = args.read (heap); + QGraphicsSceneContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScene_Adaptor *)cls)->cbs_contextMenuEvent_3674_0 (arg1); } @@ -2453,7 +2453,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScene_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -2495,7 +2495,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScene_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -2519,7 +2519,7 @@ static void _call_cbs_dragEnterEvent_3315_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScene_Adaptor *)cls)->cbs_dragEnterEvent_3315_0 (arg1); } @@ -2543,7 +2543,7 @@ static void _call_cbs_dragLeaveEvent_3315_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScene_Adaptor *)cls)->cbs_dragLeaveEvent_3315_0 (arg1); } @@ -2567,7 +2567,7 @@ static void _call_cbs_dragMoveEvent_3315_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScene_Adaptor *)cls)->cbs_dragMoveEvent_3315_0 (arg1); } @@ -2593,8 +2593,8 @@ static void _call_cbs_drawBackground_3180_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QRectF &arg2 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QRectF &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScene_Adaptor *)cls)->cbs_drawBackground_3180_0 (arg1, arg2); } @@ -2620,8 +2620,8 @@ static void _call_cbs_drawForeground_3180_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QRectF &arg2 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QRectF &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScene_Adaptor *)cls)->cbs_drawForeground_3180_0 (arg1, arg2); } @@ -2645,7 +2645,7 @@ static void _call_cbs_dropEvent_3315_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScene_Adaptor *)cls)->cbs_dropEvent_3315_0 (arg1); } @@ -2669,7 +2669,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsScene_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -2694,8 +2694,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsScene_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -2718,7 +2718,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScene_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -2766,7 +2766,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsScene_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -2789,7 +2789,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScene_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -2813,7 +2813,7 @@ static void _call_cbs_helpEvent_2921_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHelpEvent *arg1 = args.read (heap); + QGraphicsSceneHelpEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScene_Adaptor *)cls)->cbs_helpEvent_2921_0 (arg1); } @@ -2837,7 +2837,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScene_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2861,7 +2861,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QGraphicsScene_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2902,7 +2902,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScene_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2926,7 +2926,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScene_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2950,7 +2950,7 @@ static void _call_cbs_mouseDoubleClickEvent_3049_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScene_Adaptor *)cls)->cbs_mouseDoubleClickEvent_3049_0 (arg1); } @@ -2974,7 +2974,7 @@ static void _call_cbs_mouseMoveEvent_3049_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScene_Adaptor *)cls)->cbs_mouseMoveEvent_3049_0 (arg1); } @@ -2998,7 +2998,7 @@ static void _call_cbs_mousePressEvent_3049_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScene_Adaptor *)cls)->cbs_mousePressEvent_3049_0 (arg1); } @@ -3022,7 +3022,7 @@ static void _call_cbs_mouseReleaseEvent_3049_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScene_Adaptor *)cls)->cbs_mouseReleaseEvent_3049_0 (arg1); } @@ -3142,7 +3142,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScene_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -3166,7 +3166,7 @@ static void _call_cbs_wheelEvent_3029_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneWheelEvent *arg1 = args.read (heap); + QGraphicsSceneWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScene_Adaptor *)cls)->cbs_wheelEvent_3029_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsSceneContextMenuEvent.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsSceneContextMenuEvent.cc index d60cffbf3..cb013772c 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsSceneContextMenuEvent.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsSceneContextMenuEvent.cc @@ -347,7 +347,7 @@ static void _call_cbs_setAccepted_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSceneContextMenuEvent_Adaptor *)cls)->cbs_setAccepted_864_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsSceneDragDropEvent.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsSceneDragDropEvent.cc index ff834959a..1e564c4dc 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsSceneDragDropEvent.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsSceneDragDropEvent.cc @@ -550,7 +550,7 @@ static void _call_cbs_setAccepted_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSceneDragDropEvent_Adaptor *)cls)->cbs_setAccepted_864_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsSceneEvent.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsSceneEvent.cc index f5d1b0dbb..efdf1f2ee 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsSceneEvent.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsSceneEvent.cc @@ -228,7 +228,7 @@ static void _call_cbs_setAccepted_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSceneEvent_Adaptor *)cls)->cbs_setAccepted_864_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsSceneHelpEvent.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsSceneHelpEvent.cc index 7455af919..39dd6e2d5 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsSceneHelpEvent.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsSceneHelpEvent.cc @@ -236,7 +236,7 @@ static void _call_cbs_setAccepted_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSceneHelpEvent_Adaptor *)cls)->cbs_setAccepted_864_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsSceneHoverEvent.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsSceneHoverEvent.cc index 1e17cc0b6..4f3524dcf 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsSceneHoverEvent.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsSceneHoverEvent.cc @@ -421,7 +421,7 @@ static void _call_cbs_setAccepted_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSceneHoverEvent_Adaptor *)cls)->cbs_setAccepted_864_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsSceneMouseEvent.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsSceneMouseEvent.cc index 8989175cc..92a72f661 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsSceneMouseEvent.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsSceneMouseEvent.cc @@ -701,7 +701,7 @@ static void _call_cbs_setAccepted_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSceneMouseEvent_Adaptor *)cls)->cbs_setAccepted_864_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsSceneMoveEvent.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsSceneMoveEvent.cc index d1c0cff0f..17c86fccf 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsSceneMoveEvent.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsSceneMoveEvent.cc @@ -225,7 +225,7 @@ static void _call_cbs_setAccepted_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSceneMoveEvent_Adaptor *)cls)->cbs_setAccepted_864_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsSceneResizeEvent.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsSceneResizeEvent.cc index 923cfa486..9b1d6d1bb 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsSceneResizeEvent.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsSceneResizeEvent.cc @@ -225,7 +225,7 @@ static void _call_cbs_setAccepted_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSceneResizeEvent_Adaptor *)cls)->cbs_setAccepted_864_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsSceneWheelEvent.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsSceneWheelEvent.cc index 3be0120c3..8d176a7df 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsSceneWheelEvent.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsSceneWheelEvent.cc @@ -532,7 +532,7 @@ static void _call_cbs_setAccepted_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSceneWheelEvent_Adaptor *)cls)->cbs_setAccepted_864_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsSimpleTextItem.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsSimpleTextItem.cc index 8835717a5..b31a6d0e7 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsSimpleTextItem.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsSimpleTextItem.cc @@ -969,7 +969,7 @@ static void _call_cbs_advance_767_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSimpleTextItem_Adaptor *)cls)->cbs_advance_767_0 (arg1); } @@ -1014,8 +1014,8 @@ static void _call_cbs_collidesWithItem_c4977_1 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape), heap); ret.write ((bool)((QGraphicsSimpleTextItem_Adaptor *)cls)->cbs_collidesWithItem_c4977_1 (arg1, arg2)); } @@ -1040,8 +1040,8 @@ static void _call_cbs_collidesWithPath_c4877_1 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape), heap); ret.write ((bool)((QGraphicsSimpleTextItem_Adaptor *)cls)->cbs_collidesWithPath_c4877_1 (arg1, arg2)); } @@ -1064,7 +1064,7 @@ static void _call_cbs_contains_c1986_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsSimpleTextItem_Adaptor *)cls)->cbs_contains_c1986_0 (arg1)); } @@ -1087,7 +1087,7 @@ static void _call_cbs_contextMenuEvent_3674_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneContextMenuEvent *arg1 = args.read (heap); + QGraphicsSceneContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSimpleTextItem_Adaptor *)cls)->cbs_contextMenuEvent_3674_0 (arg1); } @@ -1111,7 +1111,7 @@ static void _call_cbs_dragEnterEvent_3315_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSimpleTextItem_Adaptor *)cls)->cbs_dragEnterEvent_3315_0 (arg1); } @@ -1135,7 +1135,7 @@ static void _call_cbs_dragLeaveEvent_3315_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSimpleTextItem_Adaptor *)cls)->cbs_dragLeaveEvent_3315_0 (arg1); } @@ -1159,7 +1159,7 @@ static void _call_cbs_dragMoveEvent_3315_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSimpleTextItem_Adaptor *)cls)->cbs_dragMoveEvent_3315_0 (arg1); } @@ -1183,7 +1183,7 @@ static void _call_cbs_dropEvent_3315_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSimpleTextItem_Adaptor *)cls)->cbs_dropEvent_3315_0 (arg1); } @@ -1207,7 +1207,7 @@ static void _call_cbs_extension_c2119_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVariant &arg1 = args.read (heap); + const QVariant &arg1 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QGraphicsSimpleTextItem_Adaptor *)cls)->cbs_extension_c2119_0 (arg1)); } @@ -1230,7 +1230,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSimpleTextItem_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1254,7 +1254,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSimpleTextItem_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -1278,7 +1278,7 @@ static void _call_cbs_hoverEnterEvent_3044_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSimpleTextItem_Adaptor *)cls)->cbs_hoverEnterEvent_3044_0 (arg1); } @@ -1302,7 +1302,7 @@ static void _call_cbs_hoverLeaveEvent_3044_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSimpleTextItem_Adaptor *)cls)->cbs_hoverLeaveEvent_3044_0 (arg1); } @@ -1326,7 +1326,7 @@ static void _call_cbs_hoverMoveEvent_3044_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSimpleTextItem_Adaptor *)cls)->cbs_hoverMoveEvent_3044_0 (arg1); } @@ -1350,7 +1350,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSimpleTextItem_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -1374,7 +1374,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QGraphicsSimpleTextItem_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -1397,7 +1397,7 @@ static void _call_cbs_isObscuredBy_c2614_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsSimpleTextItem_Adaptor *)cls)->cbs_isObscuredBy_c2614_0 (arg1)); } @@ -1422,8 +1422,8 @@ static void _call_cbs_itemChange_5658_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QVariant &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QGraphicsSimpleTextItem_Adaptor *)cls)->cbs_itemChange_5658_0 (arg1, arg2)); } @@ -1446,7 +1446,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSimpleTextItem_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -1470,7 +1470,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSimpleTextItem_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -1494,7 +1494,7 @@ static void _call_cbs_mouseDoubleClickEvent_3049_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSimpleTextItem_Adaptor *)cls)->cbs_mouseDoubleClickEvent_3049_0 (arg1); } @@ -1518,7 +1518,7 @@ static void _call_cbs_mouseMoveEvent_3049_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSimpleTextItem_Adaptor *)cls)->cbs_mouseMoveEvent_3049_0 (arg1); } @@ -1542,7 +1542,7 @@ static void _call_cbs_mousePressEvent_3049_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSimpleTextItem_Adaptor *)cls)->cbs_mousePressEvent_3049_0 (arg1); } @@ -1566,7 +1566,7 @@ static void _call_cbs_mouseReleaseEvent_3049_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSimpleTextItem_Adaptor *)cls)->cbs_mouseReleaseEvent_3049_0 (arg1); } @@ -1613,9 +1613,9 @@ static void _call_cbs_paint_6301_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QStyleOptionGraphicsItem *arg2 = args.read (heap); - QWidget *arg3 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionGraphicsItem *arg2 = gsi::arg_reader() (args, heap); + QWidget *arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSimpleTextItem_Adaptor *)cls)->cbs_paint_6301_0 (arg1, arg2, arg3); } @@ -1669,7 +1669,7 @@ static void _call_cbs_sceneEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsSimpleTextItem_Adaptor *)cls)->cbs_sceneEvent_1217_0 (arg1)); } @@ -1694,8 +1694,8 @@ static void _call_cbs_sceneEventFilter_3028_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsItem *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsSimpleTextItem_Adaptor *)cls)->cbs_sceneEventFilter_3028_0 (arg1, arg2)); } @@ -1720,8 +1720,8 @@ static void _call_cbs_setExtension_4817_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSimpleTextItem_Adaptor *)cls)->cbs_setExtension_4817_0 (arg1, arg2); } @@ -1764,7 +1764,7 @@ static void _call_cbs_supportsExtension_c2806_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsSimpleTextItem_Adaptor *)cls)->cbs_supportsExtension_c2806_0 (arg1)); } @@ -1821,7 +1821,7 @@ static void _call_cbs_wheelEvent_3029_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneWheelEvent *arg1 = args.read (heap); + QGraphicsSceneWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSimpleTextItem_Adaptor *)cls)->cbs_wheelEvent_3029_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsTextItem.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsTextItem.cc index d7eaefbb9..da50f3e67 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsTextItem.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsTextItem.cc @@ -1557,7 +1557,7 @@ static void _call_cbs_advance_767_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsTextItem_Adaptor *)cls)->cbs_advance_767_0 (arg1); } @@ -1600,7 +1600,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsTextItem_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1640,8 +1640,8 @@ static void _call_cbs_collidesWithItem_c4977_1 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape), heap); ret.write ((bool)((QGraphicsTextItem_Adaptor *)cls)->cbs_collidesWithItem_c4977_1 (arg1, arg2)); } @@ -1666,8 +1666,8 @@ static void _call_cbs_collidesWithPath_c4877_1 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape), heap); ret.write ((bool)((QGraphicsTextItem_Adaptor *)cls)->cbs_collidesWithPath_c4877_1 (arg1, arg2)); } @@ -1690,7 +1690,7 @@ static void _call_cbs_contains_c1986_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsTextItem_Adaptor *)cls)->cbs_contains_c1986_0 (arg1)); } @@ -1713,7 +1713,7 @@ static void _call_cbs_contextMenuEvent_3674_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneContextMenuEvent *arg1 = args.read (heap); + QGraphicsSceneContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsTextItem_Adaptor *)cls)->cbs_contextMenuEvent_3674_0 (arg1); } @@ -1737,7 +1737,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsTextItem_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1779,7 +1779,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsTextItem_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1803,7 +1803,7 @@ static void _call_cbs_dragEnterEvent_3315_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsTextItem_Adaptor *)cls)->cbs_dragEnterEvent_3315_0 (arg1); } @@ -1827,7 +1827,7 @@ static void _call_cbs_dragLeaveEvent_3315_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsTextItem_Adaptor *)cls)->cbs_dragLeaveEvent_3315_0 (arg1); } @@ -1851,7 +1851,7 @@ static void _call_cbs_dragMoveEvent_3315_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsTextItem_Adaptor *)cls)->cbs_dragMoveEvent_3315_0 (arg1); } @@ -1875,7 +1875,7 @@ static void _call_cbs_dropEvent_3315_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsTextItem_Adaptor *)cls)->cbs_dropEvent_3315_0 (arg1); } @@ -1913,7 +1913,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsTextItem_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1938,8 +1938,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsTextItem_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1962,7 +1962,7 @@ static void _call_cbs_extension_c2119_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVariant &arg1 = args.read (heap); + const QVariant &arg1 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QGraphicsTextItem_Adaptor *)cls)->cbs_extension_c2119_0 (arg1)); } @@ -1985,7 +1985,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsTextItem_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -2009,7 +2009,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsTextItem_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -2047,7 +2047,7 @@ static void _call_cbs_hoverEnterEvent_3044_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsTextItem_Adaptor *)cls)->cbs_hoverEnterEvent_3044_0 (arg1); } @@ -2071,7 +2071,7 @@ static void _call_cbs_hoverLeaveEvent_3044_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsTextItem_Adaptor *)cls)->cbs_hoverLeaveEvent_3044_0 (arg1); } @@ -2095,7 +2095,7 @@ static void _call_cbs_hoverMoveEvent_3044_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsTextItem_Adaptor *)cls)->cbs_hoverMoveEvent_3044_0 (arg1); } @@ -2119,7 +2119,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsTextItem_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2143,7 +2143,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QGraphicsTextItem_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2166,7 +2166,7 @@ static void _call_cbs_isObscuredBy_c2614_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsTextItem_Adaptor *)cls)->cbs_isObscuredBy_c2614_0 (arg1)); } @@ -2209,8 +2209,8 @@ static void _call_cbs_itemChange_5658_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QVariant &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QGraphicsTextItem_Adaptor *)cls)->cbs_itemChange_5658_0 (arg1, arg2)); } @@ -2233,7 +2233,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsTextItem_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2257,7 +2257,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsTextItem_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2317,7 +2317,7 @@ static void _call_cbs_mouseDoubleClickEvent_3049_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsTextItem_Adaptor *)cls)->cbs_mouseDoubleClickEvent_3049_0 (arg1); } @@ -2341,7 +2341,7 @@ static void _call_cbs_mouseMoveEvent_3049_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsTextItem_Adaptor *)cls)->cbs_mouseMoveEvent_3049_0 (arg1); } @@ -2365,7 +2365,7 @@ static void _call_cbs_mousePressEvent_3049_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsTextItem_Adaptor *)cls)->cbs_mousePressEvent_3049_0 (arg1); } @@ -2389,7 +2389,7 @@ static void _call_cbs_mouseReleaseEvent_3049_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsTextItem_Adaptor *)cls)->cbs_mouseReleaseEvent_3049_0 (arg1); } @@ -2468,9 +2468,9 @@ static void _call_cbs_paint_6301_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QStyleOptionGraphicsItem *arg2 = args.read (heap); - QWidget *arg3 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionGraphicsItem *arg2 = gsi::arg_reader() (args, heap); + QWidget *arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsTextItem_Adaptor *)cls)->cbs_paint_6301_0 (arg1, arg2, arg3); } @@ -2584,7 +2584,7 @@ static void _call_cbs_sceneEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsTextItem_Adaptor *)cls)->cbs_sceneEvent_1217_0 (arg1)); } @@ -2609,8 +2609,8 @@ static void _call_cbs_sceneEventFilter_3028_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsItem *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsTextItem_Adaptor *)cls)->cbs_sceneEventFilter_3028_0 (arg1, arg2)); } @@ -2663,8 +2663,8 @@ static void _call_cbs_setExtension_4817_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsTextItem_Adaptor *)cls)->cbs_setExtension_4817_0 (arg1, arg2); } @@ -2707,7 +2707,7 @@ static void _call_cbs_supportsExtension_c2806_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsTextItem_Adaptor *)cls)->cbs_supportsExtension_c2806_0 (arg1)); } @@ -2730,7 +2730,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsTextItem_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2802,7 +2802,7 @@ static void _call_cbs_wheelEvent_3029_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneWheelEvent *arg1 = args.read (heap); + QGraphicsSceneWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsTextItem_Adaptor *)cls)->cbs_wheelEvent_3029_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsTransform.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsTransform.cc index 7411546ff..283a689ab 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsTransform.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsTransform.cc @@ -328,7 +328,7 @@ static void _call_cbs_applyTo_c1556_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMatrix4x4 *arg1 = args.read (heap); + QMatrix4x4 *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsTransform_Adaptor *)cls)->cbs_applyTo_c1556_0 (arg1); } @@ -352,7 +352,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsTransform_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -376,7 +376,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsTransform_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -418,7 +418,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsTransform_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -442,7 +442,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsTransform_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -467,8 +467,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsTransform_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -573,7 +573,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsTransform_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsView.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsView.cc index 64779180c..3ae1d50b7 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsView.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsView.cc @@ -2838,7 +2838,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -2862,7 +2862,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -2886,7 +2886,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -2910,7 +2910,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -2934,7 +2934,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -3001,7 +3001,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -3065,7 +3065,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -3089,7 +3089,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -3113,7 +3113,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -3137,7 +3137,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -3163,8 +3163,8 @@ static void _call_cbs_drawBackground_3180_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QRectF &arg2 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QRectF &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView_Adaptor *)cls)->cbs_drawBackground_3180_0 (arg1, arg2); } @@ -3190,8 +3190,8 @@ static void _call_cbs_drawForeground_3180_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QRectF &arg2 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QRectF &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView_Adaptor *)cls)->cbs_drawForeground_3180_0 (arg1, arg2); } @@ -3234,7 +3234,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -3258,7 +3258,7 @@ static void _call_cbs_enterEvent_1727_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEnterEvent *arg1 = args.read (heap); + QEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView_Adaptor *)cls)->cbs_enterEvent_1727_0 (arg1); } @@ -3282,7 +3282,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsView_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -3307,8 +3307,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsView_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -3331,7 +3331,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -3369,7 +3369,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsView_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -3392,7 +3392,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -3449,7 +3449,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QGraphicsView_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -3472,7 +3472,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -3496,7 +3496,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -3520,7 +3520,7 @@ static void _call_cbs_initStyleOption_c2356_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionFrame *arg1 = args.read (heap); + QStyleOptionFrame *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView_Adaptor *)cls)->cbs_initStyleOption_c2356_0 (arg1); } @@ -3544,7 +3544,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -3568,7 +3568,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QGraphicsView_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -3609,7 +3609,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -3633,7 +3633,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -3657,7 +3657,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -3681,7 +3681,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QGraphicsView_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -3723,7 +3723,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -3747,7 +3747,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -3771,7 +3771,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -3795,7 +3795,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -3819,7 +3819,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -3847,9 +3847,9 @@ static void _call_cbs_nativeEvent_6949_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - QIntegerForSizeof::Signed *arg3 = args.read::Signed * > (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + QIntegerForSizeof::Signed *arg3 = gsi::arg_reader::Signed * >() (args, heap); ret.write ((bool)((QGraphicsView_Adaptor *)cls)->cbs_nativeEvent_6949_0 (arg1, arg2, arg3)); } @@ -3909,7 +3909,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -3951,7 +3951,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QGraphicsView_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -3974,7 +3974,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -4024,8 +4024,8 @@ static void _call_cbs_scrollContentsBy_1426_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView_Adaptor *)cls)->cbs_scrollContentsBy_1426_0 (arg1, arg2); } @@ -4124,7 +4124,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -4148,7 +4148,7 @@ static void _call_cbs_setupViewport_1315_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView_Adaptor *)cls)->cbs_setupViewport_1315_0 (arg1); } @@ -4191,7 +4191,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -4234,7 +4234,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -4258,7 +4258,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -4301,7 +4301,7 @@ static void _call_cbs_viewportEvent_1217_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsView_Adaptor *)cls)->cbs_viewportEvent_1217_0 (arg1)); } @@ -4357,7 +4357,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsWidget.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsWidget.cc index 33d2be96e..886b81a95 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsWidget.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQGraphicsWidget.cc @@ -2618,7 +2618,7 @@ static void _call_cbs_advance_767_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget_Adaptor *)cls)->cbs_advance_767_0 (arg1); } @@ -2661,7 +2661,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -2685,7 +2685,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -2723,7 +2723,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -2749,8 +2749,8 @@ static void _call_cbs_collidesWithItem_c4977_1 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape), heap); ret.write ((bool)((QGraphicsWidget_Adaptor *)cls)->cbs_collidesWithItem_c4977_1 (arg1, arg2)); } @@ -2775,8 +2775,8 @@ static void _call_cbs_collidesWithPath_c4877_1 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape), heap); ret.write ((bool)((QGraphicsWidget_Adaptor *)cls)->cbs_collidesWithPath_c4877_1 (arg1, arg2)); } @@ -2799,7 +2799,7 @@ static void _call_cbs_contains_c1986_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsWidget_Adaptor *)cls)->cbs_contains_c1986_0 (arg1)); } @@ -2822,7 +2822,7 @@ static void _call_cbs_contextMenuEvent_3674_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneContextMenuEvent *arg1 = args.read (heap); + QGraphicsSceneContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget_Adaptor *)cls)->cbs_contextMenuEvent_3674_0 (arg1); } @@ -2846,7 +2846,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -2888,7 +2888,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -2912,7 +2912,7 @@ static void _call_cbs_dragEnterEvent_3315_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget_Adaptor *)cls)->cbs_dragEnterEvent_3315_0 (arg1); } @@ -2936,7 +2936,7 @@ static void _call_cbs_dragLeaveEvent_3315_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget_Adaptor *)cls)->cbs_dragLeaveEvent_3315_0 (arg1); } @@ -2960,7 +2960,7 @@ static void _call_cbs_dragMoveEvent_3315_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget_Adaptor *)cls)->cbs_dragMoveEvent_3315_0 (arg1); } @@ -2984,7 +2984,7 @@ static void _call_cbs_dropEvent_3315_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneDragDropEvent *arg1 = args.read (heap); + QGraphicsSceneDragDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget_Adaptor *)cls)->cbs_dropEvent_3315_0 (arg1); } @@ -3022,7 +3022,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsWidget_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -3047,8 +3047,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsWidget_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -3071,7 +3071,7 @@ static void _call_cbs_extension_c2119_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVariant &arg1 = args.read (heap); + const QVariant &arg1 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QGraphicsWidget_Adaptor *)cls)->cbs_extension_c2119_0 (arg1)); } @@ -3094,7 +3094,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -3118,7 +3118,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsWidget_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -3141,7 +3141,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -3185,10 +3185,10 @@ static void _call_cbs_getContentsMargins_c4704_0 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double *arg1 = args.read (heap); - double *arg2 = args.read (heap); - double *arg3 = args.read (heap); - double *arg4 = args.read (heap); + double *arg1 = gsi::arg_reader() (args, heap); + double *arg2 = gsi::arg_reader() (args, heap); + double *arg3 = gsi::arg_reader() (args, heap); + double *arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget_Adaptor *)cls)->cbs_getContentsMargins_c4704_0 (arg1, arg2, arg3, arg4); } @@ -3212,7 +3212,7 @@ static void _call_cbs_grabKeyboardEvent_1217_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget_Adaptor *)cls)->cbs_grabKeyboardEvent_1217_0 (arg1); } @@ -3236,7 +3236,7 @@ static void _call_cbs_grabMouseEvent_1217_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget_Adaptor *)cls)->cbs_grabMouseEvent_1217_0 (arg1); } @@ -3274,7 +3274,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -3298,7 +3298,7 @@ static void _call_cbs_hoverEnterEvent_3044_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget_Adaptor *)cls)->cbs_hoverEnterEvent_3044_0 (arg1); } @@ -3322,7 +3322,7 @@ static void _call_cbs_hoverLeaveEvent_3044_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget_Adaptor *)cls)->cbs_hoverLeaveEvent_3044_0 (arg1); } @@ -3346,7 +3346,7 @@ static void _call_cbs_hoverMoveEvent_3044_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneHoverEvent *arg1 = args.read (heap); + QGraphicsSceneHoverEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget_Adaptor *)cls)->cbs_hoverMoveEvent_3044_0 (arg1); } @@ -3370,7 +3370,7 @@ static void _call_cbs_initStyleOption_c1865_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOption *arg1 = args.read (heap); + QStyleOption *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget_Adaptor *)cls)->cbs_initStyleOption_c1865_0 (arg1); } @@ -3394,7 +3394,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -3418,7 +3418,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QGraphicsWidget_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -3460,7 +3460,7 @@ static void _call_cbs_isObscuredBy_c2614_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsWidget_Adaptor *)cls)->cbs_isObscuredBy_c2614_0 (arg1)); } @@ -3503,8 +3503,8 @@ static void _call_cbs_itemChange_5658_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QVariant &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QGraphicsWidget_Adaptor *)cls)->cbs_itemChange_5658_0 (arg1, arg2)); } @@ -3527,7 +3527,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -3551,7 +3551,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -3589,7 +3589,7 @@ static void _call_cbs_mouseDoubleClickEvent_3049_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget_Adaptor *)cls)->cbs_mouseDoubleClickEvent_3049_0 (arg1); } @@ -3613,7 +3613,7 @@ static void _call_cbs_mouseMoveEvent_3049_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget_Adaptor *)cls)->cbs_mouseMoveEvent_3049_0 (arg1); } @@ -3637,7 +3637,7 @@ static void _call_cbs_mousePressEvent_3049_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget_Adaptor *)cls)->cbs_mousePressEvent_3049_0 (arg1); } @@ -3661,7 +3661,7 @@ static void _call_cbs_mouseReleaseEvent_3049_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMouseEvent *arg1 = args.read (heap); + QGraphicsSceneMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget_Adaptor *)cls)->cbs_mouseReleaseEvent_3049_0 (arg1); } @@ -3685,7 +3685,7 @@ static void _call_cbs_moveEvent_2935_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneMoveEvent *arg1 = args.read (heap); + QGraphicsSceneMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget_Adaptor *)cls)->cbs_moveEvent_2935_0 (arg1); } @@ -3764,9 +3764,9 @@ static void _call_cbs_paint_6301_1 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QStyleOptionGraphicsItem *arg2 = args.read (heap); - QWidget *arg3 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionGraphicsItem *arg2 = gsi::arg_reader() (args, heap); + QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget_Adaptor *)cls)->cbs_paint_6301_1 (arg1, arg2, arg3); } @@ -3794,9 +3794,9 @@ static void _call_cbs_paintWindowFrame_6301_1 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QStyleOptionGraphicsItem *arg2 = args.read (heap); - QWidget *arg3 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionGraphicsItem *arg2 = gsi::arg_reader() (args, heap); + QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget_Adaptor *)cls)->cbs_paintWindowFrame_6301_1 (arg1, arg2, arg3); } @@ -3871,8 +3871,8 @@ static void _call_cbs_propertyChange_4036_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QGraphicsWidget_Adaptor *)cls)->cbs_propertyChange_4036_0 (arg1, arg2)); } @@ -3928,7 +3928,7 @@ static void _call_cbs_resizeEvent_3154_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneResizeEvent *arg1 = args.read (heap); + QGraphicsSceneResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget_Adaptor *)cls)->cbs_resizeEvent_3154_0 (arg1); } @@ -3980,7 +3980,7 @@ static void _call_cbs_sceneEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsWidget_Adaptor *)cls)->cbs_sceneEvent_1217_0 (arg1)); } @@ -4005,8 +4005,8 @@ static void _call_cbs_sceneEventFilter_3028_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsItem *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsWidget_Adaptor *)cls)->cbs_sceneEventFilter_3028_0 (arg1, arg2)); } @@ -4059,8 +4059,8 @@ static void _call_cbs_setExtension_4817_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget_Adaptor *)cls)->cbs_setExtension_4817_0 (arg1, arg2); } @@ -4084,7 +4084,7 @@ static void _call_cbs_setGeometry_1862_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget_Adaptor *)cls)->cbs_setGeometry_1862_0 (arg1); } @@ -4165,7 +4165,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -4191,8 +4191,8 @@ static void _call_cbs_sizeHint_c3330_1 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QSizeF &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QSizeF &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QSizeF(), heap); ret.write ((QSizeF)((QGraphicsWidget_Adaptor *)cls)->cbs_sizeHint_c3330_1 (arg1, arg2)); } @@ -4215,7 +4215,7 @@ static void _call_cbs_supportsExtension_c2806_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsWidget_Adaptor *)cls)->cbs_supportsExtension_c2806_0 (arg1)); } @@ -4238,7 +4238,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -4281,7 +4281,7 @@ static void _call_cbs_ungrabKeyboardEvent_1217_0 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget_Adaptor *)cls)->cbs_ungrabKeyboardEvent_1217_0 (arg1); } @@ -4305,7 +4305,7 @@ static void _call_cbs_ungrabMouseEvent_1217_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget_Adaptor *)cls)->cbs_ungrabMouseEvent_1217_0 (arg1); } @@ -4378,7 +4378,7 @@ static void _call_cbs_wheelEvent_3029_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsSceneWheelEvent *arg1 = args.read (heap); + QGraphicsSceneWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget_Adaptor *)cls)->cbs_wheelEvent_3029_0 (arg1); } @@ -4416,7 +4416,7 @@ static void _call_cbs_windowFrameEvent_1217_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsWidget_Adaptor *)cls)->cbs_windowFrameEvent_1217_0 (arg1)); } @@ -4439,7 +4439,7 @@ static void _call_cbs_windowFrameSectionAt_c1986_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); ret.write::target_type > ((qt_gsi::Converter::target_type)((QGraphicsWidget_Adaptor *)cls)->cbs_windowFrameSectionAt_c1986_0 (arg1)); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQGridLayout.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQGridLayout.cc index cde45ee1b..22f870c17 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQGridLayout.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQGridLayout.cc @@ -1607,7 +1607,8 @@ static void _call_cbs_addItem_1740_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QLayoutItem *arg1 = args.read (heap); + QLayoutItem *arg1 = gsi::arg_reader() (args, heap); + qt_gsi::qt_keep (arg1); __SUPPRESS_UNUSED_WARNING(ret); ((QGridLayout_Adaptor *)cls)->cbs_addItem_1740_0 (arg1); } @@ -1667,7 +1668,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGridLayout_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1729,7 +1730,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGridLayout_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1771,7 +1772,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGridLayout_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1795,7 +1796,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGridLayout_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1820,8 +1821,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGridLayout_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1901,7 +1902,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QGridLayout_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -1924,7 +1925,7 @@ static void _call_cbs_indexOf_c2010_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QWidget *arg1 = args.read (heap); + const QWidget *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QGridLayout_Adaptor *)cls)->cbs_indexOf_c2010_0 (arg1)); } @@ -1947,7 +1948,7 @@ static void _call_cbs_indexOf_c2435_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QLayoutItem *arg1 = args.read (heap); + const QLayoutItem *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QGridLayout_Adaptor *)cls)->cbs_indexOf_c2435_0 (arg1)); } @@ -2027,7 +2028,7 @@ static void _call_cbs_itemAt_c767_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QLayoutItem *)((QGridLayout_Adaptor *)cls)->cbs_itemAt_c767_0 (arg1)); } @@ -2088,7 +2089,7 @@ static void _call_cbs_minimumHeightForWidth_c767_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QGridLayout_Adaptor *)cls)->cbs_minimumHeightForWidth_c767_0 (arg1)); } @@ -2170,9 +2171,9 @@ static void _call_cbs_replaceWidget_5361_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - QWidget *arg2 = args.read (heap); - QFlags arg3 = args.read > (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = gsi::arg_reader() (args, heap); + QFlags arg3 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (Qt::FindChildrenRecursively, heap); ret.write ((QLayoutItem *)((QGridLayout_Adaptor *)cls)->cbs_replaceWidget_5361_1 (arg1, arg2, arg3)); } @@ -2223,7 +2224,7 @@ static void _call_cbs_setGeometry_1792_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGridLayout_Adaptor *)cls)->cbs_setGeometry_1792_0 (arg1); } @@ -2247,7 +2248,7 @@ static void _call_cbs_setSpacing_767_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGridLayout_Adaptor *)cls)->cbs_setSpacing_767_0 (arg1); } @@ -2328,7 +2329,7 @@ static void _call_cbs_takeAt_767_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QLayoutItem *)((QGridLayout_Adaptor *)cls)->cbs_takeAt_767_0 (arg1)); } @@ -2351,7 +2352,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGridLayout_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQGroupBox.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQGroupBox.cc index eb9bc23f4..acb449723 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQGroupBox.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQGroupBox.cc @@ -1274,7 +1274,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGroupBox_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1298,7 +1298,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGroupBox_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1322,7 +1322,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGroupBox_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1364,7 +1364,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGroupBox_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1388,7 +1388,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGroupBox_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1455,7 +1455,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGroupBox_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1519,7 +1519,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGroupBox_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1543,7 +1543,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGroupBox_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1567,7 +1567,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGroupBox_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1591,7 +1591,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGroupBox_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1615,7 +1615,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGroupBox_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1639,7 +1639,7 @@ static void _call_cbs_enterEvent_1727_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEnterEvent *arg1 = args.read (heap); + QEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGroupBox_Adaptor *)cls)->cbs_enterEvent_1727_0 (arg1); } @@ -1663,7 +1663,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGroupBox_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1688,8 +1688,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGroupBox_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1712,7 +1712,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGroupBox_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1750,7 +1750,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGroupBox_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -1773,7 +1773,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGroupBox_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -1830,7 +1830,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QGroupBox_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -1853,7 +1853,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGroupBox_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -1877,7 +1877,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGroupBox_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -1901,7 +1901,7 @@ static void _call_cbs_initStyleOption_c2687_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionGroupBox *arg1 = args.read (heap); + QStyleOptionGroupBox *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGroupBox_Adaptor *)cls)->cbs_initStyleOption_c2687_0 (arg1); } @@ -1925,7 +1925,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGroupBox_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -1949,7 +1949,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QGroupBox_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -1990,7 +1990,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGroupBox_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2014,7 +2014,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGroupBox_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2038,7 +2038,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGroupBox_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2062,7 +2062,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QGroupBox_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2104,7 +2104,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGroupBox_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2128,7 +2128,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGroupBox_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2152,7 +2152,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGroupBox_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2176,7 +2176,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGroupBox_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2200,7 +2200,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGroupBox_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2228,9 +2228,9 @@ static void _call_cbs_nativeEvent_6949_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - QIntegerForSizeof::Signed *arg3 = args.read::Signed * > (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + QIntegerForSizeof::Signed *arg3 = gsi::arg_reader::Signed * >() (args, heap); ret.write ((bool)((QGroupBox_Adaptor *)cls)->cbs_nativeEvent_6949_0 (arg1, arg2, arg3)); } @@ -2290,7 +2290,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGroupBox_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2332,7 +2332,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QGroupBox_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -2355,7 +2355,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGroupBox_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2407,7 +2407,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGroupBox_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2450,7 +2450,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGroupBox_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2493,7 +2493,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGroupBox_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2517,7 +2517,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGroupBox_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2578,7 +2578,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGroupBox_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQHBoxLayout.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQHBoxLayout.cc index a1b1a4b3b..0db6c0e11 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQHBoxLayout.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQHBoxLayout.cc @@ -753,7 +753,8 @@ static void _call_cbs_addItem_1740_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QLayoutItem *arg1 = args.read (heap); + QLayoutItem *arg1 = gsi::arg_reader() (args, heap); + qt_gsi::qt_keep (arg1); __SUPPRESS_UNUSED_WARNING(ret); ((QHBoxLayout_Adaptor *)cls)->cbs_addItem_1740_0 (arg1); } @@ -813,7 +814,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHBoxLayout_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -875,7 +876,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHBoxLayout_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -917,7 +918,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHBoxLayout_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -941,7 +942,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QHBoxLayout_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -966,8 +967,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QHBoxLayout_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1047,7 +1048,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QHBoxLayout_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -1070,7 +1071,7 @@ static void _call_cbs_indexOf_c2010_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QWidget *arg1 = args.read (heap); + const QWidget *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QHBoxLayout_Adaptor *)cls)->cbs_indexOf_c2010_0 (arg1)); } @@ -1093,7 +1094,7 @@ static void _call_cbs_indexOf_c2435_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QLayoutItem *arg1 = args.read (heap); + const QLayoutItem *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QHBoxLayout_Adaptor *)cls)->cbs_indexOf_c2435_0 (arg1)); } @@ -1173,7 +1174,7 @@ static void _call_cbs_itemAt_c767_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QLayoutItem *)((QHBoxLayout_Adaptor *)cls)->cbs_itemAt_c767_0 (arg1)); } @@ -1234,7 +1235,7 @@ static void _call_cbs_minimumHeightForWidth_c767_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QHBoxLayout_Adaptor *)cls)->cbs_minimumHeightForWidth_c767_0 (arg1)); } @@ -1316,9 +1317,9 @@ static void _call_cbs_replaceWidget_5361_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - QWidget *arg2 = args.read (heap); - QFlags arg3 = args.read > (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = gsi::arg_reader() (args, heap); + QFlags arg3 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (Qt::FindChildrenRecursively, heap); ret.write ((QLayoutItem *)((QHBoxLayout_Adaptor *)cls)->cbs_replaceWidget_5361_1 (arg1, arg2, arg3)); } @@ -1369,7 +1370,7 @@ static void _call_cbs_setGeometry_1792_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHBoxLayout_Adaptor *)cls)->cbs_setGeometry_1792_0 (arg1); } @@ -1393,7 +1394,7 @@ static void _call_cbs_setSpacing_767_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHBoxLayout_Adaptor *)cls)->cbs_setSpacing_767_0 (arg1); } @@ -1474,7 +1475,7 @@ static void _call_cbs_takeAt_767_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QLayoutItem *)((QHBoxLayout_Adaptor *)cls)->cbs_takeAt_767_0 (arg1)); } @@ -1497,7 +1498,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHBoxLayout_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQHeaderView.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQHeaderView.cc index 8ed58f88e..f5d7b31be 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQHeaderView.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQHeaderView.cc @@ -3351,7 +3351,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -3393,7 +3393,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -3417,7 +3417,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -3461,8 +3461,8 @@ static void _call_cbs_closeEditor_4926_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_closeEditor_4926_0 (arg1, arg2); } @@ -3486,7 +3486,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -3510,7 +3510,7 @@ static void _call_cbs_commitData_1315_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_commitData_1315_0 (arg1); } @@ -3534,7 +3534,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -3585,8 +3585,8 @@ static void _call_cbs_currentChanged_4682_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_currentChanged_4682_0 (arg1, arg2); } @@ -3628,7 +3628,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -3656,9 +3656,9 @@ static void _call_cbs_dataChanged_6833_1 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); - const QList &arg3 = args.read & > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); + const QList &arg3 = args ? gsi::arg_reader & >() (args, heap) : gsi::arg_maker & >() (QList(), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_dataChanged_6833_1 (arg1, arg2, arg3); } @@ -3736,7 +3736,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -3813,7 +3813,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -3837,7 +3837,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -3861,7 +3861,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -3904,7 +3904,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -3946,9 +3946,9 @@ static void _call_cbs_edit_6773_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - QEvent *arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + QEvent *arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QHeaderView_Adaptor *)cls)->cbs_edit_6773_0 (arg1, arg2, arg3)); } @@ -3971,7 +3971,7 @@ static void _call_cbs_editorDestroyed_1302_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_editorDestroyed_1302_0 (arg1); } @@ -3995,7 +3995,7 @@ static void _call_cbs_enterEvent_1727_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEnterEvent *arg1 = args.read (heap); + QEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_enterEvent_1727_0 (arg1); } @@ -4037,7 +4037,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QHeaderView_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -4062,8 +4062,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QHeaderView_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -4101,7 +4101,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -4139,7 +4139,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QHeaderView_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -4162,7 +4162,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -4233,7 +4233,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QHeaderView_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -4256,7 +4256,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -4299,7 +4299,7 @@ static void _call_cbs_horizontalScrollbarAction_767_0 (const qt_gsi::GenericMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_horizontalScrollbarAction_767_0 (arg1); } @@ -4323,7 +4323,7 @@ static void _call_cbs_horizontalScrollbarValueChanged_767_0 (const qt_gsi::Gener { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_horizontalScrollbarValueChanged_767_0 (arg1); } @@ -4365,7 +4365,7 @@ static void _call_cbs_indexAt_c1916_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QHeaderView_Adaptor *)cls)->cbs_indexAt_c1916_0 (arg1)); } @@ -4388,7 +4388,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -4412,7 +4412,7 @@ static void _call_cbs_initStyleOption_c2450_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionHeader *arg1 = args.read (heap); + QStyleOptionHeader *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_initStyleOption_c2450_0 (arg1); } @@ -4438,8 +4438,8 @@ static void _call_cbs_initStyleOptionForIndex_c3109_0 (const qt_gsi::GenericMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionHeader *arg1 = args.read (heap); - int arg2 = args.read (heap); + QStyleOptionHeader *arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_initStyleOptionForIndex_c3109_0 (arg1, arg2); } @@ -4463,7 +4463,7 @@ static void _call_cbs_initViewItemOption_c2675_0 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionViewItem *arg1 = args.read (heap); + QStyleOptionViewItem *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_initViewItemOption_c2675_0 (arg1); } @@ -4539,7 +4539,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -4563,7 +4563,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QHeaderView_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -4586,7 +4586,7 @@ static void _call_cbs_isIndexHidden_c2395_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QHeaderView_Adaptor *)cls)->cbs_isIndexHidden_c2395_0 (arg1)); } @@ -4627,7 +4627,7 @@ static void _call_cbs_itemDelegateForIndex_c2395_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QAbstractItemDelegate *)((QHeaderView_Adaptor *)cls)->cbs_itemDelegateForIndex_c2395_0 (arg1)); } @@ -4650,7 +4650,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -4674,7 +4674,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -4698,7 +4698,7 @@ static void _call_cbs_keyboardSearch_2025_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_keyboardSearch_2025_0 (arg1); } @@ -4722,7 +4722,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -4746,7 +4746,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QHeaderView_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -4788,7 +4788,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -4812,7 +4812,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -4836,7 +4836,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -4860,7 +4860,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -4886,8 +4886,8 @@ static void _call_cbs_moveCursor_6476_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); - QFlags arg2 = args.read > (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); ret.write ((QModelIndex)((QHeaderView_Adaptor *)cls)->cbs_moveCursor_6476_0 (arg1, arg2)); } @@ -4910,7 +4910,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -4938,9 +4938,9 @@ static void _call_cbs_nativeEvent_6949_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - QIntegerForSizeof::Signed *arg3 = args.read::Signed * > (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + QIntegerForSizeof::Signed *arg3 = gsi::arg_reader::Signed * >() (args, heap); ret.write ((bool)((QHeaderView_Adaptor *)cls)->cbs_nativeEvent_6949_0 (arg1, arg2, arg3)); } @@ -5000,7 +5000,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -5028,9 +5028,9 @@ static void _call_cbs_paintSection_c3769_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QRect &arg2 = args.read (heap); - int arg3 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QRect &arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_paintSection_c3769_0 (arg1, arg2, arg3); } @@ -5090,7 +5090,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QHeaderView_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -5133,7 +5133,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -5176,9 +5176,9 @@ static void _call_cbs_rowsAboutToBeRemoved_3713_0 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_rowsAboutToBeRemoved_3713_0 (arg1, arg2, arg3); } @@ -5206,9 +5206,9 @@ static void _call_cbs_rowsInserted_3713_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_rowsInserted_3713_0 (arg1, arg2, arg3); } @@ -5249,8 +5249,8 @@ static void _call_cbs_scrollContentsBy_1426_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_scrollContentsBy_1426_0 (arg1, arg2); } @@ -5298,8 +5298,8 @@ static void _call_cbs_scrollTo_5576_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_scrollTo_5576_0 (arg1, arg2); } @@ -5482,7 +5482,7 @@ static void _call_cbs_sectionSizeFromContents_c767_0 (const qt_gsi::GenericMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QSize)((QHeaderView_Adaptor *)cls)->cbs_sectionSizeFromContents_c767_0 (arg1)); } @@ -5596,8 +5596,8 @@ static void _call_cbs_selectionChanged_5346_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QItemSelection &arg1 = args.read (heap); - const QItemSelection &arg2 = args.read (heap); + const QItemSelection &arg1 = gsi::arg_reader() (args, heap); + const QItemSelection &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_selectionChanged_5346_0 (arg1, arg2); } @@ -5623,8 +5623,8 @@ static void _call_cbs_selectionCommand_c4199_1 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QEvent *arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QEvent *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); ret.write > ((QFlags)((QHeaderView_Adaptor *)cls)->cbs_selectionCommand_c4199_1 (arg1, arg2)); } @@ -5694,7 +5694,7 @@ static void _call_cbs_setModel_2419_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractItemModel *arg1 = args.read (heap); + QAbstractItemModel *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_setModel_2419_0 (arg1); } @@ -5718,7 +5718,7 @@ static void _call_cbs_setRootIndex_2395_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_setRootIndex_2395_0 (arg1); } @@ -5744,8 +5744,8 @@ static void _call_cbs_setSelection_6155_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); - QFlags arg2 = args.read > (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_setSelection_6155_0 (arg1, arg2); } @@ -5769,7 +5769,7 @@ static void _call_cbs_setSelectionModel_2533_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QItemSelectionModel *arg1 = args.read (heap); + QItemSelectionModel *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_setSelectionModel_2533_0 (arg1); } @@ -5859,7 +5859,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -5883,7 +5883,7 @@ static void _call_cbs_setupViewport_1315_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_setupViewport_1315_0 (arg1); } @@ -5926,7 +5926,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -5969,7 +5969,7 @@ static void _call_cbs_sizeHintForColumn_c767_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QHeaderView_Adaptor *)cls)->cbs_sizeHintForColumn_c767_0 (arg1)); } @@ -5992,7 +5992,7 @@ static void _call_cbs_sizeHintForRow_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QHeaderView_Adaptor *)cls)->cbs_sizeHintForRow_c767_0 (arg1)); } @@ -6069,7 +6069,7 @@ static void _call_cbs_startDrag_2456_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_startDrag_2456_0 (arg1); } @@ -6122,7 +6122,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -6146,7 +6146,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -6287,7 +6287,7 @@ static void _call_cbs_verticalScrollbarAction_767_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_verticalScrollbarAction_767_0 (arg1); } @@ -6311,7 +6311,7 @@ static void _call_cbs_verticalScrollbarValueChanged_767_0 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_verticalScrollbarValueChanged_767_0 (arg1); } @@ -6349,7 +6349,7 @@ static void _call_cbs_viewportEvent_1217_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QHeaderView_Adaptor *)cls)->cbs_viewportEvent_1217_0 (arg1)); } @@ -6405,7 +6405,7 @@ static void _call_cbs_visualRect_c2395_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QHeaderView_Adaptor *)cls)->cbs_visualRect_c2395_0 (arg1)); } @@ -6428,7 +6428,7 @@ static void _call_cbs_visualRegionForSelection_c2727_0 (const qt_gsi::GenericMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QItemSelection &arg1 = args.read (heap); + const QItemSelection &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRegion)((QHeaderView_Adaptor *)cls)->cbs_visualRegionForSelection_c2727_0 (arg1)); } @@ -6451,7 +6451,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQInputDialog.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQInputDialog.cc index 4ba6368f4..e9de80e6f 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQInputDialog.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQInputDialog.cc @@ -2287,7 +2287,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -2330,7 +2330,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -2354,7 +2354,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -2378,7 +2378,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -2402,7 +2402,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -2469,7 +2469,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -2533,7 +2533,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -2557,7 +2557,7 @@ static void _call_cbs_done_767_0 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog_Adaptor *)cls)->cbs_done_767_0 (arg1); } @@ -2617,7 +2617,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -2641,7 +2641,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -2665,7 +2665,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -2689,7 +2689,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -2713,7 +2713,7 @@ static void _call_cbs_enterEvent_1727_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEnterEvent *arg1 = args.read (heap); + QEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog_Adaptor *)cls)->cbs_enterEvent_1727_0 (arg1); } @@ -2737,7 +2737,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QInputDialog_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -2762,8 +2762,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QInputDialog_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -2823,7 +2823,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -2861,7 +2861,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QInputDialog_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -2884,7 +2884,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -2941,7 +2941,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QInputDialog_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -2964,7 +2964,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -2988,7 +2988,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -3012,7 +3012,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -3036,7 +3036,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QInputDialog_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -3113,7 +3113,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -3137,7 +3137,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -3161,7 +3161,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -3185,7 +3185,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QInputDialog_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -3227,7 +3227,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -3251,7 +3251,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -3275,7 +3275,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -3299,7 +3299,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -3323,7 +3323,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -3351,9 +3351,9 @@ static void _call_cbs_nativeEvent_6949_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - QIntegerForSizeof::Signed *arg3 = args.read::Signed * > (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + QIntegerForSizeof::Signed *arg3 = gsi::arg_reader::Signed * >() (args, heap); ret.write ((bool)((QInputDialog_Adaptor *)cls)->cbs_nativeEvent_6949_0 (arg1, arg2, arg3)); } @@ -3433,7 +3433,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -3475,7 +3475,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QInputDialog_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -3532,7 +3532,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -3584,7 +3584,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -3627,7 +3627,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -3670,7 +3670,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -3730,7 +3730,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -3773,7 +3773,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQItemDelegate.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQItemDelegate.cc index 4bc7d0537..95250faa3 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQItemDelegate.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQItemDelegate.cc @@ -810,7 +810,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QItemDelegate_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -877,9 +877,9 @@ static void _call_cbs_createEditor_c6860_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - const QStyleOptionViewItem &arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionViewItem &arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); ret.write ((QWidget *)((QItemDelegate_Adaptor *)cls)->cbs_createEditor_c6860_0 (arg1, arg2, arg3)); } @@ -902,7 +902,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QItemDelegate_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -949,8 +949,8 @@ static void _call_cbs_destroyEditor_c3602_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QItemDelegate_Adaptor *)cls)->cbs_destroyEditor_c3602_0 (arg1, arg2); } @@ -992,7 +992,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QItemDelegate_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1102,10 +1102,10 @@ static void _call_cbs_drawCheck_c8000_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QStyleOptionViewItem &arg2 = args.read (heap); - const QRect &arg3 = args.read (heap); - const qt_gsi::Converter::target_type & arg4 = args.read::target_type & > (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionViewItem &arg2 = gsi::arg_reader() (args, heap); + const QRect &arg3 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg4 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QItemDelegate_Adaptor *)cls)->cbs_drawCheck_c8000_0 (arg1, arg2, arg3, arg4); } @@ -1135,10 +1135,10 @@ static void _call_cbs_drawDecoration_c8277_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QStyleOptionViewItem &arg2 = args.read (heap); - const QRect &arg3 = args.read (heap); - const QPixmap &arg4 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionViewItem &arg2 = gsi::arg_reader() (args, heap); + const QRect &arg3 = gsi::arg_reader() (args, heap); + const QPixmap &arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QItemDelegate_Adaptor *)cls)->cbs_drawDecoration_c8277_0 (arg1, arg2, arg3, arg4); } @@ -1168,10 +1168,10 @@ static void _call_cbs_drawDisplay_c8285_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QStyleOptionViewItem &arg2 = args.read (heap); - const QRect &arg3 = args.read (heap); - const QString &arg4 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionViewItem &arg2 = gsi::arg_reader() (args, heap); + const QRect &arg3 = gsi::arg_reader() (args, heap); + const QString &arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QItemDelegate_Adaptor *)cls)->cbs_drawDisplay_c8285_0 (arg1, arg2, arg3, arg4); } @@ -1199,9 +1199,9 @@ static void _call_cbs_drawFocus_c6368_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QStyleOptionViewItem &arg2 = args.read (heap); - const QRect &arg3 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionViewItem &arg2 = gsi::arg_reader() (args, heap); + const QRect &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QItemDelegate_Adaptor *)cls)->cbs_drawFocus_c6368_0 (arg1, arg2, arg3); } @@ -1231,10 +1231,10 @@ static void _call_cbs_editorEvent_9073_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); - QAbstractItemModel *arg2 = args.read (heap); - const QStyleOptionViewItem &arg3 = args.read (heap); - const QModelIndex &arg4 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); + QAbstractItemModel *arg2 = gsi::arg_reader() (args, heap); + const QStyleOptionViewItem &arg3 = gsi::arg_reader() (args, heap); + const QModelIndex &arg4 = gsi::arg_reader() (args, heap); ret.write ((bool)((QItemDelegate_Adaptor *)cls)->cbs_editorEvent_9073_0 (arg1, arg2, arg3, arg4)); } @@ -1257,7 +1257,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QItemDelegate_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1282,8 +1282,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QItemDelegate_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1312,10 +1312,10 @@ static void _call_cbs_helpEvent_9380_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHelpEvent *arg1 = args.read (heap); - QAbstractItemView *arg2 = args.read (heap); - const QStyleOptionViewItem &arg3 = args.read (heap); - const QModelIndex &arg4 = args.read (heap); + QHelpEvent *arg1 = gsi::arg_reader() (args, heap); + QAbstractItemView *arg2 = gsi::arg_reader() (args, heap); + const QStyleOptionViewItem &arg3 = gsi::arg_reader() (args, heap); + const QModelIndex &arg4 = gsi::arg_reader() (args, heap); ret.write ((bool)((QItemDelegate_Adaptor *)cls)->cbs_helpEvent_9380_0 (arg1, arg2, arg3, arg4)); } @@ -1378,9 +1378,9 @@ static void _call_cbs_paint_c6971_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QStyleOptionViewItem &arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionViewItem &arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QItemDelegate_Adaptor *)cls)->cbs_paint_c6971_0 (arg1, arg2, arg3); } @@ -1519,8 +1519,8 @@ static void _call_cbs_setEditorData_c3602_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QItemDelegate_Adaptor *)cls)->cbs_setEditorData_c3602_0 (arg1, arg2); } @@ -1548,9 +1548,9 @@ static void _call_cbs_setModelData_c5913_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - QAbstractItemModel *arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + QAbstractItemModel *arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QItemDelegate_Adaptor *)cls)->cbs_setModelData_c5913_0 (arg1, arg2, arg3); } @@ -1597,8 +1597,8 @@ static void _call_cbs_sizeHint_c5653_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStyleOptionViewItem &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + const QStyleOptionViewItem &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); ret.write ((QSize)((QItemDelegate_Adaptor *)cls)->cbs_sizeHint_c5653_0 (arg1, arg2)); } @@ -1666,7 +1666,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QItemDelegate_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -1694,9 +1694,9 @@ static void _call_cbs_updateEditorGeometry_c6860_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - const QStyleOptionViewItem &arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionViewItem &arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QItemDelegate_Adaptor *)cls)->cbs_updateEditorGeometry_c6860_0 (arg1, arg2, arg3); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQItemEditorCreatorBase.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQItemEditorCreatorBase.cc index 034cd6269..2c6276670 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQItemEditorCreatorBase.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQItemEditorCreatorBase.cc @@ -165,7 +165,7 @@ static void _call_cbs_createWidget_c1315_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); ret.write ((QWidget *)((QItemEditorCreatorBase_Adaptor *)cls)->cbs_createWidget_c1315_0 (arg1)); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQItemEditorFactory.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQItemEditorFactory.cc index 01d8da3b0..15f07621c 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQItemEditorFactory.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQItemEditorFactory.cc @@ -235,8 +235,8 @@ static void _call_cbs_createEditor_c1974_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - QWidget *arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = gsi::arg_reader() (args, heap); ret.write ((QWidget *)((QItemEditorFactory_Adaptor *)cls)->cbs_createEditor_c1974_0 (arg1, arg2)); } @@ -259,7 +259,7 @@ static void _call_cbs_valuePropertyName_c767_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QByteArray)((QItemEditorFactory_Adaptor *)cls)->cbs_valuePropertyName_c767_0 (arg1)); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQKeySequenceEdit.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQKeySequenceEdit.cc index b0f6d1041..6954dddf1 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQKeySequenceEdit.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQKeySequenceEdit.cc @@ -1110,7 +1110,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QKeySequenceEdit_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1134,7 +1134,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QKeySequenceEdit_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1158,7 +1158,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QKeySequenceEdit_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1182,7 +1182,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QKeySequenceEdit_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1206,7 +1206,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QKeySequenceEdit_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1273,7 +1273,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QKeySequenceEdit_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1337,7 +1337,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QKeySequenceEdit_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1361,7 +1361,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QKeySequenceEdit_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1385,7 +1385,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QKeySequenceEdit_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1409,7 +1409,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QKeySequenceEdit_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1433,7 +1433,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QKeySequenceEdit_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1471,7 +1471,7 @@ static void _call_cbs_enterEvent_1727_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEnterEvent *arg1 = args.read (heap); + QEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QKeySequenceEdit_Adaptor *)cls)->cbs_enterEvent_1727_0 (arg1); } @@ -1495,7 +1495,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QKeySequenceEdit_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1520,8 +1520,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QKeySequenceEdit_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1544,7 +1544,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QKeySequenceEdit_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1582,7 +1582,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QKeySequenceEdit_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -1605,7 +1605,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QKeySequenceEdit_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -1662,7 +1662,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QKeySequenceEdit_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -1685,7 +1685,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QKeySequenceEdit_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -1709,7 +1709,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QKeySequenceEdit_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -1733,7 +1733,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QKeySequenceEdit_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -1757,7 +1757,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QKeySequenceEdit_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -1798,7 +1798,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QKeySequenceEdit_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -1822,7 +1822,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QKeySequenceEdit_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -1864,7 +1864,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QKeySequenceEdit_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -1888,7 +1888,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QKeySequenceEdit_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -1930,7 +1930,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QKeySequenceEdit_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -1954,7 +1954,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QKeySequenceEdit_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -1978,7 +1978,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QKeySequenceEdit_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2002,7 +2002,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QKeySequenceEdit_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2026,7 +2026,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QKeySequenceEdit_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2054,9 +2054,9 @@ static void _call_cbs_nativeEvent_6949_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - QIntegerForSizeof::Signed *arg3 = args.read::Signed * > (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + QIntegerForSizeof::Signed *arg3 = gsi::arg_reader::Signed * >() (args, heap); ret.write ((bool)((QKeySequenceEdit_Adaptor *)cls)->cbs_nativeEvent_6949_0 (arg1, arg2, arg3)); } @@ -2116,7 +2116,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QKeySequenceEdit_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2158,7 +2158,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QKeySequenceEdit_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -2181,7 +2181,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QKeySequenceEdit_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2233,7 +2233,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QKeySequenceEdit_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2276,7 +2276,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QKeySequenceEdit_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2319,7 +2319,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QKeySequenceEdit_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2343,7 +2343,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QKeySequenceEdit_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2386,7 +2386,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QKeySequenceEdit_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQLCDNumber.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQLCDNumber.cc index 3fd30ba1c..af846470e 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQLCDNumber.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQLCDNumber.cc @@ -1438,7 +1438,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLCDNumber_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1462,7 +1462,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLCDNumber_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1486,7 +1486,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLCDNumber_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1510,7 +1510,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLCDNumber_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1534,7 +1534,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLCDNumber_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1601,7 +1601,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLCDNumber_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1665,7 +1665,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLCDNumber_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1689,7 +1689,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLCDNumber_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1713,7 +1713,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLCDNumber_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1737,7 +1737,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLCDNumber_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1780,7 +1780,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLCDNumber_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1804,7 +1804,7 @@ static void _call_cbs_enterEvent_1727_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEnterEvent *arg1 = args.read (heap); + QEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLCDNumber_Adaptor *)cls)->cbs_enterEvent_1727_0 (arg1); } @@ -1828,7 +1828,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QLCDNumber_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1853,8 +1853,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QLCDNumber_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1877,7 +1877,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLCDNumber_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1915,7 +1915,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QLCDNumber_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -1938,7 +1938,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLCDNumber_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -1995,7 +1995,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QLCDNumber_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -2018,7 +2018,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLCDNumber_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -2042,7 +2042,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLCDNumber_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -2066,7 +2066,7 @@ static void _call_cbs_initStyleOption_c2356_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionFrame *arg1 = args.read (heap); + QStyleOptionFrame *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLCDNumber_Adaptor *)cls)->cbs_initStyleOption_c2356_0 (arg1); } @@ -2090,7 +2090,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLCDNumber_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2114,7 +2114,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QLCDNumber_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2155,7 +2155,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLCDNumber_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2179,7 +2179,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLCDNumber_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2203,7 +2203,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLCDNumber_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2227,7 +2227,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QLCDNumber_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2269,7 +2269,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLCDNumber_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2293,7 +2293,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLCDNumber_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2317,7 +2317,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLCDNumber_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2341,7 +2341,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLCDNumber_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2365,7 +2365,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLCDNumber_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2393,9 +2393,9 @@ static void _call_cbs_nativeEvent_6949_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - QIntegerForSizeof::Signed *arg3 = args.read::Signed * > (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + QIntegerForSizeof::Signed *arg3 = gsi::arg_reader::Signed * >() (args, heap); ret.write ((bool)((QLCDNumber_Adaptor *)cls)->cbs_nativeEvent_6949_0 (arg1, arg2, arg3)); } @@ -2469,7 +2469,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLCDNumber_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2511,7 +2511,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QLCDNumber_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -2534,7 +2534,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLCDNumber_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2586,7 +2586,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLCDNumber_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2629,7 +2629,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLCDNumber_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2672,7 +2672,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLCDNumber_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2696,7 +2696,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLCDNumber_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2739,7 +2739,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLCDNumber_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQLabel.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQLabel.cc index 22bf3fe4a..2e70f1883 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQLabel.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQLabel.cc @@ -1802,7 +1802,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1826,7 +1826,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1850,7 +1850,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1874,7 +1874,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1898,7 +1898,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1965,7 +1965,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -2029,7 +2029,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -2053,7 +2053,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -2077,7 +2077,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -2101,7 +2101,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -2144,7 +2144,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -2168,7 +2168,7 @@ static void _call_cbs_enterEvent_1727_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEnterEvent *arg1 = args.read (heap); + QEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel_Adaptor *)cls)->cbs_enterEvent_1727_0 (arg1); } @@ -2192,7 +2192,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QLabel_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -2217,8 +2217,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QLabel_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -2241,7 +2241,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -2279,7 +2279,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QLabel_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -2302,7 +2302,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -2359,7 +2359,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QLabel_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -2382,7 +2382,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -2406,7 +2406,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -2430,7 +2430,7 @@ static void _call_cbs_initStyleOption_c2356_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionFrame *arg1 = args.read (heap); + QStyleOptionFrame *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel_Adaptor *)cls)->cbs_initStyleOption_c2356_0 (arg1); } @@ -2454,7 +2454,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2478,7 +2478,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QLabel_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2519,7 +2519,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2543,7 +2543,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2567,7 +2567,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2627,7 +2627,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QLabel_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2669,7 +2669,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2693,7 +2693,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2717,7 +2717,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2741,7 +2741,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2765,7 +2765,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2793,9 +2793,9 @@ static void _call_cbs_nativeEvent_6949_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - QIntegerForSizeof::Signed *arg3 = args.read::Signed * > (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + QIntegerForSizeof::Signed *arg3 = gsi::arg_reader::Signed * >() (args, heap); ret.write ((bool)((QLabel_Adaptor *)cls)->cbs_nativeEvent_6949_0 (arg1, arg2, arg3)); } @@ -2855,7 +2855,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2897,7 +2897,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QLabel_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -2920,7 +2920,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2972,7 +2972,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -3015,7 +3015,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -3058,7 +3058,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -3082,7 +3082,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -3125,7 +3125,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQLayout.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQLayout.cc index d09bee548..62d05d421 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQLayout.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQLayout.cc @@ -1659,7 +1659,8 @@ static void _call_cbs_addItem_1740_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QLayoutItem *arg1 = args.read (heap); + QLayoutItem *arg1 = gsi::arg_reader() (args, heap); + qt_gsi::qt_keep (arg1); __SUPPRESS_UNUSED_WARNING(ret); ((QLayout_Adaptor *)cls)->cbs_addItem_1740_0 (arg1); } @@ -1719,7 +1720,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLayout_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1781,7 +1782,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLayout_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1823,7 +1824,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLayout_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1847,7 +1848,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QLayout_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1872,8 +1873,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QLayout_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1953,7 +1954,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QLayout_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -1976,7 +1977,7 @@ static void _call_cbs_indexOf_c2010_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QWidget *arg1 = args.read (heap); + const QWidget *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QLayout_Adaptor *)cls)->cbs_indexOf_c2010_0 (arg1)); } @@ -1999,7 +2000,7 @@ static void _call_cbs_indexOf_c2435_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QLayoutItem *arg1 = args.read (heap); + const QLayoutItem *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QLayout_Adaptor *)cls)->cbs_indexOf_c2435_0 (arg1)); } @@ -2079,7 +2080,7 @@ static void _call_cbs_itemAt_c767_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QLayoutItem *)((QLayout_Adaptor *)cls)->cbs_itemAt_c767_0 (arg1)); } @@ -2140,7 +2141,7 @@ static void _call_cbs_minimumHeightForWidth_c767_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QLayout_Adaptor *)cls)->cbs_minimumHeightForWidth_c767_0 (arg1)); } @@ -2222,9 +2223,9 @@ static void _call_cbs_replaceWidget_5361_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - QWidget *arg2 = args.read (heap); - QFlags arg3 = args.read > (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = gsi::arg_reader() (args, heap); + QFlags arg3 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (Qt::FindChildrenRecursively, heap); ret.write ((QLayoutItem *)((QLayout_Adaptor *)cls)->cbs_replaceWidget_5361_1 (arg1, arg2, arg3)); } @@ -2275,7 +2276,7 @@ static void _call_cbs_setGeometry_1792_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLayout_Adaptor *)cls)->cbs_setGeometry_1792_0 (arg1); } @@ -2299,7 +2300,7 @@ static void _call_cbs_setSpacing_767_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLayout_Adaptor *)cls)->cbs_setSpacing_767_0 (arg1); } @@ -2380,7 +2381,7 @@ static void _call_cbs_takeAt_767_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QLayoutItem *)((QLayout_Adaptor *)cls)->cbs_takeAt_767_0 (arg1)); } @@ -2403,7 +2404,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLayout_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQLayoutItem.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQLayoutItem.cc index 53bd58c73..ae6d834ef 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQLayoutItem.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQLayoutItem.cc @@ -718,7 +718,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QLayoutItem_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -818,7 +818,7 @@ static void _call_cbs_minimumHeightForWidth_c767_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QLayoutItem_Adaptor *)cls)->cbs_minimumHeightForWidth_c767_0 (arg1)); } @@ -860,7 +860,7 @@ static void _call_cbs_setGeometry_1792_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLayoutItem_Adaptor *)cls)->cbs_setGeometry_1792_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQLineEdit.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQLineEdit.cc index f53726991..0abc77e37 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQLineEdit.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQLineEdit.cc @@ -2449,7 +2449,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -2473,7 +2473,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -2497,7 +2497,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -2521,7 +2521,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -2545,7 +2545,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -2647,7 +2647,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -2711,7 +2711,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -2735,7 +2735,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -2759,7 +2759,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -2783,7 +2783,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -2807,7 +2807,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -2845,7 +2845,7 @@ static void _call_cbs_enterEvent_1727_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEnterEvent *arg1 = args.read (heap); + QEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit_Adaptor *)cls)->cbs_enterEvent_1727_0 (arg1); } @@ -2869,7 +2869,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QLineEdit_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -2894,8 +2894,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QLineEdit_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -2918,7 +2918,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -2956,7 +2956,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QLineEdit_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -2979,7 +2979,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -3036,7 +3036,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QLineEdit_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -3059,7 +3059,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -3083,7 +3083,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -3107,7 +3107,7 @@ static void _call_cbs_initStyleOption_c2356_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionFrame *arg1 = args.read (heap); + QStyleOptionFrame *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit_Adaptor *)cls)->cbs_initStyleOption_c2356_0 (arg1); } @@ -3131,7 +3131,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -3155,7 +3155,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QLineEdit_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -3210,7 +3210,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -3234,7 +3234,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -3258,7 +3258,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -3282,7 +3282,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QLineEdit_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -3324,7 +3324,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -3348,7 +3348,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -3372,7 +3372,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -3396,7 +3396,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -3420,7 +3420,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -3448,9 +3448,9 @@ static void _call_cbs_nativeEvent_6949_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - QIntegerForSizeof::Signed *arg3 = args.read::Signed * > (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + QIntegerForSizeof::Signed *arg3 = gsi::arg_reader::Signed * >() (args, heap); ret.write ((bool)((QLineEdit_Adaptor *)cls)->cbs_nativeEvent_6949_0 (arg1, arg2, arg3)); } @@ -3510,7 +3510,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -3552,7 +3552,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QLineEdit_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -3575,7 +3575,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -3655,7 +3655,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -3698,7 +3698,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -3741,7 +3741,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -3801,7 +3801,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -3844,7 +3844,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQListView.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQListView.cc index 451c49916..422d0d5d1 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQListView.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQListView.cc @@ -2570,7 +2570,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -2612,7 +2612,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -2636,7 +2636,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -2680,8 +2680,8 @@ static void _call_cbs_closeEditor_4926_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_closeEditor_4926_0 (arg1, arg2); } @@ -2705,7 +2705,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -2729,7 +2729,7 @@ static void _call_cbs_commitData_1315_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_commitData_1315_0 (arg1); } @@ -2767,7 +2767,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -2818,8 +2818,8 @@ static void _call_cbs_currentChanged_4682_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_currentChanged_4682_0 (arg1, arg2); } @@ -2861,7 +2861,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -2889,9 +2889,9 @@ static void _call_cbs_dataChanged_6833_1 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); - const QList &arg3 = args.read & > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); + const QList &arg3 = args ? gsi::arg_reader & >() (args, heap) : gsi::arg_maker & >() (QList(), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_dataChanged_6833_1 (arg1, arg2, arg3); } @@ -2969,7 +2969,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -3046,7 +3046,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -3070,7 +3070,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -3094,7 +3094,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -3137,7 +3137,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -3179,9 +3179,9 @@ static void _call_cbs_edit_6773_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - QEvent *arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + QEvent *arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QListView_Adaptor *)cls)->cbs_edit_6773_0 (arg1, arg2, arg3)); } @@ -3204,7 +3204,7 @@ static void _call_cbs_editorDestroyed_1302_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_editorDestroyed_1302_0 (arg1); } @@ -3228,7 +3228,7 @@ static void _call_cbs_enterEvent_1727_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEnterEvent *arg1 = args.read (heap); + QEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_enterEvent_1727_0 (arg1); } @@ -3270,7 +3270,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QListView_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -3295,8 +3295,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QListView_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -3334,7 +3334,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -3372,7 +3372,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QListView_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -3395,7 +3395,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -3452,7 +3452,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QListView_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -3475,7 +3475,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -3518,7 +3518,7 @@ static void _call_cbs_horizontalScrollbarAction_767_0 (const qt_gsi::GenericMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_horizontalScrollbarAction_767_0 (arg1); } @@ -3542,7 +3542,7 @@ static void _call_cbs_horizontalScrollbarValueChanged_767_0 (const qt_gsi::Gener { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_horizontalScrollbarValueChanged_767_0 (arg1); } @@ -3584,7 +3584,7 @@ static void _call_cbs_indexAt_c1916_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QListView_Adaptor *)cls)->cbs_indexAt_c1916_0 (arg1)); } @@ -3625,7 +3625,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -3649,7 +3649,7 @@ static void _call_cbs_initStyleOption_c2356_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionFrame *arg1 = args.read (heap); + QStyleOptionFrame *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_initStyleOption_c2356_0 (arg1); } @@ -3673,7 +3673,7 @@ static void _call_cbs_initViewItemOption_c2675_0 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionViewItem *arg1 = args.read (heap); + QStyleOptionViewItem *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_initViewItemOption_c2675_0 (arg1); } @@ -3697,7 +3697,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -3721,7 +3721,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QListView_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -3744,7 +3744,7 @@ static void _call_cbs_isIndexHidden_c2395_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QListView_Adaptor *)cls)->cbs_isIndexHidden_c2395_0 (arg1)); } @@ -3785,7 +3785,7 @@ static void _call_cbs_itemDelegateForIndex_c2395_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QAbstractItemDelegate *)((QListView_Adaptor *)cls)->cbs_itemDelegateForIndex_c2395_0 (arg1)); } @@ -3808,7 +3808,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -3832,7 +3832,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -3856,7 +3856,7 @@ static void _call_cbs_keyboardSearch_2025_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_keyboardSearch_2025_0 (arg1); } @@ -3880,7 +3880,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -3904,7 +3904,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QListView_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -3946,7 +3946,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -3970,7 +3970,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -3994,7 +3994,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -4018,7 +4018,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -4044,8 +4044,8 @@ static void _call_cbs_moveCursor_6476_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); - QFlags arg2 = args.read > (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); ret.write ((QModelIndex)((QListView_Adaptor *)cls)->cbs_moveCursor_6476_0 (arg1, arg2)); } @@ -4068,7 +4068,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -4096,9 +4096,9 @@ static void _call_cbs_nativeEvent_6949_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - QIntegerForSizeof::Signed *arg3 = args.read::Signed * > (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + QIntegerForSizeof::Signed *arg3 = gsi::arg_reader::Signed * >() (args, heap); ret.write ((bool)((QListView_Adaptor *)cls)->cbs_nativeEvent_6949_0 (arg1, arg2, arg3)); } @@ -4158,7 +4158,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -4236,7 +4236,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QListView_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -4301,7 +4301,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -4329,9 +4329,9 @@ static void _call_cbs_rowsAboutToBeRemoved_3713_0 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_rowsAboutToBeRemoved_3713_0 (arg1, arg2, arg3); } @@ -4359,9 +4359,9 @@ static void _call_cbs_rowsInserted_3713_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_rowsInserted_3713_0 (arg1, arg2, arg3); } @@ -4402,8 +4402,8 @@ static void _call_cbs_scrollContentsBy_1426_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_scrollContentsBy_1426_0 (arg1, arg2); } @@ -4451,8 +4451,8 @@ static void _call_cbs_scrollTo_5576_1 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QAbstractItemView::EnsureVisible), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_scrollTo_5576_1 (arg1, arg2); } @@ -4517,8 +4517,8 @@ static void _call_cbs_selectionChanged_5346_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QItemSelection &arg1 = args.read (heap); - const QItemSelection &arg2 = args.read (heap); + const QItemSelection &arg1 = gsi::arg_reader() (args, heap); + const QItemSelection &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_selectionChanged_5346_0 (arg1, arg2); } @@ -4544,8 +4544,8 @@ static void _call_cbs_selectionCommand_c4199_1 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QEvent *arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QEvent *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); ret.write > ((QFlags)((QListView_Adaptor *)cls)->cbs_selectionCommand_c4199_1 (arg1, arg2)); } @@ -4615,7 +4615,7 @@ static void _call_cbs_setModel_2419_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractItemModel *arg1 = args.read (heap); + QAbstractItemModel *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_setModel_2419_0 (arg1); } @@ -4661,7 +4661,7 @@ static void _call_cbs_setRootIndex_2395_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_setRootIndex_2395_0 (arg1); } @@ -4687,8 +4687,8 @@ static void _call_cbs_setSelection_6155_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); - QFlags arg2 = args.read > (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_setSelection_6155_0 (arg1, arg2); } @@ -4712,7 +4712,7 @@ static void _call_cbs_setSelectionModel_2533_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QItemSelectionModel *arg1 = args.read (heap); + QItemSelectionModel *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_setSelectionModel_2533_0 (arg1); } @@ -4802,7 +4802,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -4826,7 +4826,7 @@ static void _call_cbs_setupViewport_1315_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_setupViewport_1315_0 (arg1); } @@ -4869,7 +4869,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -4912,7 +4912,7 @@ static void _call_cbs_sizeHintForColumn_c767_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QListView_Adaptor *)cls)->cbs_sizeHintForColumn_c767_0 (arg1)); } @@ -4935,7 +4935,7 @@ static void _call_cbs_sizeHintForRow_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QListView_Adaptor *)cls)->cbs_sizeHintForRow_c767_0 (arg1)); } @@ -4973,7 +4973,7 @@ static void _call_cbs_startDrag_2456_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_startDrag_2456_0 (arg1); } @@ -5026,7 +5026,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -5050,7 +5050,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -5172,7 +5172,7 @@ static void _call_cbs_verticalScrollbarAction_767_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_verticalScrollbarAction_767_0 (arg1); } @@ -5196,7 +5196,7 @@ static void _call_cbs_verticalScrollbarValueChanged_767_0 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_verticalScrollbarValueChanged_767_0 (arg1); } @@ -5234,7 +5234,7 @@ static void _call_cbs_viewportEvent_1217_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QListView_Adaptor *)cls)->cbs_viewportEvent_1217_0 (arg1)); } @@ -5290,7 +5290,7 @@ static void _call_cbs_visualRect_c2395_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QListView_Adaptor *)cls)->cbs_visualRect_c2395_0 (arg1)); } @@ -5313,7 +5313,7 @@ static void _call_cbs_visualRegionForSelection_c2727_0 (const qt_gsi::GenericMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QItemSelection &arg1 = args.read (heap); + const QItemSelection &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRegion)((QListView_Adaptor *)cls)->cbs_visualRegionForSelection_c2727_0 (arg1)); } @@ -5336,7 +5336,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQListWidget.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQListWidget.cc index 5ffa45f52..ca8d4fce7 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQListWidget.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQListWidget.cc @@ -2777,7 +2777,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -2819,7 +2819,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -2843,7 +2843,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -2887,8 +2887,8 @@ static void _call_cbs_closeEditor_4926_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_closeEditor_4926_0 (arg1, arg2); } @@ -2912,7 +2912,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -2936,7 +2936,7 @@ static void _call_cbs_commitData_1315_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_commitData_1315_0 (arg1); } @@ -2974,7 +2974,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -3025,8 +3025,8 @@ static void _call_cbs_currentChanged_4682_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_currentChanged_4682_0 (arg1, arg2); } @@ -3125,7 +3125,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -3153,9 +3153,9 @@ static void _call_cbs_dataChanged_6833_1 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); - const QList &arg3 = args.read & > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); + const QList &arg3 = args ? gsi::arg_reader & >() (args, heap) : gsi::arg_maker & >() (QList(), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_dataChanged_6833_1 (arg1, arg2, arg3); } @@ -3233,7 +3233,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -3310,7 +3310,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -3334,7 +3334,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -3358,7 +3358,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -3401,7 +3401,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -3443,9 +3443,9 @@ static void _call_cbs_dropMimeData_4479_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QMimeData *arg2 = args.read (heap); - const qt_gsi::Converter::target_type & arg3 = args.read::target_type & > (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QMimeData *arg2 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg3 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((bool)((QListWidget_Adaptor *)cls)->cbs_dropMimeData_4479_0 (arg1, arg2, arg3)); } @@ -3472,9 +3472,9 @@ static void _call_cbs_edit_6773_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - QEvent *arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + QEvent *arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QListWidget_Adaptor *)cls)->cbs_edit_6773_0 (arg1, arg2, arg3)); } @@ -3497,7 +3497,7 @@ static void _call_cbs_editorDestroyed_1302_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_editorDestroyed_1302_0 (arg1); } @@ -3521,7 +3521,7 @@ static void _call_cbs_enterEvent_1727_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEnterEvent *arg1 = args.read (heap); + QEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_enterEvent_1727_0 (arg1); } @@ -3563,7 +3563,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QListWidget_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -3588,8 +3588,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QListWidget_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -3627,7 +3627,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -3665,7 +3665,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QListWidget_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -3688,7 +3688,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -3745,7 +3745,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QListWidget_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -3768,7 +3768,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -3811,7 +3811,7 @@ static void _call_cbs_horizontalScrollbarAction_767_0 (const qt_gsi::GenericMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_horizontalScrollbarAction_767_0 (arg1); } @@ -3835,7 +3835,7 @@ static void _call_cbs_horizontalScrollbarValueChanged_767_0 (const qt_gsi::Gener { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_horizontalScrollbarValueChanged_767_0 (arg1); } @@ -3877,7 +3877,7 @@ static void _call_cbs_indexAt_c1916_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QListWidget_Adaptor *)cls)->cbs_indexAt_c1916_0 (arg1)); } @@ -3918,7 +3918,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -3942,7 +3942,7 @@ static void _call_cbs_initStyleOption_c2356_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionFrame *arg1 = args.read (heap); + QStyleOptionFrame *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_initStyleOption_c2356_0 (arg1); } @@ -3966,7 +3966,7 @@ static void _call_cbs_initViewItemOption_c2675_0 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionViewItem *arg1 = args.read (heap); + QStyleOptionViewItem *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_initViewItemOption_c2675_0 (arg1); } @@ -3990,7 +3990,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -4014,7 +4014,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QListWidget_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -4037,7 +4037,7 @@ static void _call_cbs_isIndexHidden_c2395_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QListWidget_Adaptor *)cls)->cbs_isIndexHidden_c2395_0 (arg1)); } @@ -4132,7 +4132,7 @@ static void _call_cbs_itemDelegateForIndex_c2395_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QAbstractItemDelegate *)((QListWidget_Adaptor *)cls)->cbs_itemDelegateForIndex_c2395_0 (arg1)); } @@ -4223,7 +4223,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -4247,7 +4247,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -4271,7 +4271,7 @@ static void _call_cbs_keyboardSearch_2025_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_keyboardSearch_2025_0 (arg1); } @@ -4295,7 +4295,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -4319,7 +4319,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QListWidget_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -4342,7 +4342,7 @@ static void _call_cbs_mimeData_c3618_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); ret.write ((QMimeData *)((QListWidget_Adaptor *)cls)->cbs_mimeData_c3618_0 (arg1)); } @@ -4403,7 +4403,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -4427,7 +4427,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -4451,7 +4451,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -4475,7 +4475,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -4501,8 +4501,8 @@ static void _call_cbs_moveCursor_6476_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); - QFlags arg2 = args.read > (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); ret.write ((QModelIndex)((QListWidget_Adaptor *)cls)->cbs_moveCursor_6476_0 (arg1, arg2)); } @@ -4525,7 +4525,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -4553,9 +4553,9 @@ static void _call_cbs_nativeEvent_6949_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - QIntegerForSizeof::Signed *arg3 = args.read::Signed * > (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + QIntegerForSizeof::Signed *arg3 = gsi::arg_reader::Signed * >() (args, heap); ret.write ((bool)((QListWidget_Adaptor *)cls)->cbs_nativeEvent_6949_0 (arg1, arg2, arg3)); } @@ -4615,7 +4615,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -4693,7 +4693,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QListWidget_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -4758,7 +4758,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -4786,9 +4786,9 @@ static void _call_cbs_rowsAboutToBeRemoved_3713_0 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_rowsAboutToBeRemoved_3713_0 (arg1, arg2, arg3); } @@ -4816,9 +4816,9 @@ static void _call_cbs_rowsInserted_3713_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_rowsInserted_3713_0 (arg1, arg2, arg3); } @@ -4859,8 +4859,8 @@ static void _call_cbs_scrollContentsBy_1426_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_scrollContentsBy_1426_0 (arg1, arg2); } @@ -4908,8 +4908,8 @@ static void _call_cbs_scrollTo_5576_1 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QAbstractItemView::EnsureVisible), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_scrollTo_5576_1 (arg1, arg2); } @@ -4974,8 +4974,8 @@ static void _call_cbs_selectionChanged_5346_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QItemSelection &arg1 = args.read (heap); - const QItemSelection &arg2 = args.read (heap); + const QItemSelection &arg1 = gsi::arg_reader() (args, heap); + const QItemSelection &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_selectionChanged_5346_0 (arg1, arg2); } @@ -5001,8 +5001,8 @@ static void _call_cbs_selectionCommand_c4199_1 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QEvent *arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QEvent *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); ret.write > ((QFlags)((QListWidget_Adaptor *)cls)->cbs_selectionCommand_c4199_1 (arg1, arg2)); } @@ -5094,7 +5094,7 @@ static void _call_cbs_setRootIndex_2395_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_setRootIndex_2395_0 (arg1); } @@ -5120,8 +5120,8 @@ static void _call_cbs_setSelection_6155_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); - QFlags arg2 = args.read > (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_setSelection_6155_0 (arg1, arg2); } @@ -5145,7 +5145,7 @@ static void _call_cbs_setSelectionModel_2533_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QItemSelectionModel *arg1 = args.read (heap); + QItemSelectionModel *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_setSelectionModel_2533_0 (arg1); } @@ -5235,7 +5235,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -5259,7 +5259,7 @@ static void _call_cbs_setupViewport_1315_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_setupViewport_1315_0 (arg1); } @@ -5302,7 +5302,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -5345,7 +5345,7 @@ static void _call_cbs_sizeHintForColumn_c767_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QListWidget_Adaptor *)cls)->cbs_sizeHintForColumn_c767_0 (arg1)); } @@ -5368,7 +5368,7 @@ static void _call_cbs_sizeHintForRow_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QListWidget_Adaptor *)cls)->cbs_sizeHintForRow_c767_0 (arg1)); } @@ -5406,7 +5406,7 @@ static void _call_cbs_startDrag_2456_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_startDrag_2456_0 (arg1); } @@ -5478,7 +5478,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -5502,7 +5502,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -5624,7 +5624,7 @@ static void _call_cbs_verticalScrollbarAction_767_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_verticalScrollbarAction_767_0 (arg1); } @@ -5648,7 +5648,7 @@ static void _call_cbs_verticalScrollbarValueChanged_767_0 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_verticalScrollbarValueChanged_767_0 (arg1); } @@ -5686,7 +5686,7 @@ static void _call_cbs_viewportEvent_1217_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QListWidget_Adaptor *)cls)->cbs_viewportEvent_1217_0 (arg1)); } @@ -5742,7 +5742,7 @@ static void _call_cbs_visualRect_c2395_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QListWidget_Adaptor *)cls)->cbs_visualRect_c2395_0 (arg1)); } @@ -5765,7 +5765,7 @@ static void _call_cbs_visualRegionForSelection_c2727_0 (const qt_gsi::GenericMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QItemSelection &arg1 = args.read (heap); + const QItemSelection &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRegion)((QListWidget_Adaptor *)cls)->cbs_visualRegionForSelection_c2727_0 (arg1)); } @@ -5788,7 +5788,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQListWidgetItem.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQListWidgetItem.cc index bb106a16d..1d0de25c3 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQListWidgetItem.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQListWidgetItem.cc @@ -1044,7 +1044,7 @@ static void _call_cbs_data_c767_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QListWidgetItem_Adaptor *)cls)->cbs_data_c767_0 (arg1)); } @@ -1067,7 +1067,7 @@ static void _call_cbs_operator_lt__c2817_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QListWidgetItem &arg1 = args.read (heap); + const QListWidgetItem &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QListWidgetItem_Adaptor *)cls)->cbs_operator_lt__c2817_0 (arg1)); } @@ -1090,7 +1090,7 @@ static void _call_cbs_read_1697_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDataStream &arg1 = args.read (heap); + QDataStream &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidgetItem_Adaptor *)cls)->cbs_read_1697_0 (arg1); } @@ -1116,8 +1116,8 @@ static void _call_cbs_setData_2778_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidgetItem_Adaptor *)cls)->cbs_setData_2778_0 (arg1, arg2); } @@ -1141,7 +1141,7 @@ static void _call_cbs_write_c1697_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDataStream &arg1 = args.read (heap); + QDataStream &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidgetItem_Adaptor *)cls)->cbs_write_c1697_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQMainWindow.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQMainWindow.cc index 162344e61..e5d02532e 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQMainWindow.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQMainWindow.cc @@ -2110,7 +2110,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -2134,7 +2134,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -2158,7 +2158,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -2182,7 +2182,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -2206,7 +2206,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -2292,7 +2292,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -2356,7 +2356,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -2380,7 +2380,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -2404,7 +2404,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -2428,7 +2428,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -2452,7 +2452,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -2476,7 +2476,7 @@ static void _call_cbs_enterEvent_1727_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEnterEvent *arg1 = args.read (heap); + QEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow_Adaptor *)cls)->cbs_enterEvent_1727_0 (arg1); } @@ -2500,7 +2500,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMainWindow_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -2525,8 +2525,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMainWindow_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -2549,7 +2549,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -2587,7 +2587,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMainWindow_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -2610,7 +2610,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -2667,7 +2667,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QMainWindow_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -2690,7 +2690,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -2732,7 +2732,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -2756,7 +2756,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2780,7 +2780,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QMainWindow_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2821,7 +2821,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2845,7 +2845,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2869,7 +2869,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2893,7 +2893,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QMainWindow_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2935,7 +2935,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2959,7 +2959,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2983,7 +2983,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -3007,7 +3007,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -3031,7 +3031,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -3059,9 +3059,9 @@ static void _call_cbs_nativeEvent_6949_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - QIntegerForSizeof::Signed *arg3 = args.read::Signed * > (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + QIntegerForSizeof::Signed *arg3 = gsi::arg_reader::Signed * >() (args, heap); ret.write ((bool)((QMainWindow_Adaptor *)cls)->cbs_nativeEvent_6949_0 (arg1, arg2, arg3)); } @@ -3121,7 +3121,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -3163,7 +3163,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QMainWindow_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -3186,7 +3186,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -3238,7 +3238,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -3281,7 +3281,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -3342,7 +3342,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -3366,7 +3366,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -3427,7 +3427,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQMdiArea.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQMdiArea.cc index d7dcdbba7..a898400fb 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQMdiArea.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQMdiArea.cc @@ -1711,7 +1711,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1735,7 +1735,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1759,7 +1759,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1783,7 +1783,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1807,7 +1807,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1874,7 +1874,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1938,7 +1938,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1962,7 +1962,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1986,7 +1986,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -2010,7 +2010,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -2053,7 +2053,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -2077,7 +2077,7 @@ static void _call_cbs_enterEvent_1727_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEnterEvent *arg1 = args.read (heap); + QEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea_Adaptor *)cls)->cbs_enterEvent_1727_0 (arg1); } @@ -2101,7 +2101,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMdiArea_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -2126,8 +2126,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMdiArea_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -2150,7 +2150,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -2188,7 +2188,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMdiArea_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -2211,7 +2211,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -2268,7 +2268,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QMdiArea_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -2291,7 +2291,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -2315,7 +2315,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -2339,7 +2339,7 @@ static void _call_cbs_initStyleOption_c2356_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionFrame *arg1 = args.read (heap); + QStyleOptionFrame *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea_Adaptor *)cls)->cbs_initStyleOption_c2356_0 (arg1); } @@ -2363,7 +2363,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2387,7 +2387,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QMdiArea_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2428,7 +2428,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2452,7 +2452,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2476,7 +2476,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2500,7 +2500,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QMdiArea_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2542,7 +2542,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2566,7 +2566,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2590,7 +2590,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2614,7 +2614,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2638,7 +2638,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2666,9 +2666,9 @@ static void _call_cbs_nativeEvent_6949_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - QIntegerForSizeof::Signed *arg3 = args.read::Signed * > (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + QIntegerForSizeof::Signed *arg3 = gsi::arg_reader::Signed * >() (args, heap); ret.write ((bool)((QMdiArea_Adaptor *)cls)->cbs_nativeEvent_6949_0 (arg1, arg2, arg3)); } @@ -2728,7 +2728,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2770,7 +2770,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QMdiArea_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -2793,7 +2793,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2819,8 +2819,8 @@ static void _call_cbs_scrollContentsBy_1426_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea_Adaptor *)cls)->cbs_scrollContentsBy_1426_0 (arg1, arg2); } @@ -2919,7 +2919,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2943,7 +2943,7 @@ static void _call_cbs_setupViewport_1315_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea_Adaptor *)cls)->cbs_setupViewport_1315_0 (arg1); } @@ -2986,7 +2986,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -3047,7 +3047,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -3071,7 +3071,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -3114,7 +3114,7 @@ static void _call_cbs_viewportEvent_1217_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMdiArea_Adaptor *)cls)->cbs_viewportEvent_1217_0 (arg1)); } @@ -3170,7 +3170,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQMdiSubWindow.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQMdiSubWindow.cc index 8851632e4..9c150fd9c 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQMdiSubWindow.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQMdiSubWindow.cc @@ -1370,7 +1370,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiSubWindow_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1394,7 +1394,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiSubWindow_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1418,7 +1418,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiSubWindow_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1442,7 +1442,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiSubWindow_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1466,7 +1466,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiSubWindow_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1533,7 +1533,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiSubWindow_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1597,7 +1597,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiSubWindow_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1621,7 +1621,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiSubWindow_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1645,7 +1645,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiSubWindow_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1669,7 +1669,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiSubWindow_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1693,7 +1693,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiSubWindow_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1717,7 +1717,7 @@ static void _call_cbs_enterEvent_1727_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEnterEvent *arg1 = args.read (heap); + QEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiSubWindow_Adaptor *)cls)->cbs_enterEvent_1727_0 (arg1); } @@ -1741,7 +1741,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMdiSubWindow_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1766,8 +1766,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMdiSubWindow_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1790,7 +1790,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiSubWindow_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1828,7 +1828,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMdiSubWindow_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -1851,7 +1851,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiSubWindow_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -1908,7 +1908,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QMdiSubWindow_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -1931,7 +1931,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiSubWindow_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -1955,7 +1955,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiSubWindow_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -1979,7 +1979,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiSubWindow_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2003,7 +2003,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QMdiSubWindow_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2044,7 +2044,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiSubWindow_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2068,7 +2068,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiSubWindow_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2092,7 +2092,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiSubWindow_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2116,7 +2116,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QMdiSubWindow_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2158,7 +2158,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiSubWindow_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2182,7 +2182,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiSubWindow_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2206,7 +2206,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiSubWindow_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2230,7 +2230,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiSubWindow_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2254,7 +2254,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiSubWindow_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2282,9 +2282,9 @@ static void _call_cbs_nativeEvent_6949_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - QIntegerForSizeof::Signed *arg3 = args.read::Signed * > (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + QIntegerForSizeof::Signed *arg3 = gsi::arg_reader::Signed * >() (args, heap); ret.write ((bool)((QMdiSubWindow_Adaptor *)cls)->cbs_nativeEvent_6949_0 (arg1, arg2, arg3)); } @@ -2344,7 +2344,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiSubWindow_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2386,7 +2386,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QMdiSubWindow_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -2409,7 +2409,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiSubWindow_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2461,7 +2461,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiSubWindow_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2504,7 +2504,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiSubWindow_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2547,7 +2547,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiSubWindow_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2571,7 +2571,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiSubWindow_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2614,7 +2614,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiSubWindow_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQMenu.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQMenu.cc index 5b4255258..65ff55122 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQMenu.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQMenu.cc @@ -2007,7 +2007,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenu_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -2031,7 +2031,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenu_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -2055,7 +2055,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenu_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -2079,7 +2079,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenu_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -2117,7 +2117,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenu_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -2184,7 +2184,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenu_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -2248,7 +2248,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenu_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -2272,7 +2272,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenu_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -2296,7 +2296,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenu_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -2320,7 +2320,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenu_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -2344,7 +2344,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenu_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -2368,7 +2368,7 @@ static void _call_cbs_enterEvent_1727_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEnterEvent *arg1 = args.read (heap); + QEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenu_Adaptor *)cls)->cbs_enterEvent_1727_0 (arg1); } @@ -2392,7 +2392,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMenu_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -2417,8 +2417,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMenu_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -2441,7 +2441,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenu_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -2479,7 +2479,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMenu_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -2502,7 +2502,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenu_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -2559,7 +2559,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QMenu_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -2582,7 +2582,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenu_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -2624,7 +2624,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenu_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -2650,8 +2650,8 @@ static void _call_cbs_initStyleOption_c4565_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionMenuItem *arg1 = args.read (heap); - const QAction *arg2 = args.read (heap); + QStyleOptionMenuItem *arg1 = gsi::arg_reader() (args, heap); + const QAction *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenu_Adaptor *)cls)->cbs_initStyleOption_c4565_0 (arg1, arg2); } @@ -2675,7 +2675,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenu_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2699,7 +2699,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QMenu_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2740,7 +2740,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenu_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2764,7 +2764,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenu_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2788,7 +2788,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenu_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2812,7 +2812,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QMenu_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2854,7 +2854,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenu_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2878,7 +2878,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenu_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2902,7 +2902,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenu_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2926,7 +2926,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenu_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2950,7 +2950,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenu_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2978,9 +2978,9 @@ static void _call_cbs_nativeEvent_6949_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - QIntegerForSizeof::Signed *arg3 = args.read::Signed * > (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + QIntegerForSizeof::Signed *arg3 = gsi::arg_reader::Signed * >() (args, heap); ret.write ((bool)((QMenu_Adaptor *)cls)->cbs_nativeEvent_6949_0 (arg1, arg2, arg3)); } @@ -3040,7 +3040,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenu_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -3082,7 +3082,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QMenu_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -3105,7 +3105,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenu_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -3157,7 +3157,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenu_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -3200,7 +3200,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenu_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -3243,7 +3243,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenu_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -3267,7 +3267,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenu_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -3328,7 +3328,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenu_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQMenuBar.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQMenuBar.cc index 03498f63e..31dd16814 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQMenuBar.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQMenuBar.cc @@ -1515,7 +1515,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenuBar_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1539,7 +1539,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenuBar_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1563,7 +1563,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenuBar_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1587,7 +1587,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenuBar_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1611,7 +1611,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenuBar_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1678,7 +1678,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenuBar_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1742,7 +1742,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenuBar_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1766,7 +1766,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenuBar_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1790,7 +1790,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenuBar_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1814,7 +1814,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenuBar_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1838,7 +1838,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenuBar_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1862,7 +1862,7 @@ static void _call_cbs_enterEvent_1727_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEnterEvent *arg1 = args.read (heap); + QEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenuBar_Adaptor *)cls)->cbs_enterEvent_1727_0 (arg1); } @@ -1886,7 +1886,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMenuBar_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1911,8 +1911,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMenuBar_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1935,7 +1935,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenuBar_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1973,7 +1973,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMenuBar_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -1996,7 +1996,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenuBar_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -2053,7 +2053,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QMenuBar_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -2076,7 +2076,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenuBar_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -2118,7 +2118,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenuBar_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -2144,8 +2144,8 @@ static void _call_cbs_initStyleOption_c4565_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionMenuItem *arg1 = args.read (heap); - const QAction *arg2 = args.read (heap); + QStyleOptionMenuItem *arg1 = gsi::arg_reader() (args, heap); + const QAction *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenuBar_Adaptor *)cls)->cbs_initStyleOption_c4565_0 (arg1, arg2); } @@ -2169,7 +2169,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenuBar_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2193,7 +2193,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QMenuBar_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2234,7 +2234,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenuBar_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2258,7 +2258,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenuBar_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2282,7 +2282,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenuBar_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2306,7 +2306,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QMenuBar_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2348,7 +2348,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenuBar_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2372,7 +2372,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenuBar_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2396,7 +2396,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenuBar_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2420,7 +2420,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenuBar_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2444,7 +2444,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenuBar_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2472,9 +2472,9 @@ static void _call_cbs_nativeEvent_6949_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - QIntegerForSizeof::Signed *arg3 = args.read::Signed * > (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + QIntegerForSizeof::Signed *arg3 = gsi::arg_reader::Signed * >() (args, heap); ret.write ((bool)((QMenuBar_Adaptor *)cls)->cbs_nativeEvent_6949_0 (arg1, arg2, arg3)); } @@ -2534,7 +2534,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenuBar_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2576,7 +2576,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QMenuBar_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -2599,7 +2599,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenuBar_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2651,7 +2651,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenuBar_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2694,7 +2694,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenuBar_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2737,7 +2737,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenuBar_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2761,7 +2761,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenuBar_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2822,7 +2822,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenuBar_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQMessageBox.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQMessageBox.cc index c3cdc359c..8171c7176 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQMessageBox.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQMessageBox.cc @@ -2208,7 +2208,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -2269,7 +2269,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -2293,7 +2293,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -2317,7 +2317,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -2341,7 +2341,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -2408,7 +2408,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -2472,7 +2472,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -2496,7 +2496,7 @@ static void _call_cbs_done_767_0 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox_Adaptor *)cls)->cbs_done_767_0 (arg1); } @@ -2520,7 +2520,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -2544,7 +2544,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -2568,7 +2568,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -2592,7 +2592,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -2616,7 +2616,7 @@ static void _call_cbs_enterEvent_1727_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEnterEvent *arg1 = args.read (heap); + QEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox_Adaptor *)cls)->cbs_enterEvent_1727_0 (arg1); } @@ -2640,7 +2640,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMessageBox_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -2665,8 +2665,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMessageBox_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -2726,7 +2726,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -2764,7 +2764,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMessageBox_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -2787,7 +2787,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -2844,7 +2844,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QMessageBox_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -2867,7 +2867,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -2891,7 +2891,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -2915,7 +2915,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2939,7 +2939,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QMessageBox_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2980,7 +2980,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -3004,7 +3004,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -3028,7 +3028,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -3052,7 +3052,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QMessageBox_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -3094,7 +3094,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -3118,7 +3118,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -3142,7 +3142,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -3166,7 +3166,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -3190,7 +3190,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -3218,9 +3218,9 @@ static void _call_cbs_nativeEvent_6949_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - QIntegerForSizeof::Signed *arg3 = args.read::Signed * > (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + QIntegerForSizeof::Signed *arg3 = gsi::arg_reader::Signed * >() (args, heap); ret.write ((bool)((QMessageBox_Adaptor *)cls)->cbs_nativeEvent_6949_0 (arg1, arg2, arg3)); } @@ -3300,7 +3300,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -3342,7 +3342,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QMessageBox_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -3399,7 +3399,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -3451,7 +3451,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -3494,7 +3494,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -3537,7 +3537,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -3561,7 +3561,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -3604,7 +3604,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQPanGesture.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQPanGesture.cc index 8584d0f28..80da4fb17 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQPanGesture.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQPanGesture.cc @@ -412,7 +412,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPanGesture_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -436,7 +436,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPanGesture_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -478,7 +478,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPanGesture_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -502,7 +502,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPanGesture_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -527,8 +527,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPanGesture_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -633,7 +633,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPanGesture_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQPinchGesture.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQPinchGesture.cc index 5cb1a5a34..3a0330fdf 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQPinchGesture.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQPinchGesture.cc @@ -692,7 +692,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPinchGesture_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -716,7 +716,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPinchGesture_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -758,7 +758,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPinchGesture_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -782,7 +782,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPinchGesture_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -807,8 +807,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPinchGesture_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -913,7 +913,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPinchGesture_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQPlainTextDocumentLayout.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQPlainTextDocumentLayout.cc index 35d0cd598..8a92aad7d 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQPlainTextDocumentLayout.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQPlainTextDocumentLayout.cc @@ -682,7 +682,7 @@ static void _call_cbs_blockBoundingRect_c2306_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextBlock &arg1 = args.read (heap); + const QTextBlock &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRectF)((QPlainTextDocumentLayout_Adaptor *)cls)->cbs_blockBoundingRect_c2306_0 (arg1)); } @@ -705,7 +705,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextDocumentLayout_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -729,7 +729,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextDocumentLayout_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -771,7 +771,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextDocumentLayout_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -799,9 +799,9 @@ static void _call_cbs_documentChanged_2085_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextDocumentLayout_Adaptor *)cls)->cbs_documentChanged_2085_0 (arg1, arg2, arg3); } @@ -864,8 +864,8 @@ static void _call_cbs_draw_6787_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QAbstractTextDocumentLayout::PaintContext &arg2 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QAbstractTextDocumentLayout::PaintContext &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextDocumentLayout_Adaptor *)cls)->cbs_draw_6787_0 (arg1, arg2); } @@ -897,11 +897,11 @@ static void _call_cbs_drawInlineObject_8199_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QRectF &arg2 = args.read (heap); - QTextInlineObject arg3 = args.read (heap); - int arg4 = args.read (heap); - const QTextFormat &arg5 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QRectF &arg2 = gsi::arg_reader() (args, heap); + QTextInlineObject arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + const QTextFormat &arg5 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextDocumentLayout_Adaptor *)cls)->cbs_drawInlineObject_8199_0 (arg1, arg2, arg3, arg4, arg5); } @@ -925,7 +925,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPlainTextDocumentLayout_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -950,8 +950,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPlainTextDocumentLayout_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1010,7 +1010,7 @@ static void _call_cbs_frameBoundingRect_c1615_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTextFrame *arg1 = args.read (heap); + QTextFrame *arg1 = gsi::arg_reader() (args, heap); ret.write ((QRectF)((QPlainTextDocumentLayout_Adaptor *)cls)->cbs_frameBoundingRect_c1615_0 (arg1)); } @@ -1035,8 +1035,8 @@ static void _call_cbs_hitTest_c4147_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QPlainTextDocumentLayout_Adaptor *)cls)->cbs_hitTest_c4147_0 (arg1, arg2)); } @@ -1136,9 +1136,9 @@ static void _call_cbs_positionInlineObject_5127_0 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTextInlineObject arg1 = args.read (heap); - int arg2 = args.read (heap); - const QTextFormat &arg3 = args.read (heap); + QTextInlineObject arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QTextFormat &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextDocumentLayout_Adaptor *)cls)->cbs_positionInlineObject_5127_0 (arg1, arg2, arg3); } @@ -1184,9 +1184,9 @@ static void _call_cbs_resizeInlineObject_5127_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTextInlineObject arg1 = args.read (heap); - int arg2 = args.read (heap); - const QTextFormat &arg3 = args.read (heap); + QTextInlineObject arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QTextFormat &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextDocumentLayout_Adaptor *)cls)->cbs_resizeInlineObject_5127_0 (arg1, arg2, arg3); } @@ -1238,7 +1238,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextDocumentLayout_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQPlainTextEdit.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQPlainTextEdit.cc index aeadf8d1f..e14b910f0 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQPlainTextEdit.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQPlainTextEdit.cc @@ -2610,7 +2610,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -2688,7 +2688,7 @@ static void _call_cbs_canInsertFromMimeData_c2168_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMimeData *arg1 = args.read (heap); + const QMimeData *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPlainTextEdit_Adaptor *)cls)->cbs_canInsertFromMimeData_c2168_0 (arg1)); } @@ -2711,7 +2711,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -2735,7 +2735,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -2759,7 +2759,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -2797,7 +2797,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -2915,7 +2915,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -2979,7 +2979,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -3003,7 +3003,7 @@ static void _call_cbs_doSetTextCursor_2453_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextCursor &arg1 = args.read (heap); + const QTextCursor &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit_Adaptor *)cls)->cbs_doSetTextCursor_2453_0 (arg1); } @@ -3027,7 +3027,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -3051,7 +3051,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -3075,7 +3075,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -3118,7 +3118,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -3142,7 +3142,7 @@ static void _call_cbs_enterEvent_1727_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEnterEvent *arg1 = args.read (heap); + QEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit_Adaptor *)cls)->cbs_enterEvent_1727_0 (arg1); } @@ -3166,7 +3166,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPlainTextEdit_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -3191,8 +3191,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPlainTextEdit_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -3229,7 +3229,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -3267,7 +3267,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPlainTextEdit_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -3290,7 +3290,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -3361,7 +3361,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QPlainTextEdit_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -3384,7 +3384,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -3408,7 +3408,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -3432,7 +3432,7 @@ static void _call_cbs_initStyleOption_c2356_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionFrame *arg1 = args.read (heap); + QStyleOptionFrame *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit_Adaptor *)cls)->cbs_initStyleOption_c2356_0 (arg1); } @@ -3456,7 +3456,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -3480,7 +3480,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QPlainTextEdit_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -3503,7 +3503,7 @@ static void _call_cbs_insertFromMimeData_2168_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMimeData *arg1 = args.read (heap); + const QMimeData *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit_Adaptor *)cls)->cbs_insertFromMimeData_2168_0 (arg1); } @@ -3545,7 +3545,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -3569,7 +3569,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -3593,7 +3593,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -3619,8 +3619,8 @@ static void _call_cbs_loadResource_2360_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QUrl &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QUrl &arg2 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QPlainTextEdit_Adaptor *)cls)->cbs_loadResource_2360_0 (arg1, arg2)); } @@ -3643,7 +3643,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QPlainTextEdit_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -3703,7 +3703,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -3727,7 +3727,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -3751,7 +3751,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -3775,7 +3775,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -3799,7 +3799,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -3827,9 +3827,9 @@ static void _call_cbs_nativeEvent_6949_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - QIntegerForSizeof::Signed *arg3 = args.read::Signed * > (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + QIntegerForSizeof::Signed *arg3 = gsi::arg_reader::Signed * >() (args, heap); ret.write ((bool)((QPlainTextEdit_Adaptor *)cls)->cbs_nativeEvent_6949_0 (arg1, arg2, arg3)); } @@ -3889,7 +3889,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -3931,7 +3931,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QPlainTextEdit_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -3972,7 +3972,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -3998,8 +3998,8 @@ static void _call_cbs_scrollContentsBy_1426_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit_Adaptor *)cls)->cbs_scrollContentsBy_1426_0 (arg1, arg2); } @@ -4112,7 +4112,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -4136,7 +4136,7 @@ static void _call_cbs_setupViewport_1315_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit_Adaptor *)cls)->cbs_setupViewport_1315_0 (arg1); } @@ -4179,7 +4179,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -4222,7 +4222,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -4260,7 +4260,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -4342,7 +4342,7 @@ static void _call_cbs_viewportEvent_1217_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPlainTextEdit_Adaptor *)cls)->cbs_viewportEvent_1217_0 (arg1)); } @@ -4398,7 +4398,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQProgressBar.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQProgressBar.cc index 9e896d4cb..b8ee33eab 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQProgressBar.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQProgressBar.cc @@ -1488,7 +1488,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressBar_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1512,7 +1512,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressBar_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1536,7 +1536,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressBar_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1560,7 +1560,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressBar_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1584,7 +1584,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressBar_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1651,7 +1651,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressBar_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1715,7 +1715,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressBar_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1739,7 +1739,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressBar_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1763,7 +1763,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressBar_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1787,7 +1787,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressBar_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1811,7 +1811,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressBar_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1835,7 +1835,7 @@ static void _call_cbs_enterEvent_1727_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEnterEvent *arg1 = args.read (heap); + QEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressBar_Adaptor *)cls)->cbs_enterEvent_1727_0 (arg1); } @@ -1859,7 +1859,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QProgressBar_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1884,8 +1884,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QProgressBar_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1908,7 +1908,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressBar_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1946,7 +1946,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QProgressBar_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -1969,7 +1969,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressBar_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -2026,7 +2026,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QProgressBar_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -2049,7 +2049,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressBar_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -2073,7 +2073,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressBar_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -2097,7 +2097,7 @@ static void _call_cbs_initStyleOption_c2995_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionProgressBar *arg1 = args.read (heap); + QStyleOptionProgressBar *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressBar_Adaptor *)cls)->cbs_initStyleOption_c2995_0 (arg1); } @@ -2121,7 +2121,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressBar_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2145,7 +2145,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QProgressBar_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2186,7 +2186,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressBar_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2210,7 +2210,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressBar_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2234,7 +2234,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressBar_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2258,7 +2258,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QProgressBar_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2300,7 +2300,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressBar_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2324,7 +2324,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressBar_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2348,7 +2348,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressBar_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2372,7 +2372,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressBar_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2396,7 +2396,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressBar_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2424,9 +2424,9 @@ static void _call_cbs_nativeEvent_6949_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - QIntegerForSizeof::Signed *arg3 = args.read::Signed * > (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + QIntegerForSizeof::Signed *arg3 = gsi::arg_reader::Signed * >() (args, heap); ret.write ((bool)((QProgressBar_Adaptor *)cls)->cbs_nativeEvent_6949_0 (arg1, arg2, arg3)); } @@ -2486,7 +2486,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressBar_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2528,7 +2528,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QProgressBar_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -2551,7 +2551,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressBar_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2603,7 +2603,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressBar_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2646,7 +2646,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressBar_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2689,7 +2689,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressBar_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2732,7 +2732,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressBar_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2793,7 +2793,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressBar_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQProgressDialog.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQProgressDialog.cc index a8f34be83..587df545e 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQProgressDialog.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQProgressDialog.cc @@ -1698,7 +1698,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1755,7 +1755,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1779,7 +1779,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1803,7 +1803,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1827,7 +1827,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1894,7 +1894,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1958,7 +1958,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1982,7 +1982,7 @@ static void _call_cbs_done_767_0 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog_Adaptor *)cls)->cbs_done_767_0 (arg1); } @@ -2006,7 +2006,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -2030,7 +2030,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -2054,7 +2054,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -2078,7 +2078,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -2102,7 +2102,7 @@ static void _call_cbs_enterEvent_1727_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEnterEvent *arg1 = args.read (heap); + QEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog_Adaptor *)cls)->cbs_enterEvent_1727_0 (arg1); } @@ -2126,7 +2126,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QProgressDialog_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -2151,8 +2151,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QProgressDialog_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -2212,7 +2212,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -2250,7 +2250,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QProgressDialog_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -2273,7 +2273,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -2345,7 +2345,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QProgressDialog_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -2368,7 +2368,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -2392,7 +2392,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -2416,7 +2416,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2440,7 +2440,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QProgressDialog_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2481,7 +2481,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2505,7 +2505,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2529,7 +2529,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2553,7 +2553,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QProgressDialog_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2595,7 +2595,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2619,7 +2619,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2643,7 +2643,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2667,7 +2667,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2691,7 +2691,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2719,9 +2719,9 @@ static void _call_cbs_nativeEvent_6949_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - QIntegerForSizeof::Signed *arg3 = args.read::Signed * > (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + QIntegerForSizeof::Signed *arg3 = gsi::arg_reader::Signed * >() (args, heap); ret.write ((bool)((QProgressDialog_Adaptor *)cls)->cbs_nativeEvent_6949_0 (arg1, arg2, arg3)); } @@ -2801,7 +2801,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2843,7 +2843,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QProgressDialog_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -2900,7 +2900,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2952,7 +2952,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2995,7 +2995,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -3038,7 +3038,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -3062,7 +3062,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -3105,7 +3105,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQPushButton.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQPushButton.cc index f7979699b..c228412d5 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQPushButton.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQPushButton.cc @@ -1370,7 +1370,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPushButton_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1394,7 +1394,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPushButton_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1438,7 +1438,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPushButton_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1480,7 +1480,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPushButton_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1504,7 +1504,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPushButton_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1571,7 +1571,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPushButton_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1635,7 +1635,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPushButton_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1659,7 +1659,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPushButton_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1683,7 +1683,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPushButton_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1707,7 +1707,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPushButton_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1731,7 +1731,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPushButton_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1755,7 +1755,7 @@ static void _call_cbs_enterEvent_1727_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEnterEvent *arg1 = args.read (heap); + QEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPushButton_Adaptor *)cls)->cbs_enterEvent_1727_0 (arg1); } @@ -1779,7 +1779,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPushButton_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1804,8 +1804,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPushButton_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1828,7 +1828,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPushButton_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1866,7 +1866,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPushButton_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -1889,7 +1889,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPushButton_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -1946,7 +1946,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QPushButton_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -1969,7 +1969,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPushButton_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -1993,7 +1993,7 @@ static void _call_cbs_hitButton_c1916_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPushButton_Adaptor *)cls)->cbs_hitButton_c1916_0 (arg1)); } @@ -2016,7 +2016,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPushButton_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -2040,7 +2040,7 @@ static void _call_cbs_initStyleOption_c2501_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionButton *arg1 = args.read (heap); + QStyleOptionButton *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPushButton_Adaptor *)cls)->cbs_initStyleOption_c2501_0 (arg1); } @@ -2064,7 +2064,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPushButton_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2088,7 +2088,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QPushButton_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2129,7 +2129,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPushButton_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2153,7 +2153,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPushButton_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2177,7 +2177,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPushButton_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2201,7 +2201,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QPushButton_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2243,7 +2243,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPushButton_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2267,7 +2267,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPushButton_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2291,7 +2291,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPushButton_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2315,7 +2315,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPushButton_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2339,7 +2339,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPushButton_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2367,9 +2367,9 @@ static void _call_cbs_nativeEvent_6949_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - QIntegerForSizeof::Signed *arg3 = args.read::Signed * > (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + QIntegerForSizeof::Signed *arg3 = gsi::arg_reader::Signed * >() (args, heap); ret.write ((bool)((QPushButton_Adaptor *)cls)->cbs_nativeEvent_6949_0 (arg1, arg2, arg3)); } @@ -2449,7 +2449,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPushButton_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2505,7 +2505,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QPushButton_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -2542,7 +2542,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPushButton_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2594,7 +2594,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPushButton_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2637,7 +2637,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPushButton_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2680,7 +2680,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPushButton_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2704,7 +2704,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPushButton_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2765,7 +2765,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPushButton_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQRadioButton.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQRadioButton.cc index 3b614a2d9..6df475fdc 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQRadioButton.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQRadioButton.cc @@ -1168,7 +1168,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioButton_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1192,7 +1192,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioButton_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1236,7 +1236,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioButton_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1278,7 +1278,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioButton_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1302,7 +1302,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioButton_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1369,7 +1369,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioButton_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1433,7 +1433,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioButton_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1457,7 +1457,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioButton_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1481,7 +1481,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioButton_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1505,7 +1505,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioButton_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1529,7 +1529,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioButton_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1553,7 +1553,7 @@ static void _call_cbs_enterEvent_1727_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEnterEvent *arg1 = args.read (heap); + QEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioButton_Adaptor *)cls)->cbs_enterEvent_1727_0 (arg1); } @@ -1577,7 +1577,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QRadioButton_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1602,8 +1602,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QRadioButton_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1626,7 +1626,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioButton_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1664,7 +1664,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QRadioButton_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -1687,7 +1687,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioButton_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -1744,7 +1744,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QRadioButton_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -1767,7 +1767,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioButton_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -1791,7 +1791,7 @@ static void _call_cbs_hitButton_c1916_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QRadioButton_Adaptor *)cls)->cbs_hitButton_c1916_0 (arg1)); } @@ -1814,7 +1814,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioButton_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -1838,7 +1838,7 @@ static void _call_cbs_initStyleOption_c2501_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionButton *arg1 = args.read (heap); + QStyleOptionButton *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioButton_Adaptor *)cls)->cbs_initStyleOption_c2501_0 (arg1); } @@ -1862,7 +1862,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioButton_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -1886,7 +1886,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QRadioButton_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -1927,7 +1927,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioButton_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -1951,7 +1951,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioButton_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -1975,7 +1975,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioButton_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -1999,7 +1999,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QRadioButton_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2041,7 +2041,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioButton_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2065,7 +2065,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioButton_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2089,7 +2089,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioButton_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2113,7 +2113,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioButton_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2137,7 +2137,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioButton_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2165,9 +2165,9 @@ static void _call_cbs_nativeEvent_6949_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - QIntegerForSizeof::Signed *arg3 = args.read::Signed * > (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + QIntegerForSizeof::Signed *arg3 = gsi::arg_reader::Signed * >() (args, heap); ret.write ((bool)((QRadioButton_Adaptor *)cls)->cbs_nativeEvent_6949_0 (arg1, arg2, arg3)); } @@ -2247,7 +2247,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioButton_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2303,7 +2303,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QRadioButton_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -2340,7 +2340,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioButton_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2392,7 +2392,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioButton_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2435,7 +2435,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioButton_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2478,7 +2478,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioButton_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2502,7 +2502,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioButton_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2563,7 +2563,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioButton_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQRubberBand.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQRubberBand.cc index 8910f1e6f..29f3805ab 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQRubberBand.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQRubberBand.cc @@ -1186,7 +1186,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRubberBand_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1210,7 +1210,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRubberBand_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1234,7 +1234,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRubberBand_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1258,7 +1258,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRubberBand_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1282,7 +1282,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRubberBand_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1349,7 +1349,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRubberBand_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1413,7 +1413,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRubberBand_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1437,7 +1437,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRubberBand_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1461,7 +1461,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRubberBand_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1485,7 +1485,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRubberBand_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1509,7 +1509,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRubberBand_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1533,7 +1533,7 @@ static void _call_cbs_enterEvent_1727_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEnterEvent *arg1 = args.read (heap); + QEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRubberBand_Adaptor *)cls)->cbs_enterEvent_1727_0 (arg1); } @@ -1557,7 +1557,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QRubberBand_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1582,8 +1582,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QRubberBand_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1606,7 +1606,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRubberBand_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1644,7 +1644,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QRubberBand_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -1667,7 +1667,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRubberBand_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -1724,7 +1724,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QRubberBand_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -1747,7 +1747,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRubberBand_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -1771,7 +1771,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRubberBand_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -1795,7 +1795,7 @@ static void _call_cbs_initStyleOption_c2848_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionRubberBand *arg1 = args.read (heap); + QStyleOptionRubberBand *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRubberBand_Adaptor *)cls)->cbs_initStyleOption_c2848_0 (arg1); } @@ -1819,7 +1819,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRubberBand_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -1843,7 +1843,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QRubberBand_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -1884,7 +1884,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRubberBand_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -1908,7 +1908,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRubberBand_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -1932,7 +1932,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRubberBand_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -1956,7 +1956,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QRubberBand_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -1998,7 +1998,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRubberBand_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2022,7 +2022,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRubberBand_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2046,7 +2046,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRubberBand_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2070,7 +2070,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRubberBand_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2094,7 +2094,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRubberBand_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2122,9 +2122,9 @@ static void _call_cbs_nativeEvent_6949_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - QIntegerForSizeof::Signed *arg3 = args.read::Signed * > (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + QIntegerForSizeof::Signed *arg3 = gsi::arg_reader::Signed * >() (args, heap); ret.write ((bool)((QRubberBand_Adaptor *)cls)->cbs_nativeEvent_6949_0 (arg1, arg2, arg3)); } @@ -2184,7 +2184,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRubberBand_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2226,7 +2226,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QRubberBand_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -2249,7 +2249,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRubberBand_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2301,7 +2301,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRubberBand_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2344,7 +2344,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRubberBand_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2387,7 +2387,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRubberBand_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2411,7 +2411,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRubberBand_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2454,7 +2454,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRubberBand_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQScrollArea.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQScrollArea.cc index 0d3442f0e..6c41d9e9b 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQScrollArea.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQScrollArea.cc @@ -1331,7 +1331,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollArea_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1355,7 +1355,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollArea_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1379,7 +1379,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollArea_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1403,7 +1403,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollArea_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1427,7 +1427,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollArea_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1494,7 +1494,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollArea_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1558,7 +1558,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollArea_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1582,7 +1582,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollArea_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1606,7 +1606,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollArea_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1630,7 +1630,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollArea_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1673,7 +1673,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollArea_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1697,7 +1697,7 @@ static void _call_cbs_enterEvent_1727_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEnterEvent *arg1 = args.read (heap); + QEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollArea_Adaptor *)cls)->cbs_enterEvent_1727_0 (arg1); } @@ -1721,7 +1721,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QScrollArea_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1746,8 +1746,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QScrollArea_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1770,7 +1770,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollArea_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1808,7 +1808,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QScrollArea_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -1831,7 +1831,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollArea_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -1888,7 +1888,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QScrollArea_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -1911,7 +1911,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollArea_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -1935,7 +1935,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollArea_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -1959,7 +1959,7 @@ static void _call_cbs_initStyleOption_c2356_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionFrame *arg1 = args.read (heap); + QStyleOptionFrame *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollArea_Adaptor *)cls)->cbs_initStyleOption_c2356_0 (arg1); } @@ -1983,7 +1983,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollArea_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2007,7 +2007,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QScrollArea_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2048,7 +2048,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollArea_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2072,7 +2072,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollArea_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2096,7 +2096,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollArea_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2120,7 +2120,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QScrollArea_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2162,7 +2162,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollArea_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2186,7 +2186,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollArea_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2210,7 +2210,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollArea_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2234,7 +2234,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollArea_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2258,7 +2258,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollArea_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2286,9 +2286,9 @@ static void _call_cbs_nativeEvent_6949_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - QIntegerForSizeof::Signed *arg3 = args.read::Signed * > (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + QIntegerForSizeof::Signed *arg3 = gsi::arg_reader::Signed * >() (args, heap); ret.write ((bool)((QScrollArea_Adaptor *)cls)->cbs_nativeEvent_6949_0 (arg1, arg2, arg3)); } @@ -2348,7 +2348,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollArea_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2390,7 +2390,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QScrollArea_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -2413,7 +2413,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollArea_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2439,8 +2439,8 @@ static void _call_cbs_scrollContentsBy_1426_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollArea_Adaptor *)cls)->cbs_scrollContentsBy_1426_0 (arg1, arg2); } @@ -2539,7 +2539,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollArea_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2563,7 +2563,7 @@ static void _call_cbs_setupViewport_1315_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollArea_Adaptor *)cls)->cbs_setupViewport_1315_0 (arg1); } @@ -2606,7 +2606,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollArea_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2649,7 +2649,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollArea_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2673,7 +2673,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollArea_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2716,7 +2716,7 @@ static void _call_cbs_viewportEvent_1217_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QScrollArea_Adaptor *)cls)->cbs_viewportEvent_1217_0 (arg1)); } @@ -2772,7 +2772,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollArea_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQScrollBar.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQScrollBar.cc index dfcaf871b..ba554c080 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQScrollBar.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQScrollBar.cc @@ -1163,7 +1163,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollBar_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1205,7 +1205,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollBar_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1229,7 +1229,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollBar_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1253,7 +1253,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollBar_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1277,7 +1277,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollBar_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1344,7 +1344,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollBar_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1408,7 +1408,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollBar_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1432,7 +1432,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollBar_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1456,7 +1456,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollBar_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1480,7 +1480,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollBar_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1504,7 +1504,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollBar_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1528,7 +1528,7 @@ static void _call_cbs_enterEvent_1727_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEnterEvent *arg1 = args.read (heap); + QEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollBar_Adaptor *)cls)->cbs_enterEvent_1727_0 (arg1); } @@ -1552,7 +1552,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QScrollBar_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1577,8 +1577,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QScrollBar_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1601,7 +1601,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollBar_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1639,7 +1639,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QScrollBar_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -1662,7 +1662,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollBar_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -1719,7 +1719,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QScrollBar_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -1742,7 +1742,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollBar_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -1766,7 +1766,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollBar_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -1790,7 +1790,7 @@ static void _call_cbs_initStyleOption_c2476_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionSlider *arg1 = args.read (heap); + QStyleOptionSlider *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollBar_Adaptor *)cls)->cbs_initStyleOption_c2476_0 (arg1); } @@ -1814,7 +1814,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollBar_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -1838,7 +1838,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QScrollBar_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -1879,7 +1879,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollBar_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -1903,7 +1903,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollBar_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -1927,7 +1927,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollBar_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -1951,7 +1951,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QScrollBar_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -1993,7 +1993,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollBar_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2017,7 +2017,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollBar_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2041,7 +2041,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollBar_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2065,7 +2065,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollBar_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2089,7 +2089,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollBar_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2117,9 +2117,9 @@ static void _call_cbs_nativeEvent_6949_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - QIntegerForSizeof::Signed *arg3 = args.read::Signed * > (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + QIntegerForSizeof::Signed *arg3 = gsi::arg_reader::Signed * >() (args, heap); ret.write ((bool)((QScrollBar_Adaptor *)cls)->cbs_nativeEvent_6949_0 (arg1, arg2, arg3)); } @@ -2179,7 +2179,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollBar_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2242,7 +2242,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QScrollBar_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -2279,7 +2279,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollBar_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2356,7 +2356,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollBar_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2399,7 +2399,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollBar_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2442,7 +2442,7 @@ static void _call_cbs_sliderChange_3257_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollBar_Adaptor *)cls)->cbs_sliderChange_3257_0 (arg1); } @@ -2512,7 +2512,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollBar_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2536,7 +2536,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollBar_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2597,7 +2597,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollBar_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQSizeGrip.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQSizeGrip.cc index 0188f059d..42e17bab3 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQSizeGrip.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQSizeGrip.cc @@ -1040,7 +1040,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSizeGrip_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1064,7 +1064,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSizeGrip_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1088,7 +1088,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSizeGrip_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1112,7 +1112,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSizeGrip_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1136,7 +1136,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSizeGrip_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1203,7 +1203,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSizeGrip_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1267,7 +1267,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSizeGrip_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1291,7 +1291,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSizeGrip_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1315,7 +1315,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSizeGrip_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1339,7 +1339,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSizeGrip_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1363,7 +1363,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSizeGrip_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1387,7 +1387,7 @@ static void _call_cbs_enterEvent_1727_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEnterEvent *arg1 = args.read (heap); + QEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSizeGrip_Adaptor *)cls)->cbs_enterEvent_1727_0 (arg1); } @@ -1411,7 +1411,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSizeGrip_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1436,8 +1436,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSizeGrip_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1460,7 +1460,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSizeGrip_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1498,7 +1498,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSizeGrip_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -1521,7 +1521,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSizeGrip_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -1578,7 +1578,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QSizeGrip_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -1601,7 +1601,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSizeGrip_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -1625,7 +1625,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSizeGrip_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -1649,7 +1649,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSizeGrip_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -1673,7 +1673,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QSizeGrip_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -1714,7 +1714,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSizeGrip_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -1738,7 +1738,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSizeGrip_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -1762,7 +1762,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSizeGrip_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -1786,7 +1786,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QSizeGrip_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -1828,7 +1828,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSizeGrip_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -1852,7 +1852,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSizeGrip_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -1876,7 +1876,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSizeGrip_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -1900,7 +1900,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSizeGrip_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -1924,7 +1924,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSizeGrip_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -1952,9 +1952,9 @@ static void _call_cbs_nativeEvent_6949_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - QIntegerForSizeof::Signed *arg3 = args.read::Signed * > (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + QIntegerForSizeof::Signed *arg3 = gsi::arg_reader::Signed * >() (args, heap); ret.write ((bool)((QSizeGrip_Adaptor *)cls)->cbs_nativeEvent_6949_0 (arg1, arg2, arg3)); } @@ -2014,7 +2014,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSizeGrip_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2056,7 +2056,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QSizeGrip_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -2079,7 +2079,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSizeGrip_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2131,7 +2131,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSizeGrip_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2174,7 +2174,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSizeGrip_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2217,7 +2217,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSizeGrip_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2241,7 +2241,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSizeGrip_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2284,7 +2284,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSizeGrip_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQSlider.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQSlider.cc index 3fb8ea3cf..0f0c64bf9 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQSlider.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQSlider.cc @@ -1253,7 +1253,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSlider_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1295,7 +1295,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSlider_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1319,7 +1319,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSlider_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1343,7 +1343,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSlider_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1367,7 +1367,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSlider_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1434,7 +1434,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSlider_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1498,7 +1498,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSlider_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1522,7 +1522,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSlider_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1546,7 +1546,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSlider_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1570,7 +1570,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSlider_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1594,7 +1594,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSlider_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1618,7 +1618,7 @@ static void _call_cbs_enterEvent_1727_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEnterEvent *arg1 = args.read (heap); + QEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSlider_Adaptor *)cls)->cbs_enterEvent_1727_0 (arg1); } @@ -1642,7 +1642,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSlider_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1667,8 +1667,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSlider_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1691,7 +1691,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSlider_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1729,7 +1729,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSlider_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -1752,7 +1752,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSlider_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -1809,7 +1809,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QSlider_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -1832,7 +1832,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSlider_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -1856,7 +1856,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSlider_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -1880,7 +1880,7 @@ static void _call_cbs_initStyleOption_c2476_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionSlider *arg1 = args.read (heap); + QStyleOptionSlider *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSlider_Adaptor *)cls)->cbs_initStyleOption_c2476_0 (arg1); } @@ -1904,7 +1904,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSlider_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -1928,7 +1928,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QSlider_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -1969,7 +1969,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSlider_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -1993,7 +1993,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSlider_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2017,7 +2017,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSlider_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2041,7 +2041,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QSlider_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2083,7 +2083,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSlider_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2107,7 +2107,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSlider_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2131,7 +2131,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSlider_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2155,7 +2155,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSlider_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2179,7 +2179,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSlider_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2207,9 +2207,9 @@ static void _call_cbs_nativeEvent_6949_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - QIntegerForSizeof::Signed *arg3 = args.read::Signed * > (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + QIntegerForSizeof::Signed *arg3 = gsi::arg_reader::Signed * >() (args, heap); ret.write ((bool)((QSlider_Adaptor *)cls)->cbs_nativeEvent_6949_0 (arg1, arg2, arg3)); } @@ -2269,7 +2269,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSlider_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2332,7 +2332,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QSlider_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -2369,7 +2369,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSlider_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2446,7 +2446,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSlider_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2489,7 +2489,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSlider_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2532,7 +2532,7 @@ static void _call_cbs_sliderChange_3257_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSlider_Adaptor *)cls)->cbs_sliderChange_3257_0 (arg1); } @@ -2602,7 +2602,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSlider_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2626,7 +2626,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSlider_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2687,7 +2687,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSlider_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQSpacerItem.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQSpacerItem.cc index 427d1bf5d..f52c9dbf1 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQSpacerItem.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQSpacerItem.cc @@ -622,7 +622,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QSpacerItem_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -722,7 +722,7 @@ static void _call_cbs_minimumHeightForWidth_c767_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QSpacerItem_Adaptor *)cls)->cbs_minimumHeightForWidth_c767_0 (arg1)); } @@ -764,7 +764,7 @@ static void _call_cbs_setGeometry_1792_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpacerItem_Adaptor *)cls)->cbs_setGeometry_1792_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQSpinBox.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQSpinBox.cc index 55bed65ba..169daf391 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQSpinBox.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQSpinBox.cc @@ -1506,7 +1506,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpinBox_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1530,7 +1530,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpinBox_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1554,7 +1554,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpinBox_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1598,7 +1598,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpinBox_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1622,7 +1622,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpinBox_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1689,7 +1689,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpinBox_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1753,7 +1753,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpinBox_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1777,7 +1777,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpinBox_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1801,7 +1801,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpinBox_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1825,7 +1825,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpinBox_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1849,7 +1849,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpinBox_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1887,7 +1887,7 @@ static void _call_cbs_enterEvent_1727_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEnterEvent *arg1 = args.read (heap); + QEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpinBox_Adaptor *)cls)->cbs_enterEvent_1727_0 (arg1); } @@ -1911,7 +1911,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSpinBox_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1936,8 +1936,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSpinBox_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1960,7 +1960,7 @@ static void _call_cbs_fixup_c1330_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QString &arg1 = args.read (heap); + QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpinBox_Adaptor *)cls)->cbs_fixup_c1330_0 (arg1); } @@ -1984,7 +1984,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpinBox_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -2022,7 +2022,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSpinBox_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -2045,7 +2045,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpinBox_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -2102,7 +2102,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QSpinBox_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -2125,7 +2125,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpinBox_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -2149,7 +2149,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpinBox_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -2173,7 +2173,7 @@ static void _call_cbs_initStyleOption_c2572_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionSpinBox *arg1 = args.read (heap); + QStyleOptionSpinBox *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpinBox_Adaptor *)cls)->cbs_initStyleOption_c2572_0 (arg1); } @@ -2197,7 +2197,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpinBox_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2221,7 +2221,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QSpinBox_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2262,7 +2262,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpinBox_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2286,7 +2286,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpinBox_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2310,7 +2310,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpinBox_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2348,7 +2348,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QSpinBox_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2390,7 +2390,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpinBox_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2414,7 +2414,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpinBox_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2438,7 +2438,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpinBox_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2462,7 +2462,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpinBox_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2486,7 +2486,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpinBox_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2514,9 +2514,9 @@ static void _call_cbs_nativeEvent_6949_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - QIntegerForSizeof::Signed *arg3 = args.read::Signed * > (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + QIntegerForSizeof::Signed *arg3 = gsi::arg_reader::Signed * >() (args, heap); ret.write ((bool)((QSpinBox_Adaptor *)cls)->cbs_nativeEvent_6949_0 (arg1, arg2, arg3)); } @@ -2576,7 +2576,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpinBox_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2618,7 +2618,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QSpinBox_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -2641,7 +2641,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpinBox_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2712,7 +2712,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpinBox_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2755,7 +2755,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpinBox_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2798,7 +2798,7 @@ static void _call_cbs_stepBy_767_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpinBox_Adaptor *)cls)->cbs_stepBy_767_0 (arg1); } @@ -2841,7 +2841,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpinBox_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2883,7 +2883,7 @@ static void _call_cbs_textFromValue_c767_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QSpinBox_Adaptor *)cls)->cbs_textFromValue_c767_0 (arg1)); } @@ -2906,7 +2906,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpinBox_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2951,8 +2951,8 @@ static void _call_cbs_validate_c2171_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QString &arg1 = args.read (heap); - int &arg2 = args.read (heap); + QString &arg1 = gsi::arg_reader() (args, heap); + int &arg2 = gsi::arg_reader() (args, heap); ret.write::target_type > ((qt_gsi::Converter::target_type)((QSpinBox_Adaptor *)cls)->cbs_validate_c2171_0 (arg1, arg2)); } @@ -2993,7 +2993,7 @@ static void _call_cbs_valueFromText_c2025_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QSpinBox_Adaptor *)cls)->cbs_valueFromText_c2025_0 (arg1)); } @@ -3016,7 +3016,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpinBox_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQSplashScreen.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQSplashScreen.cc index c7503246e..b633bfc9e 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQSplashScreen.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQSplashScreen.cc @@ -1219,7 +1219,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplashScreen_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1243,7 +1243,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplashScreen_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1267,7 +1267,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplashScreen_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1291,7 +1291,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplashScreen_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1315,7 +1315,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplashScreen_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1382,7 +1382,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplashScreen_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1446,7 +1446,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplashScreen_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1470,7 +1470,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplashScreen_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1494,7 +1494,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplashScreen_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1518,7 +1518,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplashScreen_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1542,7 +1542,7 @@ static void _call_cbs_drawContents_1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplashScreen_Adaptor *)cls)->cbs_drawContents_1426_0 (arg1); } @@ -1566,7 +1566,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplashScreen_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1590,7 +1590,7 @@ static void _call_cbs_enterEvent_1727_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEnterEvent *arg1 = args.read (heap); + QEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplashScreen_Adaptor *)cls)->cbs_enterEvent_1727_0 (arg1); } @@ -1614,7 +1614,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSplashScreen_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1639,8 +1639,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSplashScreen_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1663,7 +1663,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplashScreen_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1701,7 +1701,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSplashScreen_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -1724,7 +1724,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplashScreen_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -1781,7 +1781,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QSplashScreen_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -1804,7 +1804,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplashScreen_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -1828,7 +1828,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplashScreen_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -1852,7 +1852,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplashScreen_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -1876,7 +1876,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QSplashScreen_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -1917,7 +1917,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplashScreen_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -1941,7 +1941,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplashScreen_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -1965,7 +1965,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplashScreen_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2007,7 +2007,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QSplashScreen_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2049,7 +2049,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplashScreen_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2073,7 +2073,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplashScreen_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2097,7 +2097,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplashScreen_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2121,7 +2121,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplashScreen_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2145,7 +2145,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplashScreen_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2173,9 +2173,9 @@ static void _call_cbs_nativeEvent_6949_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - QIntegerForSizeof::Signed *arg3 = args.read::Signed * > (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + QIntegerForSizeof::Signed *arg3 = gsi::arg_reader::Signed * >() (args, heap); ret.write ((bool)((QSplashScreen_Adaptor *)cls)->cbs_nativeEvent_6949_0 (arg1, arg2, arg3)); } @@ -2235,7 +2235,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplashScreen_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2277,7 +2277,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QSplashScreen_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -2300,7 +2300,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplashScreen_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2352,7 +2352,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplashScreen_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2395,7 +2395,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplashScreen_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2438,7 +2438,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplashScreen_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2462,7 +2462,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplashScreen_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2505,7 +2505,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplashScreen_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQSplitter.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQSplitter.cc index 751bd8e0e..d98da1c87 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQSplitter.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQSplitter.cc @@ -1612,7 +1612,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1636,7 +1636,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1660,7 +1660,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1684,7 +1684,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1729,7 +1729,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1815,7 +1815,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1879,7 +1879,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1903,7 +1903,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1927,7 +1927,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1951,7 +1951,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1994,7 +1994,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -2018,7 +2018,7 @@ static void _call_cbs_enterEvent_1727_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEnterEvent *arg1 = args.read (heap); + QEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter_Adaptor *)cls)->cbs_enterEvent_1727_0 (arg1); } @@ -2042,7 +2042,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSplitter_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -2067,8 +2067,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSplitter_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -2091,7 +2091,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -2129,7 +2129,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSplitter_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -2152,7 +2152,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -2209,7 +2209,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QSplitter_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -2232,7 +2232,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -2256,7 +2256,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -2280,7 +2280,7 @@ static void _call_cbs_initStyleOption_c2356_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionFrame *arg1 = args.read (heap); + QStyleOptionFrame *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter_Adaptor *)cls)->cbs_initStyleOption_c2356_0 (arg1); } @@ -2304,7 +2304,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2328,7 +2328,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QSplitter_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2369,7 +2369,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2393,7 +2393,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2417,7 +2417,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2441,7 +2441,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QSplitter_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2483,7 +2483,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2507,7 +2507,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2531,7 +2531,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2555,7 +2555,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2579,7 +2579,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2629,9 +2629,9 @@ static void _call_cbs_nativeEvent_6949_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - QIntegerForSizeof::Signed *arg3 = args.read::Signed * > (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + QIntegerForSizeof::Signed *arg3 = gsi::arg_reader::Signed * >() (args, heap); ret.write ((bool)((QSplitter_Adaptor *)cls)->cbs_nativeEvent_6949_0 (arg1, arg2, arg3)); } @@ -2691,7 +2691,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2733,7 +2733,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QSplitter_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -2756,7 +2756,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2827,7 +2827,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2870,7 +2870,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2934,7 +2934,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2958,7 +2958,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -3001,7 +3001,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQSplitterHandle.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQSplitterHandle.cc index efb507e12..4ef515114 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQSplitterHandle.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQSplitterHandle.cc @@ -1102,7 +1102,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitterHandle_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1126,7 +1126,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitterHandle_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1150,7 +1150,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitterHandle_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1174,7 +1174,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitterHandle_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1216,7 +1216,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitterHandle_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1283,7 +1283,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitterHandle_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1347,7 +1347,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitterHandle_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1371,7 +1371,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitterHandle_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1395,7 +1395,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitterHandle_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1419,7 +1419,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitterHandle_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1443,7 +1443,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitterHandle_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1467,7 +1467,7 @@ static void _call_cbs_enterEvent_1727_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEnterEvent *arg1 = args.read (heap); + QEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitterHandle_Adaptor *)cls)->cbs_enterEvent_1727_0 (arg1); } @@ -1491,7 +1491,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSplitterHandle_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1516,8 +1516,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSplitterHandle_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1540,7 +1540,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitterHandle_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1578,7 +1578,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSplitterHandle_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -1601,7 +1601,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitterHandle_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -1658,7 +1658,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QSplitterHandle_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -1681,7 +1681,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitterHandle_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -1705,7 +1705,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitterHandle_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -1729,7 +1729,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitterHandle_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -1753,7 +1753,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QSplitterHandle_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -1794,7 +1794,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitterHandle_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -1818,7 +1818,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitterHandle_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -1842,7 +1842,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitterHandle_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -1866,7 +1866,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QSplitterHandle_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -1908,7 +1908,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitterHandle_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -1932,7 +1932,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitterHandle_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -1956,7 +1956,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitterHandle_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -1980,7 +1980,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitterHandle_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2004,7 +2004,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitterHandle_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2051,9 +2051,9 @@ static void _call_cbs_nativeEvent_6949_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - QIntegerForSizeof::Signed *arg3 = args.read::Signed * > (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + QIntegerForSizeof::Signed *arg3 = gsi::arg_reader::Signed * >() (args, heap); ret.write ((bool)((QSplitterHandle_Adaptor *)cls)->cbs_nativeEvent_6949_0 (arg1, arg2, arg3)); } @@ -2113,7 +2113,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitterHandle_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2155,7 +2155,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QSplitterHandle_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -2178,7 +2178,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitterHandle_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2230,7 +2230,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitterHandle_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2273,7 +2273,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitterHandle_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2316,7 +2316,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitterHandle_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2340,7 +2340,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitterHandle_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2383,7 +2383,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitterHandle_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQStackedLayout.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQStackedLayout.cc index c13ef85ab..e0c185b4f 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQStackedLayout.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQStackedLayout.cc @@ -1150,7 +1150,8 @@ static void _call_cbs_addItem_1740_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QLayoutItem *arg1 = args.read (heap); + QLayoutItem *arg1 = gsi::arg_reader() (args, heap); + qt_gsi::qt_keep (arg1); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedLayout_Adaptor *)cls)->cbs_addItem_1740_0 (arg1); } @@ -1210,7 +1211,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedLayout_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1290,7 +1291,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedLayout_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1332,7 +1333,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedLayout_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1356,7 +1357,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QStackedLayout_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1381,8 +1382,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QStackedLayout_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1462,7 +1463,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QStackedLayout_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -1485,7 +1486,7 @@ static void _call_cbs_indexOf_c2010_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QWidget *arg1 = args.read (heap); + const QWidget *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QStackedLayout_Adaptor *)cls)->cbs_indexOf_c2010_0 (arg1)); } @@ -1508,7 +1509,7 @@ static void _call_cbs_indexOf_c2435_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QLayoutItem *arg1 = args.read (heap); + const QLayoutItem *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QStackedLayout_Adaptor *)cls)->cbs_indexOf_c2435_0 (arg1)); } @@ -1588,7 +1589,7 @@ static void _call_cbs_itemAt_c767_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QLayoutItem *)((QStackedLayout_Adaptor *)cls)->cbs_itemAt_c767_0 (arg1)); } @@ -1649,7 +1650,7 @@ static void _call_cbs_minimumHeightForWidth_c767_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QStackedLayout_Adaptor *)cls)->cbs_minimumHeightForWidth_c767_0 (arg1)); } @@ -1731,9 +1732,9 @@ static void _call_cbs_replaceWidget_5361_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - QWidget *arg2 = args.read (heap); - QFlags arg3 = args.read > (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = gsi::arg_reader() (args, heap); + QFlags arg3 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (Qt::FindChildrenRecursively, heap); ret.write ((QLayoutItem *)((QStackedLayout_Adaptor *)cls)->cbs_replaceWidget_5361_1 (arg1, arg2, arg3)); } @@ -1784,7 +1785,7 @@ static void _call_cbs_setGeometry_1792_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedLayout_Adaptor *)cls)->cbs_setGeometry_1792_0 (arg1); } @@ -1808,7 +1809,7 @@ static void _call_cbs_setSpacing_767_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedLayout_Adaptor *)cls)->cbs_setSpacing_767_0 (arg1); } @@ -1889,7 +1890,7 @@ static void _call_cbs_takeAt_767_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QLayoutItem *)((QStackedLayout_Adaptor *)cls)->cbs_takeAt_767_0 (arg1)); } @@ -1912,7 +1913,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedLayout_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQStackedWidget.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQStackedWidget.cc index aa90d3c18..2caa66333 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQStackedWidget.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQStackedWidget.cc @@ -1239,7 +1239,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedWidget_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1263,7 +1263,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedWidget_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1287,7 +1287,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedWidget_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1311,7 +1311,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedWidget_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1335,7 +1335,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedWidget_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1420,7 +1420,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedWidget_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1484,7 +1484,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedWidget_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1508,7 +1508,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedWidget_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1532,7 +1532,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedWidget_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1556,7 +1556,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedWidget_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1599,7 +1599,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedWidget_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1623,7 +1623,7 @@ static void _call_cbs_enterEvent_1727_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEnterEvent *arg1 = args.read (heap); + QEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedWidget_Adaptor *)cls)->cbs_enterEvent_1727_0 (arg1); } @@ -1647,7 +1647,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QStackedWidget_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1672,8 +1672,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QStackedWidget_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1696,7 +1696,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedWidget_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1734,7 +1734,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QStackedWidget_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -1757,7 +1757,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedWidget_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -1814,7 +1814,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QStackedWidget_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -1837,7 +1837,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedWidget_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -1861,7 +1861,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedWidget_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -1885,7 +1885,7 @@ static void _call_cbs_initStyleOption_c2356_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionFrame *arg1 = args.read (heap); + QStyleOptionFrame *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedWidget_Adaptor *)cls)->cbs_initStyleOption_c2356_0 (arg1); } @@ -1909,7 +1909,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedWidget_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -1933,7 +1933,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QStackedWidget_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -1974,7 +1974,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedWidget_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -1998,7 +1998,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedWidget_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2022,7 +2022,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedWidget_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2046,7 +2046,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QStackedWidget_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2088,7 +2088,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedWidget_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2112,7 +2112,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedWidget_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2136,7 +2136,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedWidget_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2160,7 +2160,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedWidget_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2184,7 +2184,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedWidget_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2212,9 +2212,9 @@ static void _call_cbs_nativeEvent_6949_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - QIntegerForSizeof::Signed *arg3 = args.read::Signed * > (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + QIntegerForSizeof::Signed *arg3 = gsi::arg_reader::Signed * >() (args, heap); ret.write ((bool)((QStackedWidget_Adaptor *)cls)->cbs_nativeEvent_6949_0 (arg1, arg2, arg3)); } @@ -2274,7 +2274,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedWidget_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2316,7 +2316,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QStackedWidget_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -2339,7 +2339,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedWidget_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2391,7 +2391,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedWidget_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2434,7 +2434,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedWidget_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2477,7 +2477,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedWidget_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2501,7 +2501,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedWidget_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2544,7 +2544,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedWidget_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQStatusBar.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQStatusBar.cc index db4df642d..c07f05801 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQStatusBar.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQStatusBar.cc @@ -1241,7 +1241,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStatusBar_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1265,7 +1265,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStatusBar_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1289,7 +1289,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStatusBar_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1313,7 +1313,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStatusBar_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1337,7 +1337,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStatusBar_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1404,7 +1404,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStatusBar_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1468,7 +1468,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStatusBar_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1492,7 +1492,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStatusBar_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1516,7 +1516,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStatusBar_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1540,7 +1540,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStatusBar_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1564,7 +1564,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStatusBar_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1588,7 +1588,7 @@ static void _call_cbs_enterEvent_1727_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEnterEvent *arg1 = args.read (heap); + QEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStatusBar_Adaptor *)cls)->cbs_enterEvent_1727_0 (arg1); } @@ -1612,7 +1612,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QStatusBar_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1637,8 +1637,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QStatusBar_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1661,7 +1661,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStatusBar_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1699,7 +1699,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QStatusBar_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -1722,7 +1722,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStatusBar_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -1779,7 +1779,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QStatusBar_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -1802,7 +1802,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStatusBar_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -1841,7 +1841,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStatusBar_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -1865,7 +1865,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStatusBar_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -1889,7 +1889,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QStatusBar_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -1930,7 +1930,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStatusBar_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -1954,7 +1954,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStatusBar_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -1978,7 +1978,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStatusBar_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2020,7 +2020,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QStatusBar_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2062,7 +2062,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStatusBar_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2086,7 +2086,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStatusBar_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2110,7 +2110,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStatusBar_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2134,7 +2134,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStatusBar_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2158,7 +2158,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStatusBar_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2186,9 +2186,9 @@ static void _call_cbs_nativeEvent_6949_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - QIntegerForSizeof::Signed *arg3 = args.read::Signed * > (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + QIntegerForSizeof::Signed *arg3 = gsi::arg_reader::Signed * >() (args, heap); ret.write ((bool)((QStatusBar_Adaptor *)cls)->cbs_nativeEvent_6949_0 (arg1, arg2, arg3)); } @@ -2248,7 +2248,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStatusBar_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2290,7 +2290,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QStatusBar_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -2328,7 +2328,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStatusBar_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2380,7 +2380,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStatusBar_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2423,7 +2423,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStatusBar_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2466,7 +2466,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStatusBar_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2490,7 +2490,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStatusBar_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2533,7 +2533,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStatusBar_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQStyle.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQStyle.cc index 15494dceb..c9c83817e 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQStyle.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQStyle.cc @@ -1551,7 +1551,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStyle_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1575,7 +1575,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStyle_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1617,7 +1617,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStyle_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1647,10 +1647,10 @@ static void _call_cbs_drawComplexControl_c9027_1 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOptionComplex *arg2 = args.read (heap); - QPainter *arg3 = args.read (heap); - const QWidget *arg4 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOptionComplex *arg2 = gsi::arg_reader() (args, heap); + QPainter *arg3 = gsi::arg_reader() (args, heap); + const QWidget *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStyle_Adaptor *)cls)->cbs_drawComplexControl_c9027_1 (arg1, arg2, arg3, arg4); } @@ -1680,10 +1680,10 @@ static void _call_cbs_drawControl_c8285_1 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args.read (heap); - QPainter *arg3 = args.read (heap); - const QWidget *arg4 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = gsi::arg_reader() (args, heap); + QPainter *arg3 = gsi::arg_reader() (args, heap); + const QWidget *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStyle_Adaptor *)cls)->cbs_drawControl_c8285_1 (arg1, arg2, arg3, arg4); } @@ -1713,10 +1713,10 @@ static void _call_cbs_drawItemPixmap_c5678_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QRect &arg2 = args.read (heap); - int arg3 = args.read (heap); - const QPixmap &arg4 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QRect &arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QPixmap &arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStyle_Adaptor *)cls)->cbs_drawItemPixmap_c5678_0 (arg1, arg2, arg3, arg4); } @@ -1752,13 +1752,13 @@ static void _call_cbs_drawItemText_c10604_1 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QRect &arg2 = args.read (heap); - int arg3 = args.read (heap); - const QPalette &arg4 = args.read (heap); - bool arg5 = args.read (heap); - const QString &arg6 = args.read (heap); - const qt_gsi::Converter::target_type & arg7 = args.read::target_type & > (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QRect &arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QPalette &arg4 = gsi::arg_reader() (args, heap); + bool arg5 = gsi::arg_reader() (args, heap); + const QString &arg6 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg7 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QPalette::NoRole), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStyle_Adaptor *)cls)->cbs_drawItemText_c10604_1 (arg1, arg2, arg3, arg4, arg5, arg6, arg7); } @@ -1788,10 +1788,10 @@ static void _call_cbs_drawPrimitive_c8501_1 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args.read (heap); - QPainter *arg3 = args.read (heap); - const QWidget *arg4 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = gsi::arg_reader() (args, heap); + QPainter *arg3 = gsi::arg_reader() (args, heap); + const QWidget *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStyle_Adaptor *)cls)->cbs_drawPrimitive_c8501_1 (arg1, arg2, arg3, arg4); } @@ -1815,7 +1815,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QStyle_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1840,8 +1840,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QStyle_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1868,9 +1868,9 @@ static void _call_cbs_generatedIconPixmap_c5776_0 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QPixmap &arg2 = args.read (heap); - const QStyleOption *arg3 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QPixmap &arg2 = gsi::arg_reader() (args, heap); + const QStyleOption *arg3 = gsi::arg_reader() (args, heap); ret.write ((QPixmap)((QStyle_Adaptor *)cls)->cbs_generatedIconPixmap_c5776_0 (arg1, arg2, arg3)); } @@ -1899,10 +1899,10 @@ static void _call_cbs_hitTestComplexControl_c9517_1 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOptionComplex *arg2 = args.read (heap); - const QPoint &arg3 = args.read (heap); - const QWidget *arg4 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOptionComplex *arg2 = gsi::arg_reader() (args, heap); + const QPoint &arg3 = gsi::arg_reader() (args, heap); + const QWidget *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); ret.write::target_type > ((qt_gsi::Converter::target_type)((QStyle_Adaptor *)cls)->cbs_hitTestComplexControl_c9517_1 (arg1, arg2, arg3, arg4)); } @@ -1947,9 +1947,9 @@ static void _call_cbs_itemPixmapRect_c4360_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); - int arg2 = args.read (heap); - const QPixmap &arg3 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QPixmap &arg3 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QStyle_Adaptor *)cls)->cbs_itemPixmapRect_c4360_0 (arg1, arg2, arg3)); } @@ -1980,11 +1980,11 @@ static void _call_cbs_itemTextRect_c7544_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFontMetrics &arg1 = args.read (heap); - const QRect &arg2 = args.read (heap); - int arg3 = args.read (heap); - bool arg4 = args.read (heap); - const QString &arg5 = args.read (heap); + const QFontMetrics &arg1 = gsi::arg_reader() (args, heap); + const QRect &arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + bool arg4 = gsi::arg_reader() (args, heap); + const QString &arg5 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QStyle_Adaptor *)cls)->cbs_itemTextRect_c7544_0 (arg1, arg2, arg3, arg4, arg5)); } @@ -2015,11 +2015,11 @@ static void _call_cbs_layoutSpacing_c11697_2 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg3 = args.read::target_type & > (heap); - const QStyleOption *arg4 = args.read (heap); - const QWidget *arg5 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg3 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); + const QWidget *arg5 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); ret.write ((int)((QStyle_Adaptor *)cls)->cbs_layoutSpacing_c11697_2 (arg1, arg2, arg3, arg4, arg5)); } @@ -2064,9 +2064,9 @@ static void _call_cbs_pixelMetric_c6642_2 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args.read (heap); - const QWidget *arg3 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); + const QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); ret.write ((int)((QStyle_Adaptor *)cls)->cbs_pixelMetric_c6642_2 (arg1, arg2, arg3)); } @@ -2089,7 +2089,7 @@ static void _call_cbs_polish_1315_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStyle_Adaptor *)cls)->cbs_polish_1315_0 (arg1); } @@ -2113,7 +2113,7 @@ static void _call_cbs_polish_1843_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QApplication *arg1 = args.read (heap); + QApplication *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStyle_Adaptor *)cls)->cbs_polish_1843_0 (arg1); } @@ -2137,7 +2137,7 @@ static void _call_cbs_polish_1418_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPalette &arg1 = args.read (heap); + QPalette &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStyle_Adaptor *)cls)->cbs_polish_1418_0 (arg1); } @@ -2213,10 +2213,10 @@ static void _call_cbs_sizeFromContents_c8477_1 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args.read (heap); - const QSize &arg3 = args.read (heap); - const QWidget *arg4 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = gsi::arg_reader() (args, heap); + const QSize &arg3 = gsi::arg_reader() (args, heap); + const QWidget *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); ret.write ((QSize)((QStyle_Adaptor *)cls)->cbs_sizeFromContents_c8477_1 (arg1, arg2, arg3, arg4)); } @@ -2243,9 +2243,9 @@ static void _call_cbs_standardIcon_c6956_2 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args.read (heap); - const QWidget *arg3 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); + const QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); ret.write ((QIcon)((QStyle_Adaptor *)cls)->cbs_standardIcon_c6956_2 (arg1, arg2, arg3)); } @@ -2291,9 +2291,9 @@ static void _call_cbs_standardPixmap_c6956_2 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args.read (heap); - const QWidget *arg3 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); + const QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); ret.write ((QPixmap)((QStyle_Adaptor *)cls)->cbs_standardPixmap_c6956_2 (arg1, arg2, arg3)); } @@ -2322,10 +2322,10 @@ static void _call_cbs_styleHint_c8615_3 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args.read (heap); - const QWidget *arg3 = args.read (heap); - QStyleHintReturn *arg4 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); + const QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); + QStyleHintReturn *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); ret.write ((int)((QStyle_Adaptor *)cls)->cbs_styleHint_c8615_3 (arg1, arg2, arg3, arg4)); } @@ -2354,10 +2354,10 @@ static void _call_cbs_subControlRect_c9798_1 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOptionComplex *arg2 = args.read (heap); - const qt_gsi::Converter::target_type & arg3 = args.read::target_type & > (heap); - const QWidget *arg4 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOptionComplex *arg2 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg3 = gsi::arg_reader::target_type & >() (args, heap); + const QWidget *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); ret.write ((QRect)((QStyle_Adaptor *)cls)->cbs_subControlRect_c9798_1 (arg1, arg2, arg3, arg4)); } @@ -2384,9 +2384,9 @@ static void _call_cbs_subElementRect_c6528_1 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args.read (heap); - const QWidget *arg3 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = gsi::arg_reader() (args, heap); + const QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); ret.write ((QRect)((QStyle_Adaptor *)cls)->cbs_subElementRect_c6528_1 (arg1, arg2, arg3)); } @@ -2409,7 +2409,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStyle_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2433,7 +2433,7 @@ static void _call_cbs_unpolish_1315_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStyle_Adaptor *)cls)->cbs_unpolish_1315_0 (arg1); } @@ -2457,7 +2457,7 @@ static void _call_cbs_unpolish_1843_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QApplication *arg1 = args.read (heap); + QApplication *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStyle_Adaptor *)cls)->cbs_unpolish_1843_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQStylePlugin.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQStylePlugin.cc index ee5c74ea7..a2cf75f0a 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQStylePlugin.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQStylePlugin.cc @@ -322,7 +322,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStylePlugin_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -346,7 +346,7 @@ static void _call_cbs_create_2025_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QStyle *)((QStylePlugin_Adaptor *)cls)->cbs_create_2025_0 (arg1)); } @@ -369,7 +369,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStylePlugin_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -411,7 +411,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStylePlugin_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -435,7 +435,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QStylePlugin_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -460,8 +460,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QStylePlugin_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -566,7 +566,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStylePlugin_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQStyledItemDelegate.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQStyledItemDelegate.cc index fc972702b..20f1bb3a7 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQStyledItemDelegate.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQStyledItemDelegate.cc @@ -721,7 +721,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStyledItemDelegate_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -788,9 +788,9 @@ static void _call_cbs_createEditor_c6860_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - const QStyleOptionViewItem &arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionViewItem &arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); ret.write ((QWidget *)((QStyledItemDelegate_Adaptor *)cls)->cbs_createEditor_c6860_0 (arg1, arg2, arg3)); } @@ -813,7 +813,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStyledItemDelegate_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -839,8 +839,8 @@ static void _call_cbs_destroyEditor_c3602_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStyledItemDelegate_Adaptor *)cls)->cbs_destroyEditor_c3602_0 (arg1, arg2); } @@ -882,7 +882,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStyledItemDelegate_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -908,8 +908,8 @@ static void _call_cbs_displayText_c3997_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVariant &arg1 = args.read (heap); - const QLocale &arg2 = args.read (heap); + const QVariant &arg1 = gsi::arg_reader() (args, heap); + const QLocale &arg2 = gsi::arg_reader() (args, heap); ret.write ((QString)((QStyledItemDelegate_Adaptor *)cls)->cbs_displayText_c3997_0 (arg1, arg2)); } @@ -938,10 +938,10 @@ static void _call_cbs_editorEvent_9073_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); - QAbstractItemModel *arg2 = args.read (heap); - const QStyleOptionViewItem &arg3 = args.read (heap); - const QModelIndex &arg4 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); + QAbstractItemModel *arg2 = gsi::arg_reader() (args, heap); + const QStyleOptionViewItem &arg3 = gsi::arg_reader() (args, heap); + const QModelIndex &arg4 = gsi::arg_reader() (args, heap); ret.write ((bool)((QStyledItemDelegate_Adaptor *)cls)->cbs_editorEvent_9073_0 (arg1, arg2, arg3, arg4)); } @@ -964,7 +964,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QStyledItemDelegate_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -989,8 +989,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QStyledItemDelegate_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1019,10 +1019,10 @@ static void _call_cbs_helpEvent_9380_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHelpEvent *arg1 = args.read (heap); - QAbstractItemView *arg2 = args.read (heap); - const QStyleOptionViewItem &arg3 = args.read (heap); - const QModelIndex &arg4 = args.read (heap); + QHelpEvent *arg1 = gsi::arg_reader() (args, heap); + QAbstractItemView *arg2 = gsi::arg_reader() (args, heap); + const QStyleOptionViewItem &arg3 = gsi::arg_reader() (args, heap); + const QModelIndex &arg4 = gsi::arg_reader() (args, heap); ret.write ((bool)((QStyledItemDelegate_Adaptor *)cls)->cbs_helpEvent_9380_0 (arg1, arg2, arg3, arg4)); } @@ -1047,8 +1047,8 @@ static void _call_cbs_initStyleOption_c4962_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionViewItem *arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + QStyleOptionViewItem *arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStyledItemDelegate_Adaptor *)cls)->cbs_initStyleOption_c4962_0 (arg1, arg2); } @@ -1112,9 +1112,9 @@ static void _call_cbs_paint_c6971_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QStyleOptionViewItem &arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionViewItem &arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStyledItemDelegate_Adaptor *)cls)->cbs_paint_c6971_0 (arg1, arg2, arg3); } @@ -1205,8 +1205,8 @@ static void _call_cbs_setEditorData_c3602_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStyledItemDelegate_Adaptor *)cls)->cbs_setEditorData_c3602_0 (arg1, arg2); } @@ -1234,9 +1234,9 @@ static void _call_cbs_setModelData_c5913_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - QAbstractItemModel *arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + QAbstractItemModel *arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStyledItemDelegate_Adaptor *)cls)->cbs_setModelData_c5913_0 (arg1, arg2, arg3); } @@ -1262,8 +1262,8 @@ static void _call_cbs_sizeHint_c5653_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStyleOptionViewItem &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + const QStyleOptionViewItem &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); ret.write ((QSize)((QStyledItemDelegate_Adaptor *)cls)->cbs_sizeHint_c5653_0 (arg1, arg2)); } @@ -1304,7 +1304,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStyledItemDelegate_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -1332,9 +1332,9 @@ static void _call_cbs_updateEditorGeometry_c6860_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - const QStyleOptionViewItem &arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionViewItem &arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStyledItemDelegate_Adaptor *)cls)->cbs_updateEditorGeometry_c6860_0 (arg1, arg2, arg3); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQSwipeGesture.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQSwipeGesture.cc index 461e3257b..78cf291e6 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQSwipeGesture.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQSwipeGesture.cc @@ -354,7 +354,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSwipeGesture_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -378,7 +378,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSwipeGesture_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -420,7 +420,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSwipeGesture_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -444,7 +444,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSwipeGesture_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -469,8 +469,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSwipeGesture_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -575,7 +575,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSwipeGesture_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQSystemTrayIcon.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQSystemTrayIcon.cc index cb8713b2f..6bb1b6333 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQSystemTrayIcon.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQSystemTrayIcon.cc @@ -642,7 +642,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSystemTrayIcon_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -666,7 +666,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSystemTrayIcon_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -708,7 +708,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSystemTrayIcon_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -732,7 +732,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSystemTrayIcon_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -757,8 +757,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSystemTrayIcon_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -877,7 +877,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSystemTrayIcon_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQTabBar.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQTabBar.cc index c71a29708..b3c39d2af 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQTabBar.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQTabBar.cc @@ -2294,7 +2294,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -2318,7 +2318,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -2342,7 +2342,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -2366,7 +2366,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -2390,7 +2390,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -2475,7 +2475,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -2539,7 +2539,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -2563,7 +2563,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -2587,7 +2587,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -2611,7 +2611,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -2635,7 +2635,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -2659,7 +2659,7 @@ static void _call_cbs_enterEvent_1727_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEnterEvent *arg1 = args.read (heap); + QEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar_Adaptor *)cls)->cbs_enterEvent_1727_0 (arg1); } @@ -2683,7 +2683,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTabBar_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -2708,8 +2708,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTabBar_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -2732,7 +2732,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -2770,7 +2770,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTabBar_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -2793,7 +2793,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -2850,7 +2850,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTabBar_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -2873,7 +2873,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -2897,7 +2897,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -2923,8 +2923,8 @@ static void _call_cbs_initStyleOption_c2803_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionTab *arg1 = args.read (heap); - int arg2 = args.read (heap); + QStyleOptionTab *arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar_Adaptor *)cls)->cbs_initStyleOption_c2803_0 (arg1, arg2); } @@ -2948,7 +2948,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2972,7 +2972,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QTabBar_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -3013,7 +3013,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -3037,7 +3037,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -3061,7 +3061,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -3085,7 +3085,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QTabBar_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -3127,7 +3127,7 @@ static void _call_cbs_minimumTabSizeHint_c767_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QSize)((QTabBar_Adaptor *)cls)->cbs_minimumTabSizeHint_c767_0 (arg1)); } @@ -3150,7 +3150,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -3174,7 +3174,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -3198,7 +3198,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -3222,7 +3222,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -3246,7 +3246,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -3274,9 +3274,9 @@ static void _call_cbs_nativeEvent_6949_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - QIntegerForSizeof::Signed *arg3 = args.read::Signed * > (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + QIntegerForSizeof::Signed *arg3 = gsi::arg_reader::Signed * >() (args, heap); ret.write ((bool)((QTabBar_Adaptor *)cls)->cbs_nativeEvent_6949_0 (arg1, arg2, arg3)); } @@ -3336,7 +3336,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -3378,7 +3378,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QTabBar_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -3401,7 +3401,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -3453,7 +3453,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -3496,7 +3496,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -3593,7 +3593,7 @@ static void _call_cbs_tabInserted_767_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar_Adaptor *)cls)->cbs_tabInserted_767_0 (arg1); } @@ -3658,7 +3658,7 @@ static void _call_cbs_tabRemoved_767_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar_Adaptor *)cls)->cbs_tabRemoved_767_0 (arg1); } @@ -3682,7 +3682,7 @@ static void _call_cbs_tabSizeHint_c767_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QSize)((QTabBar_Adaptor *)cls)->cbs_tabSizeHint_c767_0 (arg1)); } @@ -3705,7 +3705,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -3729,7 +3729,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -3772,7 +3772,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQTabWidget.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQTabWidget.cc index cc39f0279..3d1831d30 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQTabWidget.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQTabWidget.cc @@ -2089,7 +2089,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -2113,7 +2113,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -2137,7 +2137,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -2161,7 +2161,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -2185,7 +2185,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -2270,7 +2270,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -2334,7 +2334,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -2358,7 +2358,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -2382,7 +2382,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -2406,7 +2406,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -2430,7 +2430,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -2454,7 +2454,7 @@ static void _call_cbs_enterEvent_1727_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEnterEvent *arg1 = args.read (heap); + QEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget_Adaptor *)cls)->cbs_enterEvent_1727_0 (arg1); } @@ -2478,7 +2478,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTabWidget_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -2503,8 +2503,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTabWidget_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -2527,7 +2527,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -2565,7 +2565,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTabWidget_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -2588,7 +2588,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -2645,7 +2645,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTabWidget_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -2668,7 +2668,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -2692,7 +2692,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -2716,7 +2716,7 @@ static void _call_cbs_initStyleOption_c3247_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionTabWidgetFrame *arg1 = args.read (heap); + QStyleOptionTabWidgetFrame *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget_Adaptor *)cls)->cbs_initStyleOption_c3247_0 (arg1); } @@ -2740,7 +2740,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2764,7 +2764,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QTabWidget_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2805,7 +2805,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2829,7 +2829,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2853,7 +2853,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2877,7 +2877,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QTabWidget_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2919,7 +2919,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2943,7 +2943,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2967,7 +2967,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2991,7 +2991,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -3015,7 +3015,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -3043,9 +3043,9 @@ static void _call_cbs_nativeEvent_6949_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - QIntegerForSizeof::Signed *arg3 = args.read::Signed * > (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + QIntegerForSizeof::Signed *arg3 = gsi::arg_reader::Signed * >() (args, heap); ret.write ((bool)((QTabWidget_Adaptor *)cls)->cbs_nativeEvent_6949_0 (arg1, arg2, arg3)); } @@ -3105,7 +3105,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -3147,7 +3147,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QTabWidget_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -3170,7 +3170,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -3241,7 +3241,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -3284,7 +3284,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -3381,7 +3381,7 @@ static void _call_cbs_tabInserted_767_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget_Adaptor *)cls)->cbs_tabInserted_767_0 (arg1); } @@ -3405,7 +3405,7 @@ static void _call_cbs_tabRemoved_767_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget_Adaptor *)cls)->cbs_tabRemoved_767_0 (arg1); } @@ -3429,7 +3429,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -3453,7 +3453,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -3496,7 +3496,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQTableView.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQTableView.cc index 6a519b924..a4f01f66b 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQTableView.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQTableView.cc @@ -2854,7 +2854,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -2896,7 +2896,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -2920,7 +2920,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -2964,8 +2964,8 @@ static void _call_cbs_closeEditor_4926_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_closeEditor_4926_0 (arg1, arg2); } @@ -2989,7 +2989,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -3085,7 +3085,7 @@ static void _call_cbs_commitData_1315_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_commitData_1315_0 (arg1); } @@ -3109,7 +3109,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -3160,8 +3160,8 @@ static void _call_cbs_currentChanged_4682_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_currentChanged_4682_0 (arg1, arg2); } @@ -3203,7 +3203,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -3231,9 +3231,9 @@ static void _call_cbs_dataChanged_6833_1 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); - const QList &arg3 = args.read & > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); + const QList &arg3 = args ? gsi::arg_reader & >() (args, heap) : gsi::arg_maker & >() (QList(), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_dataChanged_6833_1 (arg1, arg2, arg3); } @@ -3311,7 +3311,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -3388,7 +3388,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -3412,7 +3412,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -3436,7 +3436,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -3479,7 +3479,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -3521,9 +3521,9 @@ static void _call_cbs_edit_6773_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - QEvent *arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + QEvent *arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTableView_Adaptor *)cls)->cbs_edit_6773_0 (arg1, arg2, arg3)); } @@ -3546,7 +3546,7 @@ static void _call_cbs_editorDestroyed_1302_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_editorDestroyed_1302_0 (arg1); } @@ -3570,7 +3570,7 @@ static void _call_cbs_enterEvent_1727_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEnterEvent *arg1 = args.read (heap); + QEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_enterEvent_1727_0 (arg1); } @@ -3612,7 +3612,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTableView_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -3637,8 +3637,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTableView_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -3676,7 +3676,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -3714,7 +3714,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTableView_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -3737,7 +3737,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -3794,7 +3794,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTableView_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -3817,7 +3817,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -3860,7 +3860,7 @@ static void _call_cbs_horizontalScrollbarAction_767_0 (const qt_gsi::GenericMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_horizontalScrollbarAction_767_0 (arg1); } @@ -3884,7 +3884,7 @@ static void _call_cbs_horizontalScrollbarValueChanged_767_0 (const qt_gsi::Gener { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_horizontalScrollbarValueChanged_767_0 (arg1); } @@ -3926,7 +3926,7 @@ static void _call_cbs_indexAt_c1916_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QTableView_Adaptor *)cls)->cbs_indexAt_c1916_0 (arg1)); } @@ -3949,7 +3949,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -3973,7 +3973,7 @@ static void _call_cbs_initStyleOption_c2356_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionFrame *arg1 = args.read (heap); + QStyleOptionFrame *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_initStyleOption_c2356_0 (arg1); } @@ -3997,7 +3997,7 @@ static void _call_cbs_initViewItemOption_c2675_0 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionViewItem *arg1 = args.read (heap); + QStyleOptionViewItem *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_initViewItemOption_c2675_0 (arg1); } @@ -4021,7 +4021,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -4045,7 +4045,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QTableView_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -4068,7 +4068,7 @@ static void _call_cbs_isIndexHidden_c2395_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTableView_Adaptor *)cls)->cbs_isIndexHidden_c2395_0 (arg1)); } @@ -4109,7 +4109,7 @@ static void _call_cbs_itemDelegateForIndex_c2395_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QAbstractItemDelegate *)((QTableView_Adaptor *)cls)->cbs_itemDelegateForIndex_c2395_0 (arg1)); } @@ -4132,7 +4132,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -4156,7 +4156,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -4180,7 +4180,7 @@ static void _call_cbs_keyboardSearch_2025_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_keyboardSearch_2025_0 (arg1); } @@ -4204,7 +4204,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -4228,7 +4228,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QTableView_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -4270,7 +4270,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -4294,7 +4294,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -4318,7 +4318,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -4342,7 +4342,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -4368,8 +4368,8 @@ static void _call_cbs_moveCursor_6476_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); - QFlags arg2 = args.read > (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); ret.write ((QModelIndex)((QTableView_Adaptor *)cls)->cbs_moveCursor_6476_0 (arg1, arg2)); } @@ -4392,7 +4392,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -4420,9 +4420,9 @@ static void _call_cbs_nativeEvent_6949_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - QIntegerForSizeof::Signed *arg3 = args.read::Signed * > (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + QIntegerForSizeof::Signed *arg3 = gsi::arg_reader::Signed * >() (args, heap); ret.write ((bool)((QTableView_Adaptor *)cls)->cbs_nativeEvent_6949_0 (arg1, arg2, arg3)); } @@ -4482,7 +4482,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -4542,7 +4542,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QTableView_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -4585,7 +4585,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -4685,9 +4685,9 @@ static void _call_cbs_rowsAboutToBeRemoved_3713_0 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_rowsAboutToBeRemoved_3713_0 (arg1, arg2, arg3); } @@ -4715,9 +4715,9 @@ static void _call_cbs_rowsInserted_3713_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_rowsInserted_3713_0 (arg1, arg2, arg3); } @@ -4758,8 +4758,8 @@ static void _call_cbs_scrollContentsBy_1426_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_scrollContentsBy_1426_0 (arg1, arg2); } @@ -4807,8 +4807,8 @@ static void _call_cbs_scrollTo_5576_1 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QAbstractItemView::EnsureVisible), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_scrollTo_5576_1 (arg1, arg2); } @@ -4873,8 +4873,8 @@ static void _call_cbs_selectionChanged_5346_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QItemSelection &arg1 = args.read (heap); - const QItemSelection &arg2 = args.read (heap); + const QItemSelection &arg1 = gsi::arg_reader() (args, heap); + const QItemSelection &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_selectionChanged_5346_0 (arg1, arg2); } @@ -4900,8 +4900,8 @@ static void _call_cbs_selectionCommand_c4199_1 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QEvent *arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QEvent *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); ret.write > ((QFlags)((QTableView_Adaptor *)cls)->cbs_selectionCommand_c4199_1 (arg1, arg2)); } @@ -4971,7 +4971,7 @@ static void _call_cbs_setModel_2419_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractItemModel *arg1 = args.read (heap); + QAbstractItemModel *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_setModel_2419_0 (arg1); } @@ -4995,7 +4995,7 @@ static void _call_cbs_setRootIndex_2395_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_setRootIndex_2395_0 (arg1); } @@ -5021,8 +5021,8 @@ static void _call_cbs_setSelection_6155_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); - QFlags arg2 = args.read > (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_setSelection_6155_0 (arg1, arg2); } @@ -5046,7 +5046,7 @@ static void _call_cbs_setSelectionModel_2533_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QItemSelectionModel *arg1 = args.read (heap); + QItemSelectionModel *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_setSelectionModel_2533_0 (arg1); } @@ -5136,7 +5136,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -5160,7 +5160,7 @@ static void _call_cbs_setupViewport_1315_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_setupViewport_1315_0 (arg1); } @@ -5203,7 +5203,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -5246,7 +5246,7 @@ static void _call_cbs_sizeHintForColumn_c767_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTableView_Adaptor *)cls)->cbs_sizeHintForColumn_c767_0 (arg1)); } @@ -5269,7 +5269,7 @@ static void _call_cbs_sizeHintForRow_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTableView_Adaptor *)cls)->cbs_sizeHintForRow_c767_0 (arg1)); } @@ -5307,7 +5307,7 @@ static void _call_cbs_startDrag_2456_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_startDrag_2456_0 (arg1); } @@ -5360,7 +5360,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -5384,7 +5384,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -5506,7 +5506,7 @@ static void _call_cbs_verticalScrollbarAction_767_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_verticalScrollbarAction_767_0 (arg1); } @@ -5530,7 +5530,7 @@ static void _call_cbs_verticalScrollbarValueChanged_767_0 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_verticalScrollbarValueChanged_767_0 (arg1); } @@ -5568,7 +5568,7 @@ static void _call_cbs_viewportEvent_1217_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTableView_Adaptor *)cls)->cbs_viewportEvent_1217_0 (arg1)); } @@ -5624,7 +5624,7 @@ static void _call_cbs_visualRect_c2395_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QTableView_Adaptor *)cls)->cbs_visualRect_c2395_0 (arg1)); } @@ -5647,7 +5647,7 @@ static void _call_cbs_visualRegionForSelection_c2727_0 (const qt_gsi::GenericMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QItemSelection &arg1 = args.read (heap); + const QItemSelection &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRegion)((QTableView_Adaptor *)cls)->cbs_visualRegionForSelection_c2727_0 (arg1)); } @@ -5670,7 +5670,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQTableWidget.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQTableWidget.cc index fce726f83..b9d83d999 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQTableWidget.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQTableWidget.cc @@ -3229,7 +3229,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -3397,7 +3397,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -3421,7 +3421,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -3465,8 +3465,8 @@ static void _call_cbs_closeEditor_4926_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_closeEditor_4926_0 (arg1, arg2); } @@ -3490,7 +3490,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -3586,7 +3586,7 @@ static void _call_cbs_commitData_1315_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_commitData_1315_0 (arg1); } @@ -3610,7 +3610,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -3688,8 +3688,8 @@ static void _call_cbs_currentChanged_4682_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_currentChanged_4682_0 (arg1, arg2); } @@ -3752,7 +3752,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -3780,9 +3780,9 @@ static void _call_cbs_dataChanged_6833_1 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); - const QList &arg3 = args.read & > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); + const QList &arg3 = args ? gsi::arg_reader & >() (args, heap) : gsi::arg_maker & >() (QList(), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_dataChanged_6833_1 (arg1, arg2, arg3); } @@ -3860,7 +3860,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -3937,7 +3937,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -3961,7 +3961,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -3985,7 +3985,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -4028,7 +4028,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -4072,10 +4072,10 @@ static void _call_cbs_dropMimeData_5138_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QMimeData *arg3 = args.read (heap); - const qt_gsi::Converter::target_type & arg4 = args.read::target_type & > (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QMimeData *arg3 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg4 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((bool)((QTableWidget_Adaptor *)cls)->cbs_dropMimeData_5138_0 (arg1, arg2, arg3, arg4)); } @@ -4102,9 +4102,9 @@ static void _call_cbs_edit_6773_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - QEvent *arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + QEvent *arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTableWidget_Adaptor *)cls)->cbs_edit_6773_0 (arg1, arg2, arg3)); } @@ -4127,7 +4127,7 @@ static void _call_cbs_editorDestroyed_1302_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_editorDestroyed_1302_0 (arg1); } @@ -4151,7 +4151,7 @@ static void _call_cbs_enterEvent_1727_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEnterEvent *arg1 = args.read (heap); + QEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_enterEvent_1727_0 (arg1); } @@ -4193,7 +4193,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTableWidget_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -4218,8 +4218,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTableWidget_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -4257,7 +4257,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -4295,7 +4295,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTableWidget_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -4318,7 +4318,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -4375,7 +4375,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTableWidget_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -4398,7 +4398,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -4441,7 +4441,7 @@ static void _call_cbs_horizontalScrollbarAction_767_0 (const qt_gsi::GenericMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_horizontalScrollbarAction_767_0 (arg1); } @@ -4465,7 +4465,7 @@ static void _call_cbs_horizontalScrollbarValueChanged_767_0 (const qt_gsi::Gener { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_horizontalScrollbarValueChanged_767_0 (arg1); } @@ -4507,7 +4507,7 @@ static void _call_cbs_indexAt_c1916_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QTableWidget_Adaptor *)cls)->cbs_indexAt_c1916_0 (arg1)); } @@ -4530,7 +4530,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -4554,7 +4554,7 @@ static void _call_cbs_initStyleOption_c2356_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionFrame *arg1 = args.read (heap); + QStyleOptionFrame *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_initStyleOption_c2356_0 (arg1); } @@ -4578,7 +4578,7 @@ static void _call_cbs_initViewItemOption_c2675_0 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionViewItem *arg1 = args.read (heap); + QStyleOptionViewItem *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_initViewItemOption_c2675_0 (arg1); } @@ -4602,7 +4602,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -4626,7 +4626,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QTableWidget_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -4649,7 +4649,7 @@ static void _call_cbs_isIndexHidden_c2395_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTableWidget_Adaptor *)cls)->cbs_isIndexHidden_c2395_0 (arg1)); } @@ -4744,7 +4744,7 @@ static void _call_cbs_itemDelegateForIndex_c2395_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QAbstractItemDelegate *)((QTableWidget_Adaptor *)cls)->cbs_itemDelegateForIndex_c2395_0 (arg1)); } @@ -4835,7 +4835,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -4859,7 +4859,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -4883,7 +4883,7 @@ static void _call_cbs_keyboardSearch_2025_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_keyboardSearch_2025_0 (arg1); } @@ -4907,7 +4907,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -4931,7 +4931,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QTableWidget_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -4954,7 +4954,7 @@ static void _call_cbs_mimeData_c3694_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); ret.write ((QMimeData *)((QTableWidget_Adaptor *)cls)->cbs_mimeData_c3694_0 (arg1)); } @@ -5015,7 +5015,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -5039,7 +5039,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -5063,7 +5063,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -5087,7 +5087,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -5113,8 +5113,8 @@ static void _call_cbs_moveCursor_6476_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); - QFlags arg2 = args.read > (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); ret.write ((QModelIndex)((QTableWidget_Adaptor *)cls)->cbs_moveCursor_6476_0 (arg1, arg2)); } @@ -5137,7 +5137,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -5165,9 +5165,9 @@ static void _call_cbs_nativeEvent_6949_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - QIntegerForSizeof::Signed *arg3 = args.read::Signed * > (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + QIntegerForSizeof::Signed *arg3 = gsi::arg_reader::Signed * >() (args, heap); ret.write ((bool)((QTableWidget_Adaptor *)cls)->cbs_nativeEvent_6949_0 (arg1, arg2, arg3)); } @@ -5227,7 +5227,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -5287,7 +5287,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QTableWidget_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -5330,7 +5330,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -5430,9 +5430,9 @@ static void _call_cbs_rowsAboutToBeRemoved_3713_0 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_rowsAboutToBeRemoved_3713_0 (arg1, arg2, arg3); } @@ -5460,9 +5460,9 @@ static void _call_cbs_rowsInserted_3713_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_rowsInserted_3713_0 (arg1, arg2, arg3); } @@ -5503,8 +5503,8 @@ static void _call_cbs_scrollContentsBy_1426_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_scrollContentsBy_1426_0 (arg1, arg2); } @@ -5552,8 +5552,8 @@ static void _call_cbs_scrollTo_5576_1 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QAbstractItemView::EnsureVisible), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_scrollTo_5576_1 (arg1, arg2); } @@ -5618,8 +5618,8 @@ static void _call_cbs_selectionChanged_5346_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QItemSelection &arg1 = args.read (heap); - const QItemSelection &arg2 = args.read (heap); + const QItemSelection &arg1 = gsi::arg_reader() (args, heap); + const QItemSelection &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_selectionChanged_5346_0 (arg1, arg2); } @@ -5645,8 +5645,8 @@ static void _call_cbs_selectionCommand_c4199_1 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QEvent *arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QEvent *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); ret.write > ((QFlags)((QTableWidget_Adaptor *)cls)->cbs_selectionCommand_c4199_1 (arg1, arg2)); } @@ -5716,7 +5716,7 @@ static void _call_cbs_setRootIndex_2395_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_setRootIndex_2395_0 (arg1); } @@ -5742,8 +5742,8 @@ static void _call_cbs_setSelection_6155_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); - QFlags arg2 = args.read > (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_setSelection_6155_0 (arg1, arg2); } @@ -5767,7 +5767,7 @@ static void _call_cbs_setSelectionModel_2533_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QItemSelectionModel *arg1 = args.read (heap); + QItemSelectionModel *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_setSelectionModel_2533_0 (arg1); } @@ -5857,7 +5857,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -5881,7 +5881,7 @@ static void _call_cbs_setupViewport_1315_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_setupViewport_1315_0 (arg1); } @@ -5924,7 +5924,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -5967,7 +5967,7 @@ static void _call_cbs_sizeHintForColumn_c767_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTableWidget_Adaptor *)cls)->cbs_sizeHintForColumn_c767_0 (arg1)); } @@ -5990,7 +5990,7 @@ static void _call_cbs_sizeHintForRow_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTableWidget_Adaptor *)cls)->cbs_sizeHintForRow_c767_0 (arg1)); } @@ -6028,7 +6028,7 @@ static void _call_cbs_startDrag_2456_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_startDrag_2456_0 (arg1); } @@ -6100,7 +6100,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -6124,7 +6124,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -6246,7 +6246,7 @@ static void _call_cbs_verticalScrollbarAction_767_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_verticalScrollbarAction_767_0 (arg1); } @@ -6270,7 +6270,7 @@ static void _call_cbs_verticalScrollbarValueChanged_767_0 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_verticalScrollbarValueChanged_767_0 (arg1); } @@ -6308,7 +6308,7 @@ static void _call_cbs_viewportEvent_1217_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTableWidget_Adaptor *)cls)->cbs_viewportEvent_1217_0 (arg1)); } @@ -6364,7 +6364,7 @@ static void _call_cbs_visualRect_c2395_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QTableWidget_Adaptor *)cls)->cbs_visualRect_c2395_0 (arg1)); } @@ -6387,7 +6387,7 @@ static void _call_cbs_visualRegionForSelection_c2727_0 (const qt_gsi::GenericMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QItemSelection &arg1 = args.read (heap); + const QItemSelection &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRegion)((QTableWidget_Adaptor *)cls)->cbs_visualRegionForSelection_c2727_0 (arg1)); } @@ -6410,7 +6410,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQTableWidgetItem.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQTableWidgetItem.cc index 227b7511a..bb2c35a92 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQTableWidgetItem.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQTableWidgetItem.cc @@ -1006,7 +1006,7 @@ static void _call_cbs_data_c767_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QTableWidgetItem_Adaptor *)cls)->cbs_data_c767_0 (arg1)); } @@ -1029,7 +1029,7 @@ static void _call_cbs_operator_lt__c2893_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTableWidgetItem &arg1 = args.read (heap); + const QTableWidgetItem &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTableWidgetItem_Adaptor *)cls)->cbs_operator_lt__c2893_0 (arg1)); } @@ -1052,7 +1052,7 @@ static void _call_cbs_read_1697_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDataStream &arg1 = args.read (heap); + QDataStream &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidgetItem_Adaptor *)cls)->cbs_read_1697_0 (arg1); } @@ -1078,8 +1078,8 @@ static void _call_cbs_setData_2778_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidgetItem_Adaptor *)cls)->cbs_setData_2778_0 (arg1, arg2); } @@ -1103,7 +1103,7 @@ static void _call_cbs_write_c1697_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDataStream &arg1 = args.read (heap); + QDataStream &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidgetItem_Adaptor *)cls)->cbs_write_c1697_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQTapAndHoldGesture.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQTapAndHoldGesture.cc index 3645d1c5b..7a109afd7 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQTapAndHoldGesture.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQTapAndHoldGesture.cc @@ -359,7 +359,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTapAndHoldGesture_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -383,7 +383,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTapAndHoldGesture_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -425,7 +425,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTapAndHoldGesture_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -449,7 +449,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTapAndHoldGesture_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -474,8 +474,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTapAndHoldGesture_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -580,7 +580,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTapAndHoldGesture_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQTapGesture.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQTapGesture.cc index fd2d85ef4..03d366416 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQTapGesture.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQTapGesture.cc @@ -322,7 +322,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTapGesture_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -346,7 +346,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTapGesture_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -388,7 +388,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTapGesture_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -412,7 +412,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTapGesture_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -437,8 +437,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTapGesture_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -543,7 +543,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTapGesture_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQTextBrowser.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQTextBrowser.cc index d8fed82fc..fb617b06f 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQTextBrowser.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQTextBrowser.cc @@ -1755,7 +1755,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1835,7 +1835,7 @@ static void _call_cbs_canInsertFromMimeData_c2168_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMimeData *arg1 = args.read (heap); + const QMimeData *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextBrowser_Adaptor *)cls)->cbs_canInsertFromMimeData_c2168_0 (arg1)); } @@ -1858,7 +1858,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1882,7 +1882,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1906,7 +1906,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1930,7 +1930,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -2066,7 +2066,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -2130,7 +2130,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -2156,8 +2156,8 @@ static void _call_cbs_doSetSource_4736_1 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QUrl &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QUrl &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QTextDocument::UnknownResource), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser_Adaptor *)cls)->cbs_doSetSource_4736_1 (arg1, arg2); } @@ -2181,7 +2181,7 @@ static void _call_cbs_doSetTextCursor_2453_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextCursor &arg1 = args.read (heap); + const QTextCursor &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser_Adaptor *)cls)->cbs_doSetTextCursor_2453_0 (arg1); } @@ -2205,7 +2205,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -2229,7 +2229,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -2253,7 +2253,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -2296,7 +2296,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -2320,7 +2320,7 @@ static void _call_cbs_enterEvent_1727_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEnterEvent *arg1 = args.read (heap); + QEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser_Adaptor *)cls)->cbs_enterEvent_1727_0 (arg1); } @@ -2344,7 +2344,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextBrowser_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -2369,8 +2369,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextBrowser_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -2393,7 +2393,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -2431,7 +2431,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextBrowser_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -2454,7 +2454,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -2549,7 +2549,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTextBrowser_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -2572,7 +2572,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -2648,7 +2648,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -2672,7 +2672,7 @@ static void _call_cbs_initStyleOption_c2356_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionFrame *arg1 = args.read (heap); + QStyleOptionFrame *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser_Adaptor *)cls)->cbs_initStyleOption_c2356_0 (arg1); } @@ -2696,7 +2696,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2720,7 +2720,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QTextBrowser_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2743,7 +2743,7 @@ static void _call_cbs_insertFromMimeData_2168_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMimeData *arg1 = args.read (heap); + const QMimeData *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser_Adaptor *)cls)->cbs_insertFromMimeData_2168_0 (arg1); } @@ -2785,7 +2785,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2809,7 +2809,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2833,7 +2833,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2859,8 +2859,8 @@ static void _call_cbs_loadResource_2360_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QUrl &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QUrl &arg2 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QTextBrowser_Adaptor *)cls)->cbs_loadResource_2360_0 (arg1, arg2)); } @@ -2883,7 +2883,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QTextBrowser_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2925,7 +2925,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2949,7 +2949,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2973,7 +2973,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2997,7 +2997,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -3021,7 +3021,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -3049,9 +3049,9 @@ static void _call_cbs_nativeEvent_6949_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - QIntegerForSizeof::Signed *arg3 = args.read::Signed * > (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + QIntegerForSizeof::Signed *arg3 = gsi::arg_reader::Signed * >() (args, heap); ret.write ((bool)((QTextBrowser_Adaptor *)cls)->cbs_nativeEvent_6949_0 (arg1, arg2, arg3)); } @@ -3111,7 +3111,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -3153,7 +3153,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QTextBrowser_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -3214,7 +3214,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -3240,8 +3240,8 @@ static void _call_cbs_scrollContentsBy_1426_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser_Adaptor *)cls)->cbs_scrollContentsBy_1426_0 (arg1, arg2); } @@ -3354,7 +3354,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -3378,7 +3378,7 @@ static void _call_cbs_setupViewport_1315_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser_Adaptor *)cls)->cbs_setupViewport_1315_0 (arg1); } @@ -3421,7 +3421,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -3482,7 +3482,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -3520,7 +3520,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -3581,7 +3581,7 @@ static void _call_cbs_viewportEvent_1217_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextBrowser_Adaptor *)cls)->cbs_viewportEvent_1217_0 (arg1)); } @@ -3637,7 +3637,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQTextEdit.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQTextEdit.cc index 642c33ef0..8d99d3382 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQTextEdit.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQTextEdit.cc @@ -2990,7 +2990,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -3014,7 +3014,7 @@ static void _call_cbs_canInsertFromMimeData_c2168_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMimeData *arg1 = args.read (heap); + const QMimeData *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextEdit_Adaptor *)cls)->cbs_canInsertFromMimeData_c2168_0 (arg1)); } @@ -3037,7 +3037,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -3061,7 +3061,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -3085,7 +3085,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -3109,7 +3109,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -3245,7 +3245,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -3309,7 +3309,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -3333,7 +3333,7 @@ static void _call_cbs_doSetTextCursor_2453_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextCursor &arg1 = args.read (heap); + const QTextCursor &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit_Adaptor *)cls)->cbs_doSetTextCursor_2453_0 (arg1); } @@ -3357,7 +3357,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -3381,7 +3381,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -3405,7 +3405,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -3448,7 +3448,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -3472,7 +3472,7 @@ static void _call_cbs_enterEvent_1727_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEnterEvent *arg1 = args.read (heap); + QEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit_Adaptor *)cls)->cbs_enterEvent_1727_0 (arg1); } @@ -3496,7 +3496,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextEdit_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -3521,8 +3521,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextEdit_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -3545,7 +3545,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -3583,7 +3583,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextEdit_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -3606,7 +3606,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -3663,7 +3663,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTextEdit_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -3686,7 +3686,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -3710,7 +3710,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -3734,7 +3734,7 @@ static void _call_cbs_initStyleOption_c2356_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionFrame *arg1 = args.read (heap); + QStyleOptionFrame *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit_Adaptor *)cls)->cbs_initStyleOption_c2356_0 (arg1); } @@ -3758,7 +3758,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -3782,7 +3782,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QTextEdit_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -3805,7 +3805,7 @@ static void _call_cbs_insertFromMimeData_2168_0 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMimeData *arg1 = args.read (heap); + const QMimeData *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit_Adaptor *)cls)->cbs_insertFromMimeData_2168_0 (arg1); } @@ -3847,7 +3847,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -3871,7 +3871,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -3895,7 +3895,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -3921,8 +3921,8 @@ static void _call_cbs_loadResource_2360_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QUrl &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QUrl &arg2 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QTextEdit_Adaptor *)cls)->cbs_loadResource_2360_0 (arg1, arg2)); } @@ -3945,7 +3945,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QTextEdit_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -3987,7 +3987,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -4011,7 +4011,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -4035,7 +4035,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -4059,7 +4059,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -4083,7 +4083,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -4111,9 +4111,9 @@ static void _call_cbs_nativeEvent_6949_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - QIntegerForSizeof::Signed *arg3 = args.read::Signed * > (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + QIntegerForSizeof::Signed *arg3 = gsi::arg_reader::Signed * >() (args, heap); ret.write ((bool)((QTextEdit_Adaptor *)cls)->cbs_nativeEvent_6949_0 (arg1, arg2, arg3)); } @@ -4173,7 +4173,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -4215,7 +4215,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QTextEdit_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -4256,7 +4256,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -4282,8 +4282,8 @@ static void _call_cbs_scrollContentsBy_1426_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit_Adaptor *)cls)->cbs_scrollContentsBy_1426_0 (arg1, arg2); } @@ -4396,7 +4396,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -4420,7 +4420,7 @@ static void _call_cbs_setupViewport_1315_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit_Adaptor *)cls)->cbs_setupViewport_1315_0 (arg1); } @@ -4463,7 +4463,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -4506,7 +4506,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -4544,7 +4544,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -4605,7 +4605,7 @@ static void _call_cbs_viewportEvent_1217_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextEdit_Adaptor *)cls)->cbs_viewportEvent_1217_0 (arg1)); } @@ -4661,7 +4661,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQTimeEdit.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQTimeEdit.cc index 9f20fe84d..3dba8b789 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQTimeEdit.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQTimeEdit.cc @@ -1222,7 +1222,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeEdit_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1246,7 +1246,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeEdit_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1270,7 +1270,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeEdit_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1314,7 +1314,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeEdit_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1338,7 +1338,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeEdit_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1405,7 +1405,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeEdit_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1465,7 +1465,7 @@ static void _call_cbs_dateTimeFromText_c2025_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QDateTime)((QTimeEdit_Adaptor *)cls)->cbs_dateTimeFromText_c2025_0 (arg1)); } @@ -1528,7 +1528,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeEdit_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1552,7 +1552,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeEdit_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1576,7 +1576,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeEdit_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1600,7 +1600,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeEdit_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1624,7 +1624,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeEdit_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1662,7 +1662,7 @@ static void _call_cbs_enterEvent_1727_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEnterEvent *arg1 = args.read (heap); + QEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeEdit_Adaptor *)cls)->cbs_enterEvent_1727_0 (arg1); } @@ -1686,7 +1686,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTimeEdit_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1711,8 +1711,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTimeEdit_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1735,7 +1735,7 @@ static void _call_cbs_fixup_c1330_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QString &arg1 = args.read (heap); + QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeEdit_Adaptor *)cls)->cbs_fixup_c1330_0 (arg1); } @@ -1759,7 +1759,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeEdit_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1797,7 +1797,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTimeEdit_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -1820,7 +1820,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeEdit_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -1877,7 +1877,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTimeEdit_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -1900,7 +1900,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeEdit_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -1924,7 +1924,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeEdit_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -1948,7 +1948,7 @@ static void _call_cbs_initStyleOption_c2572_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionSpinBox *arg1 = args.read (heap); + QStyleOptionSpinBox *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeEdit_Adaptor *)cls)->cbs_initStyleOption_c2572_0 (arg1); } @@ -1972,7 +1972,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeEdit_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -1996,7 +1996,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QTimeEdit_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2037,7 +2037,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeEdit_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2061,7 +2061,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeEdit_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2085,7 +2085,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeEdit_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2123,7 +2123,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QTimeEdit_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2165,7 +2165,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeEdit_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2189,7 +2189,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeEdit_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2213,7 +2213,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeEdit_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2237,7 +2237,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeEdit_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2261,7 +2261,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeEdit_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2289,9 +2289,9 @@ static void _call_cbs_nativeEvent_6949_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - QIntegerForSizeof::Signed *arg3 = args.read::Signed * > (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + QIntegerForSizeof::Signed *arg3 = gsi::arg_reader::Signed * >() (args, heap); ret.write ((bool)((QTimeEdit_Adaptor *)cls)->cbs_nativeEvent_6949_0 (arg1, arg2, arg3)); } @@ -2351,7 +2351,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeEdit_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2393,7 +2393,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QTimeEdit_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -2416,7 +2416,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeEdit_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2487,7 +2487,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeEdit_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2530,7 +2530,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeEdit_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2573,7 +2573,7 @@ static void _call_cbs_stepBy_767_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeEdit_Adaptor *)cls)->cbs_stepBy_767_0 (arg1); } @@ -2616,7 +2616,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeEdit_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2640,7 +2640,7 @@ static void _call_cbs_textFromDateTime_c2175_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDateTime &arg1 = args.read (heap); + const QDateTime &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QTimeEdit_Adaptor *)cls)->cbs_textFromDateTime_c2175_0 (arg1)); } @@ -2681,7 +2681,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeEdit_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2744,8 +2744,8 @@ static void _call_cbs_validate_c2171_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QString &arg1 = args.read (heap); - int &arg2 = args.read (heap); + QString &arg1 = gsi::arg_reader() (args, heap); + int &arg2 = gsi::arg_reader() (args, heap); ret.write::target_type > ((qt_gsi::Converter::target_type)((QTimeEdit_Adaptor *)cls)->cbs_validate_c2171_0 (arg1, arg2)); } @@ -2768,7 +2768,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeEdit_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQToolBar.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQToolBar.cc index 7ca9f6738..5a1883e01 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQToolBar.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQToolBar.cc @@ -1687,7 +1687,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBar_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1747,7 +1747,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBar_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1771,7 +1771,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBar_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1795,7 +1795,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBar_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1819,7 +1819,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBar_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1886,7 +1886,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBar_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1950,7 +1950,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBar_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1974,7 +1974,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBar_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1998,7 +1998,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBar_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -2022,7 +2022,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBar_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -2046,7 +2046,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBar_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -2070,7 +2070,7 @@ static void _call_cbs_enterEvent_1727_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEnterEvent *arg1 = args.read (heap); + QEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBar_Adaptor *)cls)->cbs_enterEvent_1727_0 (arg1); } @@ -2094,7 +2094,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QToolBar_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -2119,8 +2119,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QToolBar_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -2143,7 +2143,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBar_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -2181,7 +2181,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QToolBar_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -2204,7 +2204,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBar_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -2261,7 +2261,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QToolBar_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -2284,7 +2284,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBar_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -2326,7 +2326,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBar_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -2350,7 +2350,7 @@ static void _call_cbs_initStyleOption_c2556_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionToolBar *arg1 = args.read (heap); + QStyleOptionToolBar *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBar_Adaptor *)cls)->cbs_initStyleOption_c2556_0 (arg1); } @@ -2374,7 +2374,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBar_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2398,7 +2398,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QToolBar_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2439,7 +2439,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBar_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2463,7 +2463,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBar_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2487,7 +2487,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBar_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2511,7 +2511,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QToolBar_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2553,7 +2553,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBar_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2577,7 +2577,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBar_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2601,7 +2601,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBar_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2625,7 +2625,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBar_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2667,7 +2667,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBar_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2695,9 +2695,9 @@ static void _call_cbs_nativeEvent_6949_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - QIntegerForSizeof::Signed *arg3 = args.read::Signed * > (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + QIntegerForSizeof::Signed *arg3 = gsi::arg_reader::Signed * >() (args, heap); ret.write ((bool)((QToolBar_Adaptor *)cls)->cbs_nativeEvent_6949_0 (arg1, arg2, arg3)); } @@ -2775,7 +2775,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBar_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2817,7 +2817,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QToolBar_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -2840,7 +2840,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBar_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2892,7 +2892,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBar_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2935,7 +2935,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBar_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2978,7 +2978,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBar_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -3002,7 +3002,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBar_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -3099,7 +3099,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBar_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQToolBox.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQToolBox.cc index f389d3e6e..ee4e9b776 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQToolBox.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQToolBox.cc @@ -1510,7 +1510,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBox_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1534,7 +1534,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBox_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1558,7 +1558,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBox_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1582,7 +1582,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBox_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1606,7 +1606,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBox_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1691,7 +1691,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBox_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1755,7 +1755,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBox_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1779,7 +1779,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBox_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1803,7 +1803,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBox_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1827,7 +1827,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBox_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1870,7 +1870,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBox_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1894,7 +1894,7 @@ static void _call_cbs_enterEvent_1727_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEnterEvent *arg1 = args.read (heap); + QEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBox_Adaptor *)cls)->cbs_enterEvent_1727_0 (arg1); } @@ -1918,7 +1918,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QToolBox_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1943,8 +1943,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QToolBox_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1967,7 +1967,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBox_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -2005,7 +2005,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QToolBox_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -2028,7 +2028,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBox_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -2085,7 +2085,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QToolBox_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -2108,7 +2108,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBox_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -2132,7 +2132,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBox_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -2156,7 +2156,7 @@ static void _call_cbs_initStyleOption_c2356_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionFrame *arg1 = args.read (heap); + QStyleOptionFrame *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBox_Adaptor *)cls)->cbs_initStyleOption_c2356_0 (arg1); } @@ -2180,7 +2180,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBox_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2204,7 +2204,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QToolBox_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2245,7 +2245,7 @@ static void _call_cbs_itemInserted_767_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBox_Adaptor *)cls)->cbs_itemInserted_767_0 (arg1); } @@ -2269,7 +2269,7 @@ static void _call_cbs_itemRemoved_767_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBox_Adaptor *)cls)->cbs_itemRemoved_767_0 (arg1); } @@ -2293,7 +2293,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBox_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2317,7 +2317,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBox_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2341,7 +2341,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBox_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2365,7 +2365,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QToolBox_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2407,7 +2407,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBox_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2431,7 +2431,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBox_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2455,7 +2455,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBox_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2479,7 +2479,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBox_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2503,7 +2503,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBox_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2531,9 +2531,9 @@ static void _call_cbs_nativeEvent_6949_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - QIntegerForSizeof::Signed *arg3 = args.read::Signed * > (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + QIntegerForSizeof::Signed *arg3 = gsi::arg_reader::Signed * >() (args, heap); ret.write ((bool)((QToolBox_Adaptor *)cls)->cbs_nativeEvent_6949_0 (arg1, arg2, arg3)); } @@ -2593,7 +2593,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBox_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2635,7 +2635,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QToolBox_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -2658,7 +2658,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBox_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2710,7 +2710,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBox_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2753,7 +2753,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBox_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2796,7 +2796,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBox_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2820,7 +2820,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBox_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2863,7 +2863,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBox_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQToolButton.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQToolButton.cc index b52037836..6f24c63b1 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQToolButton.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQToolButton.cc @@ -1382,7 +1382,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolButton_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1406,7 +1406,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolButton_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1450,7 +1450,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolButton_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1492,7 +1492,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolButton_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1516,7 +1516,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolButton_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1583,7 +1583,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolButton_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1647,7 +1647,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolButton_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1671,7 +1671,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolButton_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1695,7 +1695,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolButton_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1719,7 +1719,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolButton_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1743,7 +1743,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolButton_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1767,7 +1767,7 @@ static void _call_cbs_enterEvent_1727_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEnterEvent *arg1 = args.read (heap); + QEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolButton_Adaptor *)cls)->cbs_enterEvent_1727_0 (arg1); } @@ -1791,7 +1791,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QToolButton_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1816,8 +1816,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QToolButton_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1840,7 +1840,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolButton_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1878,7 +1878,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QToolButton_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -1901,7 +1901,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolButton_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -1958,7 +1958,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QToolButton_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -1981,7 +1981,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolButton_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -2005,7 +2005,7 @@ static void _call_cbs_hitButton_c1916_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QToolButton_Adaptor *)cls)->cbs_hitButton_c1916_0 (arg1)); } @@ -2028,7 +2028,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolButton_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -2052,7 +2052,7 @@ static void _call_cbs_initStyleOption_c2915_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionToolButton *arg1 = args.read (heap); + QStyleOptionToolButton *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolButton_Adaptor *)cls)->cbs_initStyleOption_c2915_0 (arg1); } @@ -2076,7 +2076,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolButton_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2100,7 +2100,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QToolButton_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2141,7 +2141,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolButton_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2165,7 +2165,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolButton_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2189,7 +2189,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolButton_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2213,7 +2213,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QToolButton_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2255,7 +2255,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolButton_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2279,7 +2279,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolButton_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2303,7 +2303,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolButton_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2327,7 +2327,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolButton_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2351,7 +2351,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolButton_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2379,9 +2379,9 @@ static void _call_cbs_nativeEvent_6949_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - QIntegerForSizeof::Signed *arg3 = args.read::Signed * > (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + QIntegerForSizeof::Signed *arg3 = gsi::arg_reader::Signed * >() (args, heap); ret.write ((bool)((QToolButton_Adaptor *)cls)->cbs_nativeEvent_6949_0 (arg1, arg2, arg3)); } @@ -2461,7 +2461,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolButton_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2517,7 +2517,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QToolButton_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -2554,7 +2554,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolButton_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2606,7 +2606,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolButton_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2649,7 +2649,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolButton_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2692,7 +2692,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolButton_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2716,7 +2716,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolButton_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2795,7 +2795,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolButton_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQTreeView.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQTreeView.cc index 2147220db..e628ac30b 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQTreeView.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQTreeView.cc @@ -3176,7 +3176,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -3218,7 +3218,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -3242,7 +3242,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -3286,8 +3286,8 @@ static void _call_cbs_closeEditor_4926_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_closeEditor_4926_0 (arg1, arg2); } @@ -3311,7 +3311,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -3415,7 +3415,7 @@ static void _call_cbs_commitData_1315_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_commitData_1315_0 (arg1); } @@ -3439,7 +3439,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -3490,8 +3490,8 @@ static void _call_cbs_currentChanged_4682_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_currentChanged_4682_0 (arg1, arg2); } @@ -3533,7 +3533,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -3561,9 +3561,9 @@ static void _call_cbs_dataChanged_6833_1 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); - const QList &arg3 = args.read & > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); + const QList &arg3 = args ? gsi::arg_reader & >() (args, heap) : gsi::arg_maker & >() (QList(), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_dataChanged_6833_1 (arg1, arg2, arg3); } @@ -3641,7 +3641,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -3718,7 +3718,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -3742,7 +3742,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -3766,7 +3766,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -3794,9 +3794,9 @@ static void _call_cbs_drawBranches_c5397_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QRect &arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QRect &arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_drawBranches_c5397_0 (arg1, arg2, arg3); } @@ -3843,9 +3843,9 @@ static void _call_cbs_drawRow_c6971_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QStyleOptionViewItem &arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionViewItem &arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_drawRow_c6971_0 (arg1, arg2, arg3); } @@ -3891,7 +3891,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -3933,9 +3933,9 @@ static void _call_cbs_edit_6773_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - QEvent *arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + QEvent *arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTreeView_Adaptor *)cls)->cbs_edit_6773_0 (arg1, arg2, arg3)); } @@ -3958,7 +3958,7 @@ static void _call_cbs_editorDestroyed_1302_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_editorDestroyed_1302_0 (arg1); } @@ -3982,7 +3982,7 @@ static void _call_cbs_enterEvent_1727_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEnterEvent *arg1 = args.read (heap); + QEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_enterEvent_1727_0 (arg1); } @@ -4024,7 +4024,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTreeView_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -4049,8 +4049,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTreeView_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -4106,7 +4106,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -4144,7 +4144,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTreeView_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -4167,7 +4167,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -4224,7 +4224,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTreeView_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -4247,7 +4247,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -4290,7 +4290,7 @@ static void _call_cbs_horizontalScrollbarAction_767_0 (const qt_gsi::GenericMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_horizontalScrollbarAction_767_0 (arg1); } @@ -4314,7 +4314,7 @@ static void _call_cbs_horizontalScrollbarValueChanged_767_0 (const qt_gsi::Gener { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_horizontalScrollbarValueChanged_767_0 (arg1); } @@ -4356,7 +4356,7 @@ static void _call_cbs_indexAt_c1916_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QTreeView_Adaptor *)cls)->cbs_indexAt_c1916_0 (arg1)); } @@ -4397,7 +4397,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -4421,7 +4421,7 @@ static void _call_cbs_initStyleOption_c2356_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionFrame *arg1 = args.read (heap); + QStyleOptionFrame *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_initStyleOption_c2356_0 (arg1); } @@ -4445,7 +4445,7 @@ static void _call_cbs_initViewItemOption_c2675_0 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionViewItem *arg1 = args.read (heap); + QStyleOptionViewItem *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_initViewItemOption_c2675_0 (arg1); } @@ -4469,7 +4469,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -4493,7 +4493,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QTreeView_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -4516,7 +4516,7 @@ static void _call_cbs_isIndexHidden_c2395_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTreeView_Adaptor *)cls)->cbs_isIndexHidden_c2395_0 (arg1)); } @@ -4557,7 +4557,7 @@ static void _call_cbs_itemDelegateForIndex_c2395_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QAbstractItemDelegate *)((QTreeView_Adaptor *)cls)->cbs_itemDelegateForIndex_c2395_0 (arg1)); } @@ -4580,7 +4580,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -4604,7 +4604,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -4628,7 +4628,7 @@ static void _call_cbs_keyboardSearch_2025_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_keyboardSearch_2025_0 (arg1); } @@ -4652,7 +4652,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -4676,7 +4676,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QTreeView_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -4718,7 +4718,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -4742,7 +4742,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -4766,7 +4766,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -4790,7 +4790,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -4816,8 +4816,8 @@ static void _call_cbs_moveCursor_6476_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); - QFlags arg2 = args.read > (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); ret.write ((QModelIndex)((QTreeView_Adaptor *)cls)->cbs_moveCursor_6476_0 (arg1, arg2)); } @@ -4840,7 +4840,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -4868,9 +4868,9 @@ static void _call_cbs_nativeEvent_6949_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - QIntegerForSizeof::Signed *arg3 = args.read::Signed * > (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + QIntegerForSizeof::Signed *arg3 = gsi::arg_reader::Signed * >() (args, heap); ret.write ((bool)((QTreeView_Adaptor *)cls)->cbs_nativeEvent_6949_0 (arg1, arg2, arg3)); } @@ -4930,7 +4930,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -4990,7 +4990,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QTreeView_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -5048,7 +5048,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -5094,9 +5094,9 @@ static void _call_cbs_rowsAboutToBeRemoved_3713_0 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_rowsAboutToBeRemoved_3713_0 (arg1, arg2, arg3); } @@ -5124,9 +5124,9 @@ static void _call_cbs_rowsInserted_3713_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_rowsInserted_3713_0 (arg1, arg2, arg3); } @@ -5192,8 +5192,8 @@ static void _call_cbs_scrollContentsBy_1426_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_scrollContentsBy_1426_0 (arg1, arg2); } @@ -5241,8 +5241,8 @@ static void _call_cbs_scrollTo_5576_1 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QAbstractItemView::EnsureVisible), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_scrollTo_5576_1 (arg1, arg2); } @@ -5307,8 +5307,8 @@ static void _call_cbs_selectionChanged_5346_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QItemSelection &arg1 = args.read (heap); - const QItemSelection &arg2 = args.read (heap); + const QItemSelection &arg1 = gsi::arg_reader() (args, heap); + const QItemSelection &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_selectionChanged_5346_0 (arg1, arg2); } @@ -5334,8 +5334,8 @@ static void _call_cbs_selectionCommand_c4199_1 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QEvent *arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QEvent *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); ret.write > ((QFlags)((QTreeView_Adaptor *)cls)->cbs_selectionCommand_c4199_1 (arg1, arg2)); } @@ -5405,7 +5405,7 @@ static void _call_cbs_setModel_2419_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractItemModel *arg1 = args.read (heap); + QAbstractItemModel *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_setModel_2419_0 (arg1); } @@ -5429,7 +5429,7 @@ static void _call_cbs_setRootIndex_2395_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_setRootIndex_2395_0 (arg1); } @@ -5455,8 +5455,8 @@ static void _call_cbs_setSelection_6155_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); - QFlags arg2 = args.read > (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_setSelection_6155_0 (arg1, arg2); } @@ -5480,7 +5480,7 @@ static void _call_cbs_setSelectionModel_2533_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QItemSelectionModel *arg1 = args.read (heap); + QItemSelectionModel *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_setSelectionModel_2533_0 (arg1); } @@ -5570,7 +5570,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -5594,7 +5594,7 @@ static void _call_cbs_setupViewport_1315_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_setupViewport_1315_0 (arg1); } @@ -5637,7 +5637,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -5680,7 +5680,7 @@ static void _call_cbs_sizeHintForColumn_c767_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTreeView_Adaptor *)cls)->cbs_sizeHintForColumn_c767_0 (arg1)); } @@ -5703,7 +5703,7 @@ static void _call_cbs_sizeHintForRow_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTreeView_Adaptor *)cls)->cbs_sizeHintForRow_c767_0 (arg1)); } @@ -5741,7 +5741,7 @@ static void _call_cbs_startDrag_2456_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_startDrag_2456_0 (arg1); } @@ -5794,7 +5794,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -5818,7 +5818,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -5940,7 +5940,7 @@ static void _call_cbs_verticalScrollbarAction_767_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_verticalScrollbarAction_767_0 (arg1); } @@ -5964,7 +5964,7 @@ static void _call_cbs_verticalScrollbarValueChanged_767_0 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_verticalScrollbarValueChanged_767_0 (arg1); } @@ -6002,7 +6002,7 @@ static void _call_cbs_viewportEvent_1217_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTreeView_Adaptor *)cls)->cbs_viewportEvent_1217_0 (arg1)); } @@ -6058,7 +6058,7 @@ static void _call_cbs_visualRect_c2395_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QTreeView_Adaptor *)cls)->cbs_visualRect_c2395_0 (arg1)); } @@ -6081,7 +6081,7 @@ static void _call_cbs_visualRegionForSelection_c2727_0 (const qt_gsi::GenericMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QItemSelection &arg1 = args.read (heap); + const QItemSelection &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRegion)((QTreeView_Adaptor *)cls)->cbs_visualRegionForSelection_c2727_0 (arg1)); } @@ -6104,7 +6104,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQTreeWidget.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQTreeWidget.cc index abbc4970f..869b3eee9 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQTreeWidget.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQTreeWidget.cc @@ -2979,7 +2979,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -3021,7 +3021,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -3045,7 +3045,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -3089,8 +3089,8 @@ static void _call_cbs_closeEditor_4926_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_closeEditor_4926_0 (arg1, arg2); } @@ -3114,7 +3114,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -3218,7 +3218,7 @@ static void _call_cbs_commitData_1315_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_commitData_1315_0 (arg1); } @@ -3242,7 +3242,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -3293,8 +3293,8 @@ static void _call_cbs_currentChanged_4682_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_currentChanged_4682_0 (arg1, arg2); } @@ -3357,7 +3357,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -3385,9 +3385,9 @@ static void _call_cbs_dataChanged_6833_1 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); - const QList &arg3 = args.read & > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); + const QList &arg3 = args ? gsi::arg_reader & >() (args, heap) : gsi::arg_maker & >() (QList(), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_dataChanged_6833_1 (arg1, arg2, arg3); } @@ -3465,7 +3465,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -3542,7 +3542,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -3566,7 +3566,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -3590,7 +3590,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -3618,9 +3618,9 @@ static void _call_cbs_drawBranches_c5397_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QRect &arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QRect &arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_drawBranches_c5397_0 (arg1, arg2, arg3); } @@ -3667,9 +3667,9 @@ static void _call_cbs_drawRow_c6971_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QStyleOptionViewItem &arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionViewItem &arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_drawRow_c6971_0 (arg1, arg2, arg3); } @@ -3715,7 +3715,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -3759,10 +3759,10 @@ static void _call_cbs_dropMimeData_6485_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTreeWidgetItem *arg1 = args.read (heap); - int arg2 = args.read (heap); - const QMimeData *arg3 = args.read (heap); - const qt_gsi::Converter::target_type & arg4 = args.read::target_type & > (heap); + QTreeWidgetItem *arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QMimeData *arg3 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg4 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((bool)((QTreeWidget_Adaptor *)cls)->cbs_dropMimeData_6485_0 (arg1, arg2, arg3, arg4)); } @@ -3789,9 +3789,9 @@ static void _call_cbs_edit_6773_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - QEvent *arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + QEvent *arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTreeWidget_Adaptor *)cls)->cbs_edit_6773_0 (arg1, arg2, arg3)); } @@ -3814,7 +3814,7 @@ static void _call_cbs_editorDestroyed_1302_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_editorDestroyed_1302_0 (arg1); } @@ -3838,7 +3838,7 @@ static void _call_cbs_enterEvent_1727_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEnterEvent *arg1 = args.read (heap); + QEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_enterEvent_1727_0 (arg1); } @@ -3880,7 +3880,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTreeWidget_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -3905,8 +3905,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTreeWidget_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -3962,7 +3962,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -4000,7 +4000,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTreeWidget_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -4023,7 +4023,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -4080,7 +4080,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTreeWidget_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -4103,7 +4103,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -4146,7 +4146,7 @@ static void _call_cbs_horizontalScrollbarAction_767_0 (const qt_gsi::GenericMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_horizontalScrollbarAction_767_0 (arg1); } @@ -4170,7 +4170,7 @@ static void _call_cbs_horizontalScrollbarValueChanged_767_0 (const qt_gsi::Gener { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_horizontalScrollbarValueChanged_767_0 (arg1); } @@ -4212,7 +4212,7 @@ static void _call_cbs_indexAt_c1916_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QTreeWidget_Adaptor *)cls)->cbs_indexAt_c1916_0 (arg1)); } @@ -4253,7 +4253,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -4277,7 +4277,7 @@ static void _call_cbs_initStyleOption_c2356_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionFrame *arg1 = args.read (heap); + QStyleOptionFrame *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_initStyleOption_c2356_0 (arg1); } @@ -4301,7 +4301,7 @@ static void _call_cbs_initViewItemOption_c2675_0 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionViewItem *arg1 = args.read (heap); + QStyleOptionViewItem *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_initViewItemOption_c2675_0 (arg1); } @@ -4325,7 +4325,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -4349,7 +4349,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QTreeWidget_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -4372,7 +4372,7 @@ static void _call_cbs_isIndexHidden_c2395_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTreeWidget_Adaptor *)cls)->cbs_isIndexHidden_c2395_0 (arg1)); } @@ -4494,7 +4494,7 @@ static void _call_cbs_itemDelegateForIndex_c2395_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QAbstractItemDelegate *)((QTreeWidget_Adaptor *)cls)->cbs_itemDelegateForIndex_c2395_0 (arg1)); } @@ -4612,7 +4612,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -4636,7 +4636,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -4660,7 +4660,7 @@ static void _call_cbs_keyboardSearch_2025_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_keyboardSearch_2025_0 (arg1); } @@ -4684,7 +4684,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -4708,7 +4708,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QTreeWidget_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -4731,7 +4731,7 @@ static void _call_cbs_mimeData_c3606_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); ret.write ((QMimeData *)((QTreeWidget_Adaptor *)cls)->cbs_mimeData_c3606_0 (arg1)); } @@ -4792,7 +4792,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -4816,7 +4816,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -4840,7 +4840,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -4864,7 +4864,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -4890,8 +4890,8 @@ static void _call_cbs_moveCursor_6476_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); - QFlags arg2 = args.read > (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); ret.write ((QModelIndex)((QTreeWidget_Adaptor *)cls)->cbs_moveCursor_6476_0 (arg1, arg2)); } @@ -4914,7 +4914,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -4942,9 +4942,9 @@ static void _call_cbs_nativeEvent_6949_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - QIntegerForSizeof::Signed *arg3 = args.read::Signed * > (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + QIntegerForSizeof::Signed *arg3 = gsi::arg_reader::Signed * >() (args, heap); ret.write ((bool)((QTreeWidget_Adaptor *)cls)->cbs_nativeEvent_6949_0 (arg1, arg2, arg3)); } @@ -5004,7 +5004,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -5064,7 +5064,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QTreeWidget_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -5122,7 +5122,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -5168,9 +5168,9 @@ static void _call_cbs_rowsAboutToBeRemoved_3713_0 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_rowsAboutToBeRemoved_3713_0 (arg1, arg2, arg3); } @@ -5198,9 +5198,9 @@ static void _call_cbs_rowsInserted_3713_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_rowsInserted_3713_0 (arg1, arg2, arg3); } @@ -5266,8 +5266,8 @@ static void _call_cbs_scrollContentsBy_1426_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_scrollContentsBy_1426_0 (arg1, arg2); } @@ -5315,8 +5315,8 @@ static void _call_cbs_scrollTo_5576_1 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QAbstractItemView::EnsureVisible), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_scrollTo_5576_1 (arg1, arg2); } @@ -5381,8 +5381,8 @@ static void _call_cbs_selectionChanged_5346_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QItemSelection &arg1 = args.read (heap); - const QItemSelection &arg2 = args.read (heap); + const QItemSelection &arg1 = gsi::arg_reader() (args, heap); + const QItemSelection &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_selectionChanged_5346_0 (arg1, arg2); } @@ -5408,8 +5408,8 @@ static void _call_cbs_selectionCommand_c4199_1 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QEvent *arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QEvent *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); ret.write > ((QFlags)((QTreeWidget_Adaptor *)cls)->cbs_selectionCommand_c4199_1 (arg1, arg2)); } @@ -5479,7 +5479,7 @@ static void _call_cbs_setRootIndex_2395_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_setRootIndex_2395_0 (arg1); } @@ -5505,8 +5505,8 @@ static void _call_cbs_setSelection_6155_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); - QFlags arg2 = args.read > (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_setSelection_6155_0 (arg1, arg2); } @@ -5530,7 +5530,7 @@ static void _call_cbs_setSelectionModel_2533_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QItemSelectionModel *arg1 = args.read (heap); + QItemSelectionModel *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_setSelectionModel_2533_0 (arg1); } @@ -5620,7 +5620,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -5644,7 +5644,7 @@ static void _call_cbs_setupViewport_1315_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_setupViewport_1315_0 (arg1); } @@ -5687,7 +5687,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -5730,7 +5730,7 @@ static void _call_cbs_sizeHintForColumn_c767_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTreeWidget_Adaptor *)cls)->cbs_sizeHintForColumn_c767_0 (arg1)); } @@ -5753,7 +5753,7 @@ static void _call_cbs_sizeHintForRow_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTreeWidget_Adaptor *)cls)->cbs_sizeHintForRow_c767_0 (arg1)); } @@ -5791,7 +5791,7 @@ static void _call_cbs_startDrag_2456_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_startDrag_2456_0 (arg1); } @@ -5863,7 +5863,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -5887,7 +5887,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -6009,7 +6009,7 @@ static void _call_cbs_verticalScrollbarAction_767_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_verticalScrollbarAction_767_0 (arg1); } @@ -6033,7 +6033,7 @@ static void _call_cbs_verticalScrollbarValueChanged_767_0 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_verticalScrollbarValueChanged_767_0 (arg1); } @@ -6071,7 +6071,7 @@ static void _call_cbs_viewportEvent_1217_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTreeWidget_Adaptor *)cls)->cbs_viewportEvent_1217_0 (arg1)); } @@ -6127,7 +6127,7 @@ static void _call_cbs_visualRect_c2395_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QTreeWidget_Adaptor *)cls)->cbs_visualRect_c2395_0 (arg1)); } @@ -6150,7 +6150,7 @@ static void _call_cbs_visualRegionForSelection_c2727_0 (const qt_gsi::GenericMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QItemSelection &arg1 = args.read (heap); + const QItemSelection &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRegion)((QTreeWidget_Adaptor *)cls)->cbs_visualRegionForSelection_c2727_0 (arg1)); } @@ -6173,7 +6173,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQTreeWidgetItem.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQTreeWidgetItem.cc index 178164083..c2fae2e9d 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQTreeWidgetItem.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQTreeWidgetItem.cc @@ -1698,8 +1698,8 @@ static void _call_cbs_data_c1426_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QTreeWidgetItem_Adaptor *)cls)->cbs_data_c1426_0 (arg1, arg2)); } @@ -1737,7 +1737,7 @@ static void _call_cbs_operator_lt__c2805_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTreeWidgetItem &arg1 = args.read (heap); + const QTreeWidgetItem &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTreeWidgetItem_Adaptor *)cls)->cbs_operator_lt__c2805_0 (arg1)); } @@ -1760,7 +1760,7 @@ static void _call_cbs_read_1697_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDataStream &arg1 = args.read (heap); + QDataStream &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidgetItem_Adaptor *)cls)->cbs_read_1697_0 (arg1); } @@ -1788,9 +1788,9 @@ static void _call_cbs_setData_3437_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QVariant &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QVariant &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidgetItem_Adaptor *)cls)->cbs_setData_3437_0 (arg1, arg2, arg3); } @@ -1814,7 +1814,7 @@ static void _call_cbs_write_c1697_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDataStream &arg1 = args.read (heap); + QDataStream &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidgetItem_Adaptor *)cls)->cbs_write_c1697_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQUndoView.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQUndoView.cc index 35f8bc8df..bef7f5660 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQUndoView.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQUndoView.cc @@ -2088,7 +2088,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -2130,7 +2130,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -2154,7 +2154,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -2198,8 +2198,8 @@ static void _call_cbs_closeEditor_4926_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_closeEditor_4926_0 (arg1, arg2); } @@ -2223,7 +2223,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -2247,7 +2247,7 @@ static void _call_cbs_commitData_1315_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_commitData_1315_0 (arg1); } @@ -2285,7 +2285,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -2336,8 +2336,8 @@ static void _call_cbs_currentChanged_4682_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_currentChanged_4682_0 (arg1, arg2); } @@ -2379,7 +2379,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -2407,9 +2407,9 @@ static void _call_cbs_dataChanged_6833_1 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); - const QList &arg3 = args.read & > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); + const QList &arg3 = args ? gsi::arg_reader & >() (args, heap) : gsi::arg_maker & >() (QList(), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_dataChanged_6833_1 (arg1, arg2, arg3); } @@ -2487,7 +2487,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -2564,7 +2564,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -2588,7 +2588,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -2612,7 +2612,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -2655,7 +2655,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -2697,9 +2697,9 @@ static void _call_cbs_edit_6773_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - QEvent *arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + QEvent *arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QUndoView_Adaptor *)cls)->cbs_edit_6773_0 (arg1, arg2, arg3)); } @@ -2722,7 +2722,7 @@ static void _call_cbs_editorDestroyed_1302_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_editorDestroyed_1302_0 (arg1); } @@ -2746,7 +2746,7 @@ static void _call_cbs_enterEvent_1727_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEnterEvent *arg1 = args.read (heap); + QEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_enterEvent_1727_0 (arg1); } @@ -2788,7 +2788,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QUndoView_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -2813,8 +2813,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QUndoView_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -2852,7 +2852,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -2890,7 +2890,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QUndoView_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -2913,7 +2913,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -2970,7 +2970,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QUndoView_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -2993,7 +2993,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -3036,7 +3036,7 @@ static void _call_cbs_horizontalScrollbarAction_767_0 (const qt_gsi::GenericMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_horizontalScrollbarAction_767_0 (arg1); } @@ -3060,7 +3060,7 @@ static void _call_cbs_horizontalScrollbarValueChanged_767_0 (const qt_gsi::Gener { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_horizontalScrollbarValueChanged_767_0 (arg1); } @@ -3102,7 +3102,7 @@ static void _call_cbs_indexAt_c1916_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QUndoView_Adaptor *)cls)->cbs_indexAt_c1916_0 (arg1)); } @@ -3143,7 +3143,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -3167,7 +3167,7 @@ static void _call_cbs_initStyleOption_c2356_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionFrame *arg1 = args.read (heap); + QStyleOptionFrame *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_initStyleOption_c2356_0 (arg1); } @@ -3191,7 +3191,7 @@ static void _call_cbs_initViewItemOption_c2675_0 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionViewItem *arg1 = args.read (heap); + QStyleOptionViewItem *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_initViewItemOption_c2675_0 (arg1); } @@ -3215,7 +3215,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -3239,7 +3239,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QUndoView_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -3262,7 +3262,7 @@ static void _call_cbs_isIndexHidden_c2395_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QUndoView_Adaptor *)cls)->cbs_isIndexHidden_c2395_0 (arg1)); } @@ -3303,7 +3303,7 @@ static void _call_cbs_itemDelegateForIndex_c2395_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QAbstractItemDelegate *)((QUndoView_Adaptor *)cls)->cbs_itemDelegateForIndex_c2395_0 (arg1)); } @@ -3326,7 +3326,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -3350,7 +3350,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -3374,7 +3374,7 @@ static void _call_cbs_keyboardSearch_2025_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_keyboardSearch_2025_0 (arg1); } @@ -3398,7 +3398,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -3422,7 +3422,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QUndoView_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -3464,7 +3464,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -3488,7 +3488,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -3512,7 +3512,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -3536,7 +3536,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -3562,8 +3562,8 @@ static void _call_cbs_moveCursor_6476_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); - QFlags arg2 = args.read > (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); ret.write ((QModelIndex)((QUndoView_Adaptor *)cls)->cbs_moveCursor_6476_0 (arg1, arg2)); } @@ -3586,7 +3586,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -3614,9 +3614,9 @@ static void _call_cbs_nativeEvent_6949_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - QIntegerForSizeof::Signed *arg3 = args.read::Signed * > (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + QIntegerForSizeof::Signed *arg3 = gsi::arg_reader::Signed * >() (args, heap); ret.write ((bool)((QUndoView_Adaptor *)cls)->cbs_nativeEvent_6949_0 (arg1, arg2, arg3)); } @@ -3676,7 +3676,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -3754,7 +3754,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QUndoView_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -3819,7 +3819,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -3847,9 +3847,9 @@ static void _call_cbs_rowsAboutToBeRemoved_3713_0 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_rowsAboutToBeRemoved_3713_0 (arg1, arg2, arg3); } @@ -3877,9 +3877,9 @@ static void _call_cbs_rowsInserted_3713_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_rowsInserted_3713_0 (arg1, arg2, arg3); } @@ -3920,8 +3920,8 @@ static void _call_cbs_scrollContentsBy_1426_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_scrollContentsBy_1426_0 (arg1, arg2); } @@ -3969,8 +3969,8 @@ static void _call_cbs_scrollTo_5576_1 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QAbstractItemView::EnsureVisible), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_scrollTo_5576_1 (arg1, arg2); } @@ -4035,8 +4035,8 @@ static void _call_cbs_selectionChanged_5346_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QItemSelection &arg1 = args.read (heap); - const QItemSelection &arg2 = args.read (heap); + const QItemSelection &arg1 = gsi::arg_reader() (args, heap); + const QItemSelection &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_selectionChanged_5346_0 (arg1, arg2); } @@ -4062,8 +4062,8 @@ static void _call_cbs_selectionCommand_c4199_1 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QEvent *arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QEvent *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (nullptr, heap); ret.write > ((QFlags)((QUndoView_Adaptor *)cls)->cbs_selectionCommand_c4199_1 (arg1, arg2)); } @@ -4133,7 +4133,7 @@ static void _call_cbs_setModel_2419_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractItemModel *arg1 = args.read (heap); + QAbstractItemModel *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_setModel_2419_0 (arg1); } @@ -4179,7 +4179,7 @@ static void _call_cbs_setRootIndex_2395_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_setRootIndex_2395_0 (arg1); } @@ -4205,8 +4205,8 @@ static void _call_cbs_setSelection_6155_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); - QFlags arg2 = args.read > (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_setSelection_6155_0 (arg1, arg2); } @@ -4230,7 +4230,7 @@ static void _call_cbs_setSelectionModel_2533_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QItemSelectionModel *arg1 = args.read (heap); + QItemSelectionModel *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_setSelectionModel_2533_0 (arg1); } @@ -4320,7 +4320,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -4344,7 +4344,7 @@ static void _call_cbs_setupViewport_1315_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_setupViewport_1315_0 (arg1); } @@ -4387,7 +4387,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -4430,7 +4430,7 @@ static void _call_cbs_sizeHintForColumn_c767_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QUndoView_Adaptor *)cls)->cbs_sizeHintForColumn_c767_0 (arg1)); } @@ -4453,7 +4453,7 @@ static void _call_cbs_sizeHintForRow_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QUndoView_Adaptor *)cls)->cbs_sizeHintForRow_c767_0 (arg1)); } @@ -4491,7 +4491,7 @@ static void _call_cbs_startDrag_2456_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_startDrag_2456_0 (arg1); } @@ -4544,7 +4544,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -4568,7 +4568,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -4690,7 +4690,7 @@ static void _call_cbs_verticalScrollbarAction_767_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_verticalScrollbarAction_767_0 (arg1); } @@ -4714,7 +4714,7 @@ static void _call_cbs_verticalScrollbarValueChanged_767_0 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_verticalScrollbarValueChanged_767_0 (arg1); } @@ -4752,7 +4752,7 @@ static void _call_cbs_viewportEvent_1217_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QUndoView_Adaptor *)cls)->cbs_viewportEvent_1217_0 (arg1)); } @@ -4808,7 +4808,7 @@ static void _call_cbs_visualRect_c2395_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QUndoView_Adaptor *)cls)->cbs_visualRect_c2395_0 (arg1)); } @@ -4831,7 +4831,7 @@ static void _call_cbs_visualRegionForSelection_c2727_0 (const qt_gsi::GenericMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QItemSelection &arg1 = args.read (heap); + const QItemSelection &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRegion)((QUndoView_Adaptor *)cls)->cbs_visualRegionForSelection_c2727_0 (arg1)); } @@ -4854,7 +4854,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQVBoxLayout.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQVBoxLayout.cc index 5892f587d..7ca1211b3 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQVBoxLayout.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQVBoxLayout.cc @@ -753,7 +753,8 @@ static void _call_cbs_addItem_1740_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QLayoutItem *arg1 = args.read (heap); + QLayoutItem *arg1 = gsi::arg_reader() (args, heap); + qt_gsi::qt_keep (arg1); __SUPPRESS_UNUSED_WARNING(ret); ((QVBoxLayout_Adaptor *)cls)->cbs_addItem_1740_0 (arg1); } @@ -813,7 +814,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVBoxLayout_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -875,7 +876,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVBoxLayout_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -917,7 +918,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVBoxLayout_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -941,7 +942,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QVBoxLayout_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -966,8 +967,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QVBoxLayout_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1047,7 +1048,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QVBoxLayout_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -1070,7 +1071,7 @@ static void _call_cbs_indexOf_c2010_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QWidget *arg1 = args.read (heap); + const QWidget *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QVBoxLayout_Adaptor *)cls)->cbs_indexOf_c2010_0 (arg1)); } @@ -1093,7 +1094,7 @@ static void _call_cbs_indexOf_c2435_0 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QLayoutItem *arg1 = args.read (heap); + const QLayoutItem *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QVBoxLayout_Adaptor *)cls)->cbs_indexOf_c2435_0 (arg1)); } @@ -1173,7 +1174,7 @@ static void _call_cbs_itemAt_c767_0 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QLayoutItem *)((QVBoxLayout_Adaptor *)cls)->cbs_itemAt_c767_0 (arg1)); } @@ -1234,7 +1235,7 @@ static void _call_cbs_minimumHeightForWidth_c767_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QVBoxLayout_Adaptor *)cls)->cbs_minimumHeightForWidth_c767_0 (arg1)); } @@ -1316,9 +1317,9 @@ static void _call_cbs_replaceWidget_5361_1 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - QWidget *arg2 = args.read (heap); - QFlags arg3 = args.read > (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = gsi::arg_reader() (args, heap); + QFlags arg3 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (Qt::FindChildrenRecursively, heap); ret.write ((QLayoutItem *)((QVBoxLayout_Adaptor *)cls)->cbs_replaceWidget_5361_1 (arg1, arg2, arg3)); } @@ -1369,7 +1370,7 @@ static void _call_cbs_setGeometry_1792_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVBoxLayout_Adaptor *)cls)->cbs_setGeometry_1792_0 (arg1); } @@ -1393,7 +1394,7 @@ static void _call_cbs_setSpacing_767_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVBoxLayout_Adaptor *)cls)->cbs_setSpacing_767_0 (arg1); } @@ -1474,7 +1475,7 @@ static void _call_cbs_takeAt_767_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QLayoutItem *)((QVBoxLayout_Adaptor *)cls)->cbs_takeAt_767_0 (arg1)); } @@ -1497,7 +1498,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVBoxLayout_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQWidget.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQWidget.cc index e1adfba98..ccd968935 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQWidget.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQWidget.cc @@ -5857,7 +5857,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -5881,7 +5881,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -5905,7 +5905,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -5929,7 +5929,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -5953,7 +5953,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -6020,7 +6020,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -6084,7 +6084,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -6108,7 +6108,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -6132,7 +6132,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -6156,7 +6156,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -6180,7 +6180,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -6204,7 +6204,7 @@ static void _call_cbs_enterEvent_1727_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEnterEvent *arg1 = args.read (heap); + QEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget_Adaptor *)cls)->cbs_enterEvent_1727_0 (arg1); } @@ -6228,7 +6228,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QWidget_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -6253,8 +6253,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QWidget_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -6277,7 +6277,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -6315,7 +6315,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QWidget_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -6338,7 +6338,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -6395,7 +6395,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QWidget_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -6418,7 +6418,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -6442,7 +6442,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -6466,7 +6466,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -6490,7 +6490,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QWidget_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -6531,7 +6531,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -6555,7 +6555,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -6579,7 +6579,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -6603,7 +6603,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QWidget_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -6645,7 +6645,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -6669,7 +6669,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -6693,7 +6693,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -6717,7 +6717,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -6741,7 +6741,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -6769,9 +6769,9 @@ static void _call_cbs_nativeEvent_6949_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - QIntegerForSizeof::Signed *arg3 = args.read::Signed * > (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + QIntegerForSizeof::Signed *arg3 = gsi::arg_reader::Signed * >() (args, heap); ret.write ((bool)((QWidget_Adaptor *)cls)->cbs_nativeEvent_6949_0 (arg1, arg2, arg3)); } @@ -6831,7 +6831,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -6873,7 +6873,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QWidget_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -6896,7 +6896,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -6948,7 +6948,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -6991,7 +6991,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -7034,7 +7034,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -7058,7 +7058,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -7101,7 +7101,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQWidgetAction.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQWidgetAction.cc index db5318161..71c5485b7 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQWidgetAction.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQWidgetAction.cc @@ -479,7 +479,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidgetAction_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -503,7 +503,7 @@ static void _call_cbs_createWidget_1315_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); ret.write ((QWidget *)((QWidgetAction_Adaptor *)cls)->cbs_createWidget_1315_0 (arg1)); } @@ -540,7 +540,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidgetAction_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -564,7 +564,7 @@ static void _call_cbs_deleteWidget_1315_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidgetAction_Adaptor *)cls)->cbs_deleteWidget_1315_0 (arg1); } @@ -606,7 +606,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidgetAction_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -648,7 +648,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QWidgetAction_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -673,8 +673,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QWidgetAction_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -793,7 +793,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidgetAction_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQWidgetItem.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQWidgetItem.cc index a15a24923..fea382a3a 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQWidgetItem.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQWidgetItem.cc @@ -627,7 +627,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QWidgetItem_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -727,7 +727,7 @@ static void _call_cbs_minimumHeightForWidth_c767_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QWidgetItem_Adaptor *)cls)->cbs_minimumHeightForWidth_c767_0 (arg1)); } @@ -769,7 +769,7 @@ static void _call_cbs_setGeometry_1792_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidgetItem_Adaptor *)cls)->cbs_setGeometry_1792_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQWizard.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQWizard.cc index b466d7627..959c36b69 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQWizard.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQWizard.cc @@ -2038,7 +2038,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -2081,7 +2081,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -2105,7 +2105,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -2129,7 +2129,7 @@ static void _call_cbs_cleanupPage_767_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard_Adaptor *)cls)->cbs_cleanupPage_767_0 (arg1); } @@ -2153,7 +2153,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -2177,7 +2177,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -2280,7 +2280,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -2344,7 +2344,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -2368,7 +2368,7 @@ static void _call_cbs_done_767_0 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard_Adaptor *)cls)->cbs_done_767_0 (arg1); } @@ -2392,7 +2392,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -2416,7 +2416,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -2440,7 +2440,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -2464,7 +2464,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -2488,7 +2488,7 @@ static void _call_cbs_enterEvent_1727_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEnterEvent *arg1 = args.read (heap); + QEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard_Adaptor *)cls)->cbs_enterEvent_1727_0 (arg1); } @@ -2512,7 +2512,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QWizard_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -2537,8 +2537,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QWizard_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -2598,7 +2598,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -2636,7 +2636,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QWizard_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -2659,7 +2659,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -2716,7 +2716,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QWizard_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -2753,7 +2753,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -2777,7 +2777,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -2801,7 +2801,7 @@ static void _call_cbs_initializePage_767_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard_Adaptor *)cls)->cbs_initializePage_767_0 (arg1); } @@ -2825,7 +2825,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2849,7 +2849,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QWizard_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2890,7 +2890,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2914,7 +2914,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2938,7 +2938,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2962,7 +2962,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QWizard_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -3004,7 +3004,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -3028,7 +3028,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -3052,7 +3052,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -3076,7 +3076,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -3100,7 +3100,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -3128,9 +3128,9 @@ static void _call_cbs_nativeEvent_6949_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - QIntegerForSizeof::Signed *arg3 = args.read::Signed * > (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + QIntegerForSizeof::Signed *arg3 = gsi::arg_reader::Signed * >() (args, heap); ret.write ((bool)((QWizard_Adaptor *)cls)->cbs_nativeEvent_6949_0 (arg1, arg2, arg3)); } @@ -3265,7 +3265,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -3307,7 +3307,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QWizard_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -3364,7 +3364,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -3416,7 +3416,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -3459,7 +3459,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -3502,7 +3502,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -3526,7 +3526,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -3588,7 +3588,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } diff --git a/src/gsiqt/qt6/QtWidgets/gsiDeclQWizardPage.cc b/src/gsiqt/qt6/QtWidgets/gsiDeclQWizardPage.cc index cfc9da427..9842e1b6a 100644 --- a/src/gsiqt/qt6/QtWidgets/gsiDeclQWizardPage.cc +++ b/src/gsiqt/qt6/QtWidgets/gsiDeclQWizardPage.cc @@ -1435,7 +1435,7 @@ static void _call_cbs_actionEvent_1823_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionEvent *arg1 = args.read (heap); + QActionEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizardPage_Adaptor *)cls)->cbs_actionEvent_1823_0 (arg1); } @@ -1459,7 +1459,7 @@ static void _call_cbs_changeEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizardPage_Adaptor *)cls)->cbs_changeEvent_1217_0 (arg1); } @@ -1483,7 +1483,7 @@ static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QChildEvent *arg1 = args.read (heap); + QChildEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizardPage_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); } @@ -1527,7 +1527,7 @@ static void _call_cbs_closeEvent_1719_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCloseEvent *arg1 = args.read (heap); + QCloseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizardPage_Adaptor *)cls)->cbs_closeEvent_1719_0 (arg1); } @@ -1565,7 +1565,7 @@ static void _call_cbs_contextMenuEvent_2363_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QContextMenuEvent *arg1 = args.read (heap); + QContextMenuEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizardPage_Adaptor *)cls)->cbs_contextMenuEvent_2363_0 (arg1); } @@ -1632,7 +1632,7 @@ static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizardPage_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); } @@ -1696,7 +1696,7 @@ static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizardPage_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); } @@ -1720,7 +1720,7 @@ static void _call_cbs_dragEnterEvent_2109_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragEnterEvent *arg1 = args.read (heap); + QDragEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizardPage_Adaptor *)cls)->cbs_dragEnterEvent_2109_0 (arg1); } @@ -1744,7 +1744,7 @@ static void _call_cbs_dragLeaveEvent_2092_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragLeaveEvent *arg1 = args.read (heap); + QDragLeaveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizardPage_Adaptor *)cls)->cbs_dragLeaveEvent_2092_0 (arg1); } @@ -1768,7 +1768,7 @@ static void _call_cbs_dragMoveEvent_2006_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDragMoveEvent *arg1 = args.read (heap); + QDragMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizardPage_Adaptor *)cls)->cbs_dragMoveEvent_2006_0 (arg1); } @@ -1792,7 +1792,7 @@ static void _call_cbs_dropEvent_1622_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizardPage_Adaptor *)cls)->cbs_dropEvent_1622_0 (arg1); } @@ -1816,7 +1816,7 @@ static void _call_cbs_enterEvent_1727_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEnterEvent *arg1 = args.read (heap); + QEnterEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizardPage_Adaptor *)cls)->cbs_enterEvent_1727_0 (arg1); } @@ -1840,7 +1840,7 @@ static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QWizardPage_Adaptor *)cls)->cbs_event_1217_0 (arg1)); } @@ -1865,8 +1865,8 @@ static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QWizardPage_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); } @@ -1907,7 +1907,7 @@ static void _call_cbs_focusInEvent_1729_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizardPage_Adaptor *)cls)->cbs_focusInEvent_1729_0 (arg1); } @@ -1945,7 +1945,7 @@ static void _call_cbs_focusNextPrevChild_864_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QWizardPage_Adaptor *)cls)->cbs_focusNextPrevChild_864_0 (arg1)); } @@ -1968,7 +1968,7 @@ static void _call_cbs_focusOutEvent_1729_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFocusEvent *arg1 = args.read (heap); + QFocusEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizardPage_Adaptor *)cls)->cbs_focusOutEvent_1729_0 (arg1); } @@ -2025,7 +2025,7 @@ static void _call_cbs_heightForWidth_c767_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QWizardPage_Adaptor *)cls)->cbs_heightForWidth_c767_0 (arg1)); } @@ -2048,7 +2048,7 @@ static void _call_cbs_hideEvent_1595_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHideEvent *arg1 = args.read (heap); + QHideEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizardPage_Adaptor *)cls)->cbs_hideEvent_1595_0 (arg1); } @@ -2072,7 +2072,7 @@ static void _call_cbs_initPainter_c1426_0 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizardPage_Adaptor *)cls)->cbs_initPainter_c1426_0 (arg1); } @@ -2116,7 +2116,7 @@ static void _call_cbs_inputMethodEvent_2354_0 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputMethodEvent *arg1 = args.read (heap); + QInputMethodEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizardPage_Adaptor *)cls)->cbs_inputMethodEvent_2354_0 (arg1); } @@ -2140,7 +2140,7 @@ static void _call_cbs_inputMethodQuery_c2420_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QWizardPage_Adaptor *)cls)->cbs_inputMethodQuery_c2420_0 (arg1)); } @@ -2200,7 +2200,7 @@ static void _call_cbs_keyPressEvent_1514_0 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizardPage_Adaptor *)cls)->cbs_keyPressEvent_1514_0 (arg1); } @@ -2224,7 +2224,7 @@ static void _call_cbs_keyReleaseEvent_1514_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeyEvent *arg1 = args.read (heap); + QKeyEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizardPage_Adaptor *)cls)->cbs_keyReleaseEvent_1514_0 (arg1); } @@ -2248,7 +2248,7 @@ static void _call_cbs_leaveEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizardPage_Adaptor *)cls)->cbs_leaveEvent_1217_0 (arg1); } @@ -2272,7 +2272,7 @@ static void _call_cbs_metric_c3445_0 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QWizardPage_Adaptor *)cls)->cbs_metric_c3445_0 (arg1)); } @@ -2314,7 +2314,7 @@ static void _call_cbs_mouseDoubleClickEvent_1738_0 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizardPage_Adaptor *)cls)->cbs_mouseDoubleClickEvent_1738_0 (arg1); } @@ -2338,7 +2338,7 @@ static void _call_cbs_mouseMoveEvent_1738_0 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizardPage_Adaptor *)cls)->cbs_mouseMoveEvent_1738_0 (arg1); } @@ -2362,7 +2362,7 @@ static void _call_cbs_mousePressEvent_1738_0 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizardPage_Adaptor *)cls)->cbs_mousePressEvent_1738_0 (arg1); } @@ -2386,7 +2386,7 @@ static void _call_cbs_mouseReleaseEvent_1738_0 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMouseEvent *arg1 = args.read (heap); + QMouseEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizardPage_Adaptor *)cls)->cbs_mouseReleaseEvent_1738_0 (arg1); } @@ -2410,7 +2410,7 @@ static void _call_cbs_moveEvent_1624_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMoveEvent *arg1 = args.read (heap); + QMoveEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizardPage_Adaptor *)cls)->cbs_moveEvent_1624_0 (arg1); } @@ -2438,9 +2438,9 @@ static void _call_cbs_nativeEvent_6949_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - QIntegerForSizeof::Signed *arg3 = args.read::Signed * > (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + QIntegerForSizeof::Signed *arg3 = gsi::arg_reader::Signed * >() (args, heap); ret.write ((bool)((QWizardPage_Adaptor *)cls)->cbs_nativeEvent_6949_0 (arg1, arg2, arg3)); } @@ -2519,7 +2519,7 @@ static void _call_cbs_paintEvent_1725_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintEvent *arg1 = args.read (heap); + QPaintEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizardPage_Adaptor *)cls)->cbs_paintEvent_1725_0 (arg1); } @@ -2561,7 +2561,7 @@ static void _call_cbs_redirected_c1225_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPoint *arg1 = args.read (heap); + QPoint *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPaintDevice *)((QWizardPage_Adaptor *)cls)->cbs_redirected_c1225_0 (arg1)); } @@ -2612,7 +2612,7 @@ static void _call_cbs_resizeEvent_1843_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QResizeEvent *arg1 = args.read (heap); + QResizeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizardPage_Adaptor *)cls)->cbs_resizeEvent_1843_0 (arg1); } @@ -2686,7 +2686,7 @@ static void _call_cbs_setVisible_864_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizardPage_Adaptor *)cls)->cbs_setVisible_864_0 (arg1); } @@ -2729,7 +2729,7 @@ static void _call_cbs_showEvent_1634_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QShowEvent *arg1 = args.read (heap); + QShowEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizardPage_Adaptor *)cls)->cbs_showEvent_1634_0 (arg1); } @@ -2772,7 +2772,7 @@ static void _call_cbs_tabletEvent_1821_0 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabletEvent *arg1 = args.read (heap); + QTabletEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizardPage_Adaptor *)cls)->cbs_tabletEvent_1821_0 (arg1); } @@ -2796,7 +2796,7 @@ static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); + QTimerEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizardPage_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); } @@ -2858,7 +2858,7 @@ static void _call_cbs_wheelEvent_1718_0 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWheelEvent *arg1 = args.read (heap); + QWheelEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizardPage_Adaptor *)cls)->cbs_wheelEvent_1718_0 (arg1); } From 4e142627b69344c4816c16e4d436d866a6f4f7d7 Mon Sep 17 00:00:00 2001 From: Matthias Koefferlein Date: Sat, 14 Feb 2026 19:44:24 +0100 Subject: [PATCH 005/212] added test --- testdata/ruby/qtbinding.rb | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/testdata/ruby/qtbinding.rb b/testdata/ruby/qtbinding.rb index 3243e5bc8..a19560ad6 100644 --- a/testdata/ruby/qtbinding.rb +++ b/testdata/ruby/qtbinding.rb @@ -914,6 +914,23 @@ class QtBinding_TestClass < TestBase end + # issue #2273 + def test_62 + + 1000.times do |i| + + spacer = RBA::QSpacerItem.new(0, 5) + basic_tab = RBA::QWidget.new + basic_layout_setup = RBA::QFormLayout.new(basic_tab) + basic_layout_setup.setSpacing(15) + + basic_layout_setup.addItem(spacer) + basic_layout_setup.setSpacing(10) + + end + + end + end load("test_epilogue.rb") From b685f896399685c5bd17e2ce8630e78cbdf39478 Mon Sep 17 00:00:00 2001 From: Matthias Koefferlein Date: Mon, 16 Feb 2026 23:49:23 +0100 Subject: [PATCH 006/212] C++20 readiness --- src/db/db/dbCompoundOperation.cc | 2 +- src/db/db/dbCompoundOperation.h | 4 ++-- src/db/db/dbPropertiesFilter.h | 12 ++++++------ src/db/db/dbRegionLocalOperations.cc | 2 +- src/gsi/gsi/gsiIterators.h | 2 +- src/laybasic/unit_tests/layAnnotationShapes.cc | 2 +- src/tl/tl/tlClassRegistry.h | 2 +- src/tl/tl/tlEventsVar.h | 4 ++-- 8 files changed, 15 insertions(+), 15 deletions(-) diff --git a/src/db/db/dbCompoundOperation.cc b/src/db/db/dbCompoundOperation.cc index adaf30abc..dc9953582 100644 --- a/src/db/db/dbCompoundOperation.cc +++ b/src/db/db/dbCompoundOperation.cc @@ -859,7 +859,7 @@ namespace struct generic_result_adaptor { public: - generic_result_adaptor (std::vector > *results) + generic_result_adaptor (std::vector > *results) : mp_results (results) { m_intermediate.reserve (results->size ()); diff --git a/src/db/db/dbCompoundOperation.h b/src/db/db/dbCompoundOperation.h index 719e9e267..cfbd5d1b7 100644 --- a/src/db/db/dbCompoundOperation.h +++ b/src/db/db/dbCompoundOperation.h @@ -1758,7 +1758,7 @@ public: * Creates a local operation which utilizes the operation tree. "node" is the root of the operation tree. * Ownership of the node is *not* transferred to the local operation. */ - compound_local_operation (CompoundRegionOperationNode *node) + compound_local_operation (CompoundRegionOperationNode *node) : mp_node (node) { } @@ -1802,7 +1802,7 @@ public: * Creates a local operation which utilizes the operation tree. "node" is the root of the operation tree. * Ownership of the node is *not* transferred to the local operation. */ - compound_local_operation_with_properties (CompoundRegionOperationNode *node, db::PropertyConstraint prop_constraint) + compound_local_operation_with_properties (CompoundRegionOperationNode *node, db::PropertyConstraint prop_constraint) : mp_node (node), m_prop_constraint (prop_constraint) { // .. nothing yet .. diff --git a/src/db/db/dbPropertiesFilter.h b/src/db/db/dbPropertiesFilter.h index b11a0ae46..fbcb9fd10 100644 --- a/src/db/db/dbPropertiesFilter.h +++ b/src/db/db/dbPropertiesFilter.h @@ -69,19 +69,19 @@ class polygon_properties_filter : public PolygonFilter, public PropertiesFilter { public: - polygon_properties_filter (const tl::Variant &name, const tl::GlobPattern &pattern, bool inverse) + polygon_properties_filter (const tl::Variant &name, const tl::GlobPattern &pattern, bool inverse) : PropertiesFilter (name, pattern, inverse) { // .. nothing yet .. } - polygon_properties_filter (const tl::Variant &name, const tl::Variant &value, bool inverse) + polygon_properties_filter(const tl::Variant &name, const tl::Variant &value, bool inverse) : PropertiesFilter (name, value, inverse) { // .. nothing yet .. } - polygon_properties_filter (const tl::Variant &name, const tl::Variant &from, const tl::Variant &to, bool inverse) + polygon_properties_filter (const tl::Variant &name, const tl::Variant &from, const tl::Variant &to, bool inverse) : PropertiesFilter (name, from, to, inverse) { // .. nothing yet .. @@ -103,19 +103,19 @@ class generic_properties_filter : public BasicFilter, public PropertiesFilter { public: - generic_properties_filter (const tl::Variant &name, const tl::GlobPattern &pattern, bool inverse) + generic_properties_filter (const tl::Variant &name, const tl::GlobPattern &pattern, bool inverse) : PropertiesFilter (name, pattern, inverse) { // .. nothing yet .. } - generic_properties_filter (const tl::Variant &name, const tl::Variant &value, bool inverse) + generic_properties_filter (const tl::Variant &name, const tl::Variant &value, bool inverse) : PropertiesFilter (name, value, inverse) { // .. nothing yet .. } - generic_properties_filter (const tl::Variant &name, const tl::Variant &from, const tl::Variant &to, bool inverse) + generic_properties_filter (const tl::Variant &name, const tl::Variant &from, const tl::Variant &to, bool inverse) : PropertiesFilter (name, from, to, inverse) { // .. nothing yet .. diff --git a/src/db/db/dbRegionLocalOperations.cc b/src/db/db/dbRegionLocalOperations.cc index 274b1c334..186ed30db 100644 --- a/src/db/db/dbRegionLocalOperations.cc +++ b/src/db/db/dbRegionLocalOperations.cc @@ -89,7 +89,7 @@ struct simple_result_inserter { typedef TR value_type; - simple_result_inserter (std::unordered_set &result) + simple_result_inserter (std::unordered_set &result) : mp_result (&result) { // .. nothing yet .. diff --git a/src/gsi/gsi/gsiIterators.h b/src/gsi/gsi/gsiIterators.h index 374102e8d..030d02686 100644 --- a/src/gsi/gsi/gsiIterators.h +++ b/src/gsi/gsi/gsiIterators.h @@ -40,7 +40,7 @@ template struct address_of; template struct address_of { - address_of () : b () { } + address_of () : b () { } const void *operator() (const X &x) const { b = x; return &b; } mutable X b; }; diff --git a/src/laybasic/unit_tests/layAnnotationShapes.cc b/src/laybasic/unit_tests/layAnnotationShapes.cc index 98a142939..f6a8cd56a 100644 --- a/src/laybasic/unit_tests/layAnnotationShapes.cc +++ b/src/laybasic/unit_tests/layAnnotationShapes.cc @@ -34,7 +34,7 @@ class shape_as_user_object : public db::DUserObjectBase { public: - shape_as_user_object (const Sh &sh) + shape_as_user_object (const Sh &sh) : m_shape (sh) { } diff --git a/src/tl/tl/tlClassRegistry.h b/src/tl/tl/tlClassRegistry.h index 6e5fd79a6..ec44b651d 100644 --- a/src/tl/tl/tlClassRegistry.h +++ b/src/tl/tl/tlClassRegistry.h @@ -217,7 +217,7 @@ public: /** * @brief Constructor */ - Registrar () + Registrar () : mp_first (0) { // .. nothing yet .. diff --git a/src/tl/tl/tlEventsVar.h b/src/tl/tl/tlEventsVar.h index bdac1ff62..5b0bbaca9 100644 --- a/src/tl/tl/tlEventsVar.h +++ b/src/tl/tl/tlEventsVar.h @@ -175,13 +175,13 @@ public: typedef typename receivers::iterator receivers_iterator; #endif - event<_TMPLARGLISTP> () + event () : mp_destroyed_sentinel (0) { // .. nothing yet .. } - ~event<_TMPLARGLISTP> () + ~event () { if (mp_destroyed_sentinel) { *mp_destroyed_sentinel = true; From a8119c5a5330d0b1b044c8d4b24a598e554bb5d5 Mon Sep 17 00:00:00 2001 From: Matthias Koefferlein Date: Wed, 18 Feb 2026 18:37:54 +0100 Subject: [PATCH 007/212] Performance improvement for hierarchical processor Problem was pushing of the results into the cell hierarchy somehow lead to thread stalling. Likely due to bbox invalidation and related effects. Solution is to store the results of the operations inside the context structure (along with the propagation information) and push it to the layout later in a single step. --- src/db/db/dbHierProcessor.cc | 35 +++++++++++++++++++++++------------ src/db/db/dbHierProcessor.h | 12 +++++++++++- src/db/db/dbHierProcessor2.cc | 34 ++++++++++++++++++++++++++++++---- 3 files changed, 64 insertions(+), 17 deletions(-) diff --git a/src/db/db/dbHierProcessor.cc b/src/db/db/dbHierProcessor.cc index f13935fd9..a6af1f211 100644 --- a/src/db/db/dbHierProcessor.cc +++ b/src/db/db/dbHierProcessor.cc @@ -714,7 +714,6 @@ local_processor_result_computation_task::perform () { mp_cell_contexts->compute_results (*mp_contexts, mp_cell, mp_op, m_output_layers, mp_proc); - // erase the contexts we don't need any longer { tl::MutexLocker locker (& mp_contexts->lock ()); @@ -734,7 +733,10 @@ local_processor_result_computation_task::perform () } #endif - mp_contexts->context_map ().erase (mp_cell); + // release some memory + auto ctx = mp_contexts->context_map ().find (mp_cell); + tl_assert (ctx != mp_contexts->context_map ().end ()); + ctx->second.cleanup (); } } @@ -881,15 +883,6 @@ void local_processor::run (local_operation *op, unsigned compute_results (contexts, op, output_layers); } -template -void local_processor::push_results (db::Cell *cell, unsigned int output_layer, const std::unordered_set &result) const -{ - if (! result.empty ()) { - tl::MutexLocker locker (&cell->layout ()->lock ()); - cell->shapes (output_layer).insert (result.begin (), result.end ()); - } -} - template void local_processor::compute_contexts (local_processor_contexts &contexts, const local_operation *op, unsigned int subject_layer, const std::vector &intruder_layers) const { @@ -1248,7 +1241,7 @@ local_processor::compute_results (local_processor_contexts::iterator cpc = contexts.context_map ().find (&mp_subject_layout->cell (*bu)); if (cpc != contexts.context_map ().end ()) { cpc->second.compute_results (contexts, cpc->first, op, output_layers, this); - contexts.context_map ().erase (cpc); + cpc->second.cleanup (); // release some memory } } @@ -1261,6 +1254,24 @@ local_processor::compute_results (local_processor_contextslock ()); + for (auto c = contexts.begin (); c != contexts.end (); ++c) { + + db::Cell *cell = c->first; + auto r = c->second.result ().begin (); + auto rend = c->second.result ().end (); + + for (auto o = output_layers.begin (); r != rend && o != output_layers.end (); ++o, ++r) { + if (! r->empty ()) { + cell->shapes (*o).insert (r->begin (), r->end ()); + } + } + + } + } } namespace { diff --git a/src/db/db/dbHierProcessor.h b/src/db/db/dbHierProcessor.h index 44705178f..c52dd372e 100644 --- a/src/db/db/dbHierProcessor.h +++ b/src/db/db/dbHierProcessor.h @@ -244,9 +244,20 @@ public: return m_contexts.end (); } + const std::vector > &result () const + { + return m_result; + } + + void cleanup () + { + m_contexts.clear (); + } + private: const db::Cell *mp_intruder_cell; std::unordered_map > m_contexts; + std::vector > m_result; }; template @@ -558,7 +569,6 @@ private: size_t get_progress () const; void compute_contexts (db::local_processor_contexts &contexts, db::local_processor_cell_context *parent_context, db::Cell *subject_parent, db::Cell *subject_cell, const db::ICplxTrans &subject_cell_inst, const db::Cell *intruder_cell, const typename local_processor_cell_contexts::context_key_type &intruders, db::Coord dist) const; void issue_compute_contexts (db::local_processor_contexts &contexts, db::local_processor_cell_context *parent_context, db::Cell *subject_parent, db::Cell *subject_cell, const db::ICplxTrans &subject_cell_inst, const db::Cell *intruder_cell, typename local_processor_cell_contexts::context_key_type &intruders, db::Coord dist) const; - void push_results (db::Cell *cell, unsigned int output_layer, const std::unordered_set &result) const; void compute_local_cell (const db::local_processor_contexts &contexts, db::Cell *subject_cell, const db::Cell *intruder_cell, const local_operation *op, const typename local_processor_cell_contexts::context_key_type &intruders, std::vector > &result) const; bool subject_cell_is_breakout (db::cell_index_type ci) const diff --git a/src/db/db/dbHierProcessor2.cc b/src/db/db/dbHierProcessor2.cc index a7909bb9b..5f7be3cc0 100644 --- a/src/db/db/dbHierProcessor2.cc +++ b/src/db/db/dbHierProcessor2.cc @@ -446,7 +446,12 @@ local_processor_cell_contexts::compute_results (const local_processo proc->compute_local_cell (contexts, cell, mp_intruder_cell, op, *c->first, res); } - if (common.empty ()) { + bool common_empty = true; + for (auto c = common.begin (); common_empty && c != common.end (); ++c) { + common_empty = c->empty (); + } + + if (common_empty) { CRONOLOGY_COMPUTE_BRACKET(event_propagate) for (std::vector::const_iterator o = output_layers.begin (); o != output_layers.end (); ++o) { @@ -519,9 +524,30 @@ local_processor_cell_contexts::compute_results (const local_processo } - for (std::vector::const_iterator o = output_layers.begin (); o != output_layers.end (); ++o) { - size_t oi = o - output_layers.begin (); - proc->push_results (cell, *o, common[oi]); + // store the results + + bool common_empty = true; + for (auto c = common.begin (); common_empty && c != common.end (); ++c) { + common_empty = c->empty (); + } + + if (! common_empty) { + if (m_result.empty ()) { + m_result.swap (common); + } else { + if (m_result.size () < common.size ()) { + m_result.resize (common.size ()); + } + auto t = m_result.begin (); + for (auto s = common.begin (); s != common.end (); ++s, ++t) { + if (t->empty ()) { + t->swap (*s); + } else { + t->insert (s->begin (), s->end ()); + s->clear (); + } + } + } } } From 95342092409b3d1ad4ab6e482cb9e788bc4a2e16 Mon Sep 17 00:00:00 2001 From: Matthias Koefferlein Date: Thu, 19 Feb 2026 21:36:00 +0100 Subject: [PATCH 008/212] Preparing to use C++20 atomics for thread locking, which is slightly more efficient. Right now, that's an experimental option. --- build.sh | 6 + src/klayout.pri | 14 +- src/tl/tl/atomic/atomic.h | 203 ---------------------------- src/tl/tl/atomic/atomic_msvc.h | 238 --------------------------------- src/tl/tl/atomic/spinlock.h | 78 ----------- src/tl/tl/tlThreads.cc | 75 ++++++++++- src/tl/tl/tlThreads.h | 23 +++- 7 files changed, 102 insertions(+), 535 deletions(-) delete mode 100644 src/tl/tl/atomic/atomic.h delete mode 100644 src/tl/tl/atomic/atomic_msvc.h delete mode 100644 src/tl/tl/atomic/spinlock.h diff --git a/build.sh b/build.sh index 1413134cc..ae7aa09bd 100755 --- a/build.sh +++ b/build.sh @@ -41,6 +41,7 @@ HAVE_CURL=0 HAVE_EXPAT=0 HAVE_GIT2=1 HAVE_LSTREAM=1 +HAVE_CPP20=0 RUBYINCLUDE="" RUBYINCLUDE2="" @@ -217,6 +218,9 @@ while [ "$*" != "" ]; do -nolstream) HAVE_LSTREAM=0 ;; + -cpp20) + HAVE_CPP20=1 + ;; -qt5) echo "*** WARNING: -qt5 option is ignored - Qt version is auto-detected now." ;; @@ -275,6 +279,7 @@ while [ "$*" != "" ]; do echo " -libpng Use libpng instead of Qt for PNG generation" echo " -nolibgit2 Do not include libgit2 for Git package support" echo " -nolstream Do not include the LStream plugin" + echo " -cpp20 Uses some C++20 features (e.g. atomics)" echo "" echo "Environment Variables:" echo "" @@ -670,6 +675,7 @@ qmake_options=( HAVE_PNG="$HAVE_PNG" HAVE_GIT2="$HAVE_GIT2" HAVE_LSTREAM="$HAVE_LSTREAM" + HAVE_CPP20="$HAVE_CPP20" PREFIX="$BIN" RPATH="$RPATH" KLAYOUT_VERSION="$KLAYOUT_VERSION" diff --git a/src/klayout.pri b/src/klayout.pri index 067942aec..c21ae29d8 100644 --- a/src/klayout.pri +++ b/src/klayout.pri @@ -204,12 +204,16 @@ msvc { # -Wno-reserved-user-defined-literal \ # - lessThan(QT_MAJOR_VERSION, 6) { - # because we use unordered_map/unordered_set: - QMAKE_CXXFLAGS += -std=c++11 + equals(HAVE_CPP20, "1") { + QMAKE_CXXFLAGS += -std=c++20 + DEFINES += HAVE_CPP20 } else { - # because we use unordered_map/unordered_set: - QMAKE_CXXFLAGS += -std=c++17 + lessThan(QT_MAJOR_VERSION, 6) { + # because we use unordered_map/unordered_set: + QMAKE_CXXFLAGS += -std=c++11 + } else { + QMAKE_CXXFLAGS += -std=c++17 + } } win32 { diff --git a/src/tl/tl/atomic/atomic.h b/src/tl/tl/atomic/atomic.h deleted file mode 100644 index 45f2af681..000000000 --- a/src/tl/tl/atomic/atomic.h +++ /dev/null @@ -1,203 +0,0 @@ -//---------------------------------------------------------------------------- -// This is free and unencumbered software released into the public domain. -// -// Anyone is free to copy, modify, publish, use, compile, sell, or distribute -// this software, either in source code form or as a compiled binary, for any -// purpose, commercial or non-commercial, and by any means. -// -// In jurisdictions that recognize copyright laws, the author or authors of -// this software dedicate any and all copyright interest in the software to the -// public domain. We make this dedication for the benefit of the public at -// large and to the detriment of our heirs and successors. We intend this -// dedication to be an overt act of relinquishment in perpetuity of all present -// and future rights to this software under copyright law. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -// AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN -// ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -// -// For more information, please refer to -//----------------------------------------------------------------------------- - -#ifndef ATOMIC_ATOMIC_H_ -#define ATOMIC_ATOMIC_H_ - -// Macro for disallowing copying of an object. -#if __cplusplus >= 201103L -#define ATOMIC_DISALLOW_COPY(T) \ - T(const T&) = delete; \ - T& operator=(const T&) = delete; -#else -#define ATOMIC_DISALLOW_COPY(T) \ - T(const T&); \ - T& operator=(const T&); -#endif - -// A portable static assert. -#if __cplusplus >= 201103L -#define ATOMIC_STATIC_ASSERT(condition, message) \ - static_assert((condition), message) -#else -// Based on: http://stackoverflow.com/a/809465/5778708 -#define ATOMIC_STATIC_ASSERT(condition, message) \ - _impl_STATIC_ASSERT_LINE(condition, __LINE__) -#define _impl_PASTE(a, b) a##b -#ifdef __GNUC__ -#define _impl_UNUSED __attribute__((__unused__)) -#else -#define _impl_UNUSED -#endif -#define _impl_STATIC_ASSERT_LINE(condition, line) \ - typedef char _impl_PASTE( \ - STATIC_ASSERT_failed_, \ - line)[(2 * static_cast(!!(condition))) - 1] _impl_UNUSED -#endif - -#if defined(__GNUC__) || defined(__clang__) || defined(__xlc__) -#define ATOMIC_USE_GCC_INTRINSICS -#elif defined(_MSC_VER) -#define ATOMIC_USE_MSVC_INTRINSICS -#include "atomic_msvc.h" -#elif __cplusplus >= 201103L -#define ATOMIC_USE_CPP11_ATOMIC -#include -#else -#error Unsupported compiler / system. -#endif - -namespace atomic { -template -class atomic { -public: - ATOMIC_STATIC_ASSERT(sizeof(T) == 1 || sizeof(T) == 2 || sizeof(T) == 4 || - sizeof(T) == 8, - "Only types of size 1, 2, 4 or 8 are supported"); - - atomic() : value_(static_cast(0)) {} - - explicit atomic(const T value) : value_(value) {} - - /// @brief Performs an atomic increment operation (value + 1). - /// @returns The new value of the atomic object. - T operator++() { -#if defined(ATOMIC_USE_GCC_INTRINSICS) - return __atomic_add_fetch(&value_, 1, __ATOMIC_SEQ_CST); -#elif defined(ATOMIC_USE_MSVC_INTRINSICS) - return msvc::interlocked::increment(&value_); -#else - return ++value_; -#endif - } - - /// @brief Performs an atomic decrement operation (value - 1). - /// @returns The new value of the atomic object. - T operator--() { -#if defined(ATOMIC_USE_GCC_INTRINSICS) - return __atomic_sub_fetch(&value_, 1, __ATOMIC_SEQ_CST); -#elif defined(ATOMIC_USE_MSVC_INTRINSICS) - return msvc::interlocked::decrement(&value_); -#else - return --value_; -#endif - } - - /// @brief Performs an atomic compare-and-swap (CAS) operation. - /// - /// The value of the atomic object is only updated to the new value if the - /// old value of the atomic object matches @c expected_val. - /// - /// @param expected_val The expected value of the atomic object. - /// @param new_val The new value to write to the atomic object. - /// @returns True if new_value was written to the atomic object. - bool compare_exchange(const T expected_val, const T new_val) { -#if defined(ATOMIC_USE_GCC_INTRINSICS) - T e = expected_val; - return __atomic_compare_exchange_n( - &value_, &e, new_val, true, __ATOMIC_SEQ_CST, __ATOMIC_SEQ_CST); -#elif defined(ATOMIC_USE_MSVC_INTRINSICS) - const T old_val = - msvc::interlocked::compare_exchange(&value_, new_val, expected_val); - return (old_val == expected_val); -#else - T e = expected_val; - return value_.compare_exchange_weak(e, new_val); -#endif - } - - /// @brief Performs an atomic set operation. - /// - /// The value of the atomic object is unconditionally updated to the new - /// value. - /// - /// @param new_val The new value to write to the atomic object. - void store(const T new_val) { -#if defined(ATOMIC_USE_GCC_INTRINSICS) - __atomic_store_n(&value_, new_val, __ATOMIC_SEQ_CST); -#elif defined(ATOMIC_USE_MSVC_INTRINSICS) - (void)msvc::interlocked::exchange(&value_, new_val); -#else - value_.store(new_val); -#endif - } - - /// @returns the current value of the atomic object. - /// @note Be careful about how this is used, since any operations on the - /// returned value are inherently non-atomic. - T load() const { -#if defined(ATOMIC_USE_GCC_INTRINSICS) - return __atomic_load_n(&value_, __ATOMIC_SEQ_CST); -#elif defined(ATOMIC_USE_MSVC_INTRINSICS) - // TODO(m): Is there a better solution for MSVC? - return value_; -#else - return value_; -#endif - } - - /// @brief Performs an atomic exchange operation. - /// - /// The value of the atomic object is unconditionally updated to the new - /// value, and the old value is returned. - /// - /// @param new_val The new value to write to the atomic object. - /// @returns the old value. - T exchange(const T new_val) { -#if defined(ATOMIC_USE_GCC_INTRINSICS) - return __atomic_exchange_n(&value_, new_val, __ATOMIC_SEQ_CST); -#elif defined(ATOMIC_USE_MSVC_INTRINSICS) - return msvc::interlocked::exchange(&value_, new_val); -#else - return value_.exchange(new_val); -#endif - } - - T operator=(const T new_value) { - store(new_value); - return new_value; - } - - operator T() const { - return load(); - } - -private: -#if defined(ATOMIC_USE_GCC_INTRINSICS) || defined(ATOMIC_USE_MSVC_INTRINSICS) - volatile T value_; -#else - std::atomic value_; -#endif - - ATOMIC_DISALLOW_COPY(atomic) -}; - -} // namespace atomic - -// Undef temporary defines. -#undef ATOMIC_USE_GCC_INTRINSICS -#undef ATOMIC_USE_MSVC_INTRINSICS -#undef ATOMIC_USE_CPP11_ATOMIC - -#endif // ATOMIC_ATOMIC_H_ diff --git a/src/tl/tl/atomic/atomic_msvc.h b/src/tl/tl/atomic/atomic_msvc.h deleted file mode 100644 index d17254f48..000000000 --- a/src/tl/tl/atomic/atomic_msvc.h +++ /dev/null @@ -1,238 +0,0 @@ -//----------------------------------------------------------------------------- -// This is free and unencumbered software released into the public domain. -// -// Anyone is free to copy, modify, publish, use, compile, sell, or distribute -// this software, either in source code form or as a compiled binary, for any -// purpose, commercial or non-commercial, and by any means. -// -// In jurisdictions that recognize copyright laws, the author or authors of -// this software dedicate any and all copyright interest in the software to the -// public domain. We make this dedication for the benefit of the public at -// large and to the detriment of our heirs and successors. We intend this -// dedication to be an overt act of relinquishment in perpetuity of all present -// and future rights to this software under copyright law. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -// AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN -// ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -// -// For more information, please refer to -//----------------------------------------------------------------------------- - -#ifndef ATOMIC_ATOMIC_MSVC_H_ -#define ATOMIC_ATOMIC_MSVC_H_ - -// Define which functions we need (don't include ). -extern "C" { -short _InterlockedIncrement16(short volatile*); -long _InterlockedIncrement(long volatile*); -__int64 _InterlockedIncrement64(__int64 volatile*); - -short _InterlockedDecrement16(short volatile*); -long _InterlockedDecrement(long volatile*); -__int64 _InterlockedDecrement64(__int64 volatile*); - -char _InterlockedExchange8(char volatile*, char); -short _InterlockedExchange16(short volatile*, short); -long __cdecl _InterlockedExchange(long volatile*, long); -__int64 _InterlockedExchange64(__int64 volatile*, __int64); - -char _InterlockedCompareExchange8(char volatile*, char, char); -short _InterlockedCompareExchange16(short volatile*, short, short); -long __cdecl _InterlockedCompareExchange(long volatile*, long, long); -__int64 _InterlockedCompareExchange64(__int64 volatile*, __int64, __int64); -}; - -// Define which functions we want to use as inline intriniscs. -#pragma intrinsic(_InterlockedIncrement) -#pragma intrinsic(_InterlockedIncrement16) - -#pragma intrinsic(_InterlockedDecrement) -#pragma intrinsic(_InterlockedDecrement16) - -#pragma intrinsic(_InterlockedCompareExchange) -#pragma intrinsic(_InterlockedCompareExchange8) -#pragma intrinsic(_InterlockedCompareExchange16) - -#pragma intrinsic(_InterlockedExchange) -#pragma intrinsic(_InterlockedExchange8) -#pragma intrinsic(_InterlockedExchange16) - -#if defined(_M_X64) -#pragma intrinsic(_InterlockedIncrement64) -#pragma intrinsic(_InterlockedDecrement64) -#pragma intrinsic(_InterlockedCompareExchange64) -#pragma intrinsic(_InterlockedExchange64) -#endif // _M_X64 - -namespace atomic { -namespace msvc { -template -struct interlocked { -}; - -template -struct interlocked { - static inline T increment(T volatile* x) { - // There's no _InterlockedIncrement8(). - char old_val, new_val; - do { - old_val = static_cast(*x); - new_val = old_val + static_cast(1); - } while (_InterlockedCompareExchange8(reinterpret_cast(x), - new_val, - old_val) != old_val); - return static_cast(new_val); - } - - static inline T decrement(T volatile* x) { - // There's no _InterlockedDecrement8(). - char old_val, new_val; - do { - old_val = static_cast(*x); - new_val = old_val - static_cast(1); - } while (_InterlockedCompareExchange8(reinterpret_cast(x), - new_val, - old_val) != old_val); - return static_cast(new_val); - } - - static inline T compare_exchange(T volatile* x, - const T new_val, - const T expected_val) { - return static_cast( - _InterlockedCompareExchange8(reinterpret_cast(x), - static_cast(new_val), - static_cast(expected_val))); - } - - static inline T exchange(T volatile* x, const T new_val) { - return static_cast(_InterlockedExchange8( - reinterpret_cast(x), static_cast(new_val))); - } -}; - -template -struct interlocked { - static inline T increment(T volatile* x) { - return static_cast( - _InterlockedIncrement16(reinterpret_cast(x))); - } - - static inline T decrement(T volatile* x) { - return static_cast( - _InterlockedDecrement16(reinterpret_cast(x))); - } - - static inline T compare_exchange(T volatile* x, - const T new_val, - const T expected_val) { - return static_cast( - _InterlockedCompareExchange16(reinterpret_cast(x), - static_cast(new_val), - static_cast(expected_val))); - } - - static inline T exchange(T volatile* x, const T new_val) { - return static_cast( - _InterlockedExchange16(reinterpret_cast(x), - static_cast(new_val))); - } -}; - -template -struct interlocked { - static inline T increment(T volatile* x) { - return static_cast( - _InterlockedIncrement(reinterpret_cast(x))); - } - - static inline T decrement(T volatile* x) { - return static_cast( - _InterlockedDecrement(reinterpret_cast(x))); - } - - static inline T compare_exchange(T volatile* x, - const T new_val, - const T expected_val) { - return static_cast( - _InterlockedCompareExchange(reinterpret_cast(x), - static_cast(new_val), - static_cast(expected_val))); - } - - static inline T exchange(T volatile* x, const T new_val) { - return static_cast(_InterlockedExchange( - reinterpret_cast(x), static_cast(new_val))); - } -}; - -template -struct interlocked { - static inline T increment(T volatile* x) { -#if defined(_M_X64) - return static_cast( - _InterlockedIncrement64(reinterpret_cast(x))); -#else - // There's no _InterlockedIncrement64() for 32-bit x86. - __int64 old_val, new_val; - do { - old_val = static_cast<__int64>(*x); - new_val = old_val + static_cast<__int64>(1); - } while (_InterlockedCompareExchange64( - reinterpret_cast(x), new_val, old_val) != - old_val); - return static_cast(new_val); -#endif // _M_X64 - } - - static inline T decrement(T volatile* x) { -#if defined(_M_X64) - return static_cast( - _InterlockedDecrement64(reinterpret_cast(x))); -#else - // There's no _InterlockedDecrement64() for 32-bit x86. - __int64 old_val, new_val; - do { - old_val = static_cast<__int64>(*x); - new_val = old_val - static_cast<__int64>(1); - } while (_InterlockedCompareExchange64( - reinterpret_cast(x), new_val, old_val) != - old_val); - return static_cast(new_val); -#endif // _M_X64 - } - - static inline T compare_exchange(T volatile* x, - const T new_val, - const T expected_val) { - return static_cast(_InterlockedCompareExchange64( - reinterpret_cast(x), - static_cast(new_val), - static_cast(expected_val))); - } - - static inline T exchange(T volatile* x, const T new_val) { -#if defined(_M_X64) - return static_cast( - _InterlockedExchange64(reinterpret_cast(x), - static_cast(new_val))); -#else - // There's no _InterlockedExchange64 for 32-bit x86. - __int64 old_val; - do { - old_val = static_cast<__int64>(*x); - } while (_InterlockedCompareExchange64( - reinterpret_cast(x), new_val, old_val) != - old_val); - return static_cast(old_val); -#endif // _M_X64 - } -}; -} // namespace msvc -} // namespace atomic - -#endif // ATOMIC_ATOMIC_MSVC_H_ diff --git a/src/tl/tl/atomic/spinlock.h b/src/tl/tl/atomic/spinlock.h deleted file mode 100644 index 9e9653b04..000000000 --- a/src/tl/tl/atomic/spinlock.h +++ /dev/null @@ -1,78 +0,0 @@ -//----------------------------------------------------------------------------- -// This is free and unencumbered software released into the public domain. -// -// Anyone is free to copy, modify, publish, use, compile, sell, or distribute -// this software, either in source code form or as a compiled binary, for any -// purpose, commercial or non-commercial, and by any means. -// -// In jurisdictions that recognize copyright laws, the author or authors of -// this software dedicate any and all copyright interest in the software to the -// public domain. We make this dedication for the benefit of the public at -// large and to the detriment of our heirs and successors. We intend this -// dedication to be an overt act of relinquishment in perpetuity of all present -// and future rights to this software under copyright law. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -// AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN -// ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -// -// For more information, please refer to -//----------------------------------------------------------------------------- - -#ifndef ATOMIC_SPINLOCK_H_ -#define ATOMIC_SPINLOCK_H_ - -#include "atomic.h" - -namespace atomic { -class spinlock { -public: - spinlock() : value_(0) {} - - /// @brief Acquire the lock (blocking). - /// @note Trying to acquire a lock that is already held by the calling thread - /// will dead-lock (block indefinitely). - void lock() { - while (!value_.compare_exchange(UNLOCKED, LOCKED)) - ; - } - - /// @brief Release the lock. - /// @note It is an error to release a lock that has not been previously - /// acquired. - void unlock() { value_.store(UNLOCKED); } - -private: - static const int UNLOCKED = 0; - static const int LOCKED = 1; - - atomic value_; - - ATOMIC_DISALLOW_COPY(spinlock) -}; - -class lock_guard { -public: - /// @brief The constructor acquires the lock. - /// @param lock The spinlock that will be locked. - explicit lock_guard(spinlock& lock) : lock_(lock) { - lock_.lock(); - } - - /// @brief The destructor releases the lock. - ~lock_guard() { - lock_.unlock(); - } - -private: - spinlock& lock_; - - ATOMIC_DISALLOW_COPY(lock_guard) -}; - -} // namespace atomic - -#endif // ATOMIC_SPINLOCK_H_ diff --git a/src/tl/tl/tlThreads.cc b/src/tl/tl/tlThreads.cc index 671c28ddd..19ff4fa77 100644 --- a/src/tl/tl/tlThreads.cc +++ b/src/tl/tl/tlThreads.cc @@ -20,15 +20,17 @@ */ -#if !defined(HAVE_QT) || defined(HAVE_PTHREADS) - #include "tlThreads.h" #include "tlUtils.h" #include "tlTimer.h" +#include "tlSleep.h" #include "tlLog.h" #include "tlInternational.h" #include + +#if defined(HAVE_PTHREADS) + #define _TIMESPEC_DEFINED // avoids errors with pthread-win and MSVC2017 #include #include @@ -39,12 +41,71 @@ # include #endif +#endif + namespace tl { // ------------------------------------------------------------------------------- // WaitCondition implementation +#if defined(HAVE_CPP20) || !defined(HAVE_QT) || defined(HAVE_PTHREADS) + +#if defined(HAVE_CPP20) + +class WaitConditionPrivate +{ +public: + WaitConditionPrivate () + : m_condition () + { + } + + ~WaitConditionPrivate () + { + } + + bool wait (Mutex *mutex, unsigned long time) + { + bool result = true; + m_condition.clear (std::memory_order_release); + + mutex->unlock (); + + if (time != std::numeric_limits::max ()) { + while (time > 0 && ! m_condition.test (std::memory_order_acquire)) { + tl::usleep (1000); + --time; + } + result = (time != 0); + } else { + m_condition.wait (false); + } + + mutex->lock (); + + return result; + } + + void wake_all () + { + if (! m_condition.test_and_set (std::memory_order_acquire)) { + m_condition.notify_all (); + } + } + + void wake_one () + { + if (! m_condition.test_and_set (std::memory_order_acquire)) { + m_condition.notify_one (); + } + } + +private: + std::atomic_flag m_condition; +}; + +#else class WaitConditionPrivate { @@ -139,6 +200,8 @@ private: bool m_initialized; }; +#endif + WaitCondition::WaitCondition () { mp_data = new WaitConditionPrivate (); @@ -165,9 +228,13 @@ void WaitCondition::wakeOne () mp_data->wake_one (); } +#endif + // ------------------------------------------------------------------------------- // Thread implementation +#if !(defined(HAVE_QT) && !defined(HAVE_PTHREADS)) + class ThreadPrivateData { public: @@ -401,6 +468,6 @@ ThreadStorageHolderBase *ThreadStorageBase::holder () } } -} - #endif + +} diff --git a/src/tl/tl/tlThreads.h b/src/tl/tl/tlThreads.h index 28155f863..53fcdadc4 100644 --- a/src/tl/tl/tlThreads.h +++ b/src/tl/tl/tlThreads.h @@ -33,8 +33,7 @@ # include # include #else -// atomics taken from https://github.com/mbitsnbites/atomic -# include "atomic/spinlock.h" +# include #endif namespace tl @@ -60,11 +59,21 @@ public: class TL_PUBLIC Mutex { public: - Mutex () : m_spinlock () { } - void lock () { m_spinlock.lock (); } - void unlock () { m_spinlock.unlock (); } + Mutex () { } + + void lock () + { + while (flag.test_and_set (std::memory_order_acquire)) + ; + } + + void unlock () + { + flag.clear (std::memory_order_release); + } + private: - atomic::spinlock m_spinlock; + std::atomic_flag flag = ATOMIC_FLAG_INIT; }; #endif @@ -75,7 +84,7 @@ private: * available. */ -#if defined(HAVE_QT) && !defined(HAVE_PTHREADS) +#if defined(HAVE_QT) && !defined(HAVE_PTHREADS) && !defined(HAVE_CPP20) class TL_PUBLIC WaitCondition : public QWaitCondition From 94b84aad624c9d86eb055fb94d97cfc9ed7bf4b4 Mon Sep 17 00:00:00 2001 From: Matthias Koefferlein Date: Thu, 19 Feb 2026 21:43:41 +0100 Subject: [PATCH 009/212] Fixing dialog title of 'round corners dialog' --- src/edt/edt/RoundCornerOptionsDialog.ui | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/edt/edt/RoundCornerOptionsDialog.ui b/src/edt/edt/RoundCornerOptionsDialog.ui index 7cfd7c675..586107f2e 100644 --- a/src/edt/edt/RoundCornerOptionsDialog.ui +++ b/src/edt/edt/RoundCornerOptionsDialog.ui @@ -11,7 +11,7 @@ - Dialog + Round Corners From 95d6b0aca55a6068ccd7bd9f9db6385446b481f5 Mon Sep 17 00:00:00 2001 From: Matthias Koefferlein Date: Thu, 19 Feb 2026 22:34:10 +0100 Subject: [PATCH 010/212] Fixing a potential segfault during drawing This patch moves a lock inside the thread finishing code such that a race condition of the finish sequence and a random restart of the threads becomes impossible. This problem has been observed while randomly zooming with multiple drawing threads present. It's hard to reproduce. --- src/tl/tl/tlThreadedWorkers.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/tl/tl/tlThreadedWorkers.cc b/src/tl/tl/tlThreadedWorkers.cc index 089b57873..13c26230a 100644 --- a/src/tl/tl/tlThreadedWorkers.cc +++ b/src/tl/tl/tlThreadedWorkers.cc @@ -412,9 +412,9 @@ JobBase::stop () m_stopping = false; m_running = false; - m_lock.unlock (); - stopped (); + + m_lock.unlock (); } void From bc49082955e80538fbec289662f12425c6f57e19 Mon Sep 17 00:00:00 2001 From: Matthias Koefferlein Date: Thu, 19 Feb 2026 23:26:48 +0100 Subject: [PATCH 011/212] Fixing a small glitch: drawing into a ghost cell is possible, but did not turn off the ghost cell flag. Now the flag is still on, but a non-empty cell is not considered a ghost cell for most purposes. --- src/db/db/dbCell.cc | 16 ++++++++++++- src/db/db/dbCell.h | 19 +++++++++++---- src/db/db/dbLayout.cc | 2 +- src/db/db/dbLayoutStateModel.h | 16 ++++++------- src/db/db/gsiDeclDbCell.cc | 3 +++ src/laybasic/laybasic/layFinder.cc | 12 +++++----- .../laybasic/layRedrawThreadWorker.cc | 24 +++++++++---------- .../gds2/db_plugin/dbGDS2WriterBase.cc | 2 +- .../streamers/lstream/db_plugin/lstrWriter.cc | 2 +- .../oasis/db_plugin/dbOASISWriter.cc | 8 +------ 10 files changed, 63 insertions(+), 41 deletions(-) diff --git a/src/db/db/dbCell.cc b/src/db/db/dbCell.cc index 802614a2b..7200b30da 100644 --- a/src/db/db/dbCell.cc +++ b/src/db/db/dbCell.cc @@ -945,7 +945,7 @@ std::string Cell::get_display_name () const { tl_assert (layout () != 0); - if (is_ghost_cell () && empty ()) { + if (is_real_ghost_cell ()) { return std::string ("(") + layout ()->cell_name (cell_index ()) + std::string (")"); } else { return layout ()->cell_name (cell_index ()); @@ -959,6 +959,20 @@ Cell::set_name (const std::string &name) layout ()->rename_cell (cell_index (), name.c_str ()); } +void +Cell::set_ghost_cell (bool g) +{ + // NOTE: this change is not undo managed + if (m_ghost_cell != g) { + + m_ghost_cell = g; + tl_assert (layout () != 0); + // To trigger a redraw and cell tree rebuild + layout ()->cell_name_changed (); + + } +} + void Cell::check_locked () const { diff --git a/src/db/db/dbCell.h b/src/db/db/dbCell.h index 5bfe8b61c..c616a105d 100644 --- a/src/db/db/dbCell.h +++ b/src/db/db/dbCell.h @@ -925,15 +925,26 @@ public: return m_ghost_cell; } + /** + * @brief Gets a value indicating whether the cell is a "real" ghost cell + * + * A ghost cell is a real ghost cell only if the ghost cell flag is set + * and the cell is empty. Only in that case for example the cell is written + * to GDS files as a ghost cell. + * + * Otherwise, the ghost cell flag is mostly ignored. + */ + bool is_real_ghost_cell () const + { + return m_ghost_cell && empty (); + } + /** * @brief Sets the "ghost cell" flag * * See "is_ghost_cell" for a description of this property. */ - void set_ghost_cell (bool g) - { - m_ghost_cell = g; - } + void set_ghost_cell (bool g); /** * @brief Gets a value indicating whether the cell is locked diff --git a/src/db/db/dbLayout.cc b/src/db/db/dbLayout.cc index dacfcbd4f..40557f375 100644 --- a/src/db/db/dbLayout.cc +++ b/src/db/db/dbLayout.cc @@ -1417,7 +1417,7 @@ Layout::add_cell (const char *name) if (cm != m_cell_map.end ()) { const db::Cell &c= cell (cm->second); - if (c.is_ghost_cell () && c.empty ()) { + if (c.is_real_ghost_cell ()) { // ghost cells are available as new cells - the idea is to // treat them as non-existing. return cm->second; diff --git a/src/db/db/dbLayoutStateModel.h b/src/db/db/dbLayoutStateModel.h index d6f209241..3524f75c2 100644 --- a/src/db/db/dbLayoutStateModel.h +++ b/src/db/db/dbLayoutStateModel.h @@ -183,6 +183,14 @@ public: return m_busy; } + /** + * @brief Issue a "cell name changed event" + */ + void cell_name_changed () + { + cell_name_changed_event (); + } + protected: friend class PropertiesRepository; @@ -191,14 +199,6 @@ protected: */ virtual void do_update () { } - /** - * @brief Issue a "prop id's changed event" - */ - void cell_name_changed () - { - cell_name_changed_event (); - } - /** * @brief Issue a "layer properties changed event" */ diff --git a/src/db/db/gsiDeclDbCell.cc b/src/db/db/gsiDeclDbCell.cc index b9218f533..4a53b12df 100644 --- a/src/db/db/gsiDeclDbCell.cc +++ b/src/db/db/gsiDeclDbCell.cc @@ -3450,6 +3450,9 @@ Class decl_Cell ("db", "Cell", "To satisfy the references inside the layout, a dummy cell is created in this case\n" "which has the \"ghost cell\" flag set to true.\n" "\n" + "A ghost cell is a real ghost cell only if the cell is empty. In that case, it is written " + "as a ghost cell to GDS files for example. If a cell is not empty, this flag is ignored.\n" + "\n" "This method has been introduced in version 0.20.\n" ) + gsi::method ("ghost_cell=", &db::Cell::set_ghost_cell, gsi::arg ("flag"), diff --git a/src/laybasic/laybasic/layFinder.cc b/src/laybasic/laybasic/layFinder.cc index 81c969f41..ef7c7c97b 100644 --- a/src/laybasic/laybasic/layFinder.cc +++ b/src/laybasic/laybasic/layFinder.cc @@ -220,7 +220,7 @@ Finder::do_find (const db::Cell &cell, int level, const db::DCplxTrans &vp, cons && (t * m_cell_box_convert (cell)).touches (m_scan_region) && (mp_view->select_inside_pcells_mode () || !cell.is_proxy ()) && !mp_view->is_cell_hidden (cell.cell_index (), m_cv_index) - && !cell.is_ghost_cell ()) { + && !cell.is_real_ghost_cell ()) { db::ICplxTrans it = t.inverted (); db::Box scan_box (it * m_scan_region); @@ -846,7 +846,7 @@ InstFinder::reset_counter () bool InstFinder::consider_cell (const db::Cell &cell) const { - return cell.is_ghost_cell () ? m_consider_ghost_cells : m_consider_normal_cells; + return cell.is_real_ghost_cell () ? m_consider_ghost_cells : m_consider_normal_cells; } void @@ -877,7 +877,7 @@ InstFinder::visit_cell (const db::Cell &cell, const db::Box &search_box, const d // just consider the instances exactly at the last level of // hierarchy (this is where the boxes are drawn) or of cells that // are hidden. - if (level == max_level () - 1 || inst_cell.is_proxy () || inst_cell.is_ghost_cell () || mp_view->is_cell_hidden (inst_cell.cell_index (), m_cv_index)) { + if (level == max_level () - 1 || inst_cell.is_proxy () || inst_cell.is_real_ghost_cell () || mp_view->is_cell_hidden (inst_cell.cell_index (), m_cv_index)) { db::box_convert bc (layout ()); for (db::CellInstArray::iterator p = cell_inst.begin_touching (search_box, bc); ! p.at_end (); ++p) { @@ -885,7 +885,7 @@ InstFinder::visit_cell (const db::Cell &cell, const db::Box &search_box, const d checkpoint (); db::Box ibox; - if (! m_visible_layers || level == mp_view->get_max_hier_levels () - 1 || inst_cell.is_ghost_cell () || mp_view->is_cell_hidden (inst_cell.cell_index (), m_cv_index)) { + if (! m_visible_layers || level == mp_view->get_max_hier_levels () - 1 || inst_cell.is_real_ghost_cell () || mp_view->is_cell_hidden (inst_cell.cell_index (), m_cv_index)) { ibox = inst_cell.bbox_with_empty (); } else if (inst_cell.bbox ().empty ()) { // empty cells cannot be found by visible layers, so we always select them here @@ -954,7 +954,7 @@ InstFinder::visit_cell (const db::Cell &cell, const db::Box &search_box, const d // just consider the instances exactly at the last level of // hierarchy (this is where the boxes are drawn) or if of cells that // are hidden. - if (level == max_level () - 1 || inst_cell.is_proxy () || inst_cell.is_ghost_cell () || mp_view->is_cell_hidden (inst_cell.cell_index (), m_cv_index)) { + if (level == max_level () - 1 || inst_cell.is_proxy () || inst_cell.is_real_ghost_cell () || mp_view->is_cell_hidden (inst_cell.cell_index (), m_cv_index)) { db::box_convert bc (layout ()); for (db::CellInstArray::iterator p = cell_inst.begin_touching (search_box, bc); ! p.at_end (); ++p) { @@ -965,7 +965,7 @@ InstFinder::visit_cell (const db::Cell &cell, const db::Box &search_box, const d double d = std::numeric_limits::max (); db::Box ibox; - if (! m_visible_layers || level == mp_view->get_max_hier_levels () - 1 || inst_cell.is_ghost_cell () || mp_view->is_cell_hidden (inst_cell.cell_index (), m_cv_index)) { + if (! m_visible_layers || level == mp_view->get_max_hier_levels () - 1 || inst_cell.is_real_ghost_cell () || mp_view->is_cell_hidden (inst_cell.cell_index (), m_cv_index)) { ibox = inst_cell.bbox_with_empty (); } else if (inst_cell.bbox ().empty ()) { // empty cells cannot be found by visible layers, so we always select them here diff --git a/src/laybasic/laybasic/layRedrawThreadWorker.cc b/src/laybasic/laybasic/layRedrawThreadWorker.cc index d05a4de63..f193fa1cd 100644 --- a/src/laybasic/laybasic/layRedrawThreadWorker.cc +++ b/src/laybasic/laybasic/layRedrawThreadWorker.cc @@ -714,7 +714,7 @@ RedrawThreadWorker::setup (LayoutViewBase *view, RedrawThreadCanvas *canvas, con std::set &gc = m_ghost_cells [i]; const db::Layout &ly = view->cellview (i)->layout (); for (auto c = ly.begin (); c != ly.end (); ++c) { - if (c->is_ghost_cell ()) { + if (c->is_real_ghost_cell ()) { gc.insert (c->cell_index ()); } } @@ -950,12 +950,12 @@ RedrawThreadWorker::draw_boxes_impl (bool drawing_context, db::cell_index_type c bbox_for_label = bbox; } - if (for_ghosts && cell.is_ghost_cell ()) { + if (for_ghosts && cell.is_real_ghost_cell ()) { // paint the box on this level draw_cell (drawing_context, level, trans, bbox, bbox_for_label, empty_cell, mp_layout->display_name (ci), opt_bitmap); - } else if (! for_ghosts && ! cell.is_ghost_cell () && (level == m_to_level || (m_cv_index < int (m_hidden_cells.size ()) && m_hidden_cells [m_cv_index].find (ci) != m_hidden_cells [m_cv_index].end ()))) { + } else if (! for_ghosts && ! cell.is_real_ghost_cell () && (level == m_to_level || (m_cv_index < int (m_hidden_cells.size ()) && m_hidden_cells [m_cv_index].find (ci) != m_hidden_cells [m_cv_index].end ()))) { // paint the box on this level draw_cell (drawing_context, level, trans, bbox, bbox_for_label, empty_cell, mp_layout->display_name (ci), opt_bitmap); @@ -1186,12 +1186,12 @@ RedrawThreadWorker::draw_box_properties_impl (bool drawing_context, db::cell_ind // small cell dropped - } else if (for_ghosts && cell.is_ghost_cell ()) { + } else if (for_ghosts && cell.is_real_ghost_cell ()) { // paint the box on this level draw_cell_properties (drawing_context, level, trans, bbox, prop_id); - } else if (! for_ghosts && ! cell.is_ghost_cell () && (level == m_to_level || (m_cv_index < int (m_hidden_cells.size ()) && m_hidden_cells [m_cv_index].find (ci) != m_hidden_cells [m_cv_index].end ()))) { + } else if (! for_ghosts && ! cell.is_real_ghost_cell () && (level == m_to_level || (m_cv_index < int (m_hidden_cells.size ()) && m_hidden_cells [m_cv_index].find (ci) != m_hidden_cells [m_cv_index].end ()))) { // paint the box on this level draw_cell_properties (drawing_context, level, trans, bbox, prop_id); @@ -1317,7 +1317,7 @@ RedrawThreadWorker::any_shapes (db::cell_index_type cell_index, unsigned int lev // Ghost cells are not drawn either const db::Cell &cell = mp_layout->cell (cell_index); - if (cell.is_ghost_cell ()) { + if (cell.is_real_ghost_cell ()) { return false; } @@ -1359,7 +1359,7 @@ RedrawThreadWorker::any_cell_box (db::cell_index_type cell_index, unsigned int l // ghost cells are also drawn const db::Cell &cell = mp_layout->cell (cell_index); - if (cell.is_ghost_cell ()) { + if (cell.is_real_ghost_cell ()) { return true; } @@ -1400,7 +1400,7 @@ RedrawThreadWorker::any_text_shapes (db::cell_index_type cell_index, unsigned in // Ghost cells are not drawn either const db::Cell &cell = mp_layout->cell (cell_index); - if (cell.is_ghost_cell ()) { + if (cell.is_real_ghost_cell ()) { return false; } @@ -1503,7 +1503,7 @@ RedrawThreadWorker::draw_text_layer (bool drawing_context, db::cell_index_type c } else if (! bbox.empty ()) { - bool hidden = cell.is_ghost_cell () || ((m_cv_index < int (m_hidden_cells.size ()) && m_hidden_cells [m_cv_index].find (ci) != m_hidden_cells [m_cv_index].end ())); + bool hidden = cell.is_real_ghost_cell () || ((m_cv_index < int (m_hidden_cells.size ()) && m_hidden_cells [m_cv_index].find (ci) != m_hidden_cells [m_cv_index].end ())); bool need_to_dive = (level + 1 < m_to_level) && ! hidden; db::Box cell_bbox = cell.bbox (); @@ -1637,7 +1637,7 @@ RedrawThreadWorker::draw_text_layer (bool drawing_context, db::cell_index_type c ++inst; db::cell_index_type new_ci = cell_inst.object ().cell_index (); - bool hidden = mp_layout->cell (new_ci).is_ghost_cell () || ((m_cv_index < int (m_hidden_cells.size ()) && m_hidden_cells [m_cv_index].find (new_ci) != m_hidden_cells [m_cv_index].end ())); + bool hidden = mp_layout->cell (new_ci).is_real_ghost_cell () || ((m_cv_index < int (m_hidden_cells.size ()) && m_hidden_cells [m_cv_index].find (new_ci) != m_hidden_cells [m_cv_index].end ())); db::Box cell_box = mp_layout->cell (new_ci).bbox (m_layer); if (! cell_box.empty () && ! hidden) { @@ -1939,7 +1939,7 @@ RedrawThreadWorker::draw_layer_wo_cache (int from_level, int to_level, db::cell_ ++inst; db::cell_index_type new_ci = cell_inst.object ().cell_index (); - bool hidden = mp_layout->cell (new_ci).is_ghost_cell () || ((m_cv_index < int (m_hidden_cells.size ()) && m_hidden_cells [m_cv_index].find (new_ci) != m_hidden_cells [m_cv_index].end ())); + bool hidden = mp_layout->cell (new_ci).is_real_ghost_cell () || ((m_cv_index < int (m_hidden_cells.size ()) && m_hidden_cells [m_cv_index].find (new_ci) != m_hidden_cells [m_cv_index].end ())); db::Box new_cell_box = mp_layout->cell (new_ci).bbox (m_layer); if (! new_cell_box.empty () && ! hidden) { @@ -2096,7 +2096,7 @@ RedrawThreadWorker::draw_layer (int from_level, int to_level, db::cell_index_typ db::Box cell_bbox = cell.bbox (); // Nothing to draw - if (bbox.empty () || cell.is_ghost_cell ()) { + if (bbox.empty () || cell.is_real_ghost_cell ()) { return; } diff --git a/src/plugins/streamers/gds2/db_plugin/dbGDS2WriterBase.cc b/src/plugins/streamers/gds2/db_plugin/dbGDS2WriterBase.cc index 3f37a0606..c6b7a3ea2 100644 --- a/src/plugins/streamers/gds2/db_plugin/dbGDS2WriterBase.cc +++ b/src/plugins/streamers/gds2/db_plugin/dbGDS2WriterBase.cc @@ -577,7 +577,7 @@ GDS2WriterBase::write (db::Layout &layout, tl::OutputStream &stream, const db::S // don't write ghost cells unless they are not empty (any more) // also don't write proxy cells which are not employed - if ((! cref.is_ghost_cell () || ! cref.empty ()) && (! cref.is_proxy () || ! cref.is_top ())) { + if (! cref.is_real_ghost_cell () && (! cref.is_proxy () || ! cref.is_top ())) { try { write_cell (layout, cref, layers, cell_set, sf, time_data); diff --git a/src/plugins/streamers/lstream/db_plugin/lstrWriter.cc b/src/plugins/streamers/lstream/db_plugin/lstrWriter.cc index 4de9a2fc4..ccd31f815 100644 --- a/src/plugins/streamers/lstream/db_plugin/lstrWriter.cc +++ b/src/plugins/streamers/lstream/db_plugin/lstrWriter.cc @@ -913,7 +913,7 @@ Writer::make_meta_data (const db::Cell *cell, stream::metaData::MetaData::Builde void Writer::write_cell (db::cell_index_type ci, kj::BufferedOutputStream &os) { - bool needs_layout_view = ! mp_layout->cell (ci).is_ghost_cell (); + bool needs_layout_view = ! mp_layout->cell (ci).is_real_ghost_cell (); bool needs_meta_data_view = mp_layout->begin_meta (ci) != mp_layout->end_meta (ci); capnp::MallocMessageBuilder message; diff --git a/src/plugins/streamers/oasis/db_plugin/dbOASISWriter.cc b/src/plugins/streamers/oasis/db_plugin/dbOASISWriter.cc index e7ce59048..49f7b7077 100644 --- a/src/plugins/streamers/oasis/db_plugin/dbOASISWriter.cc +++ b/src/plugins/streamers/oasis/db_plugin/dbOASISWriter.cc @@ -1443,12 +1443,6 @@ static bool must_write_cell (const db::Cell &cref) return ! cref.is_proxy () || ! cref.is_top (); } -static bool skip_cell_body (const db::Cell &cref) -{ - // Skip cell bodies for ghost cells unless empty (they are not longer ghost cells in this case) - return cref.is_ghost_cell () && cref.empty (); -} - void OASISWriter::create_cell_nstrings (const db::Layout &layout, const std::set &cell_set) { @@ -1670,7 +1664,7 @@ OASISWriter::write (db::Layout &layout, tl::OutputStream &stream, const db::Save mp_cell = &cref; // skip cell body if the cell is not to be written - if (skip_cell_body (cref)) { + if (cref.is_real_ghost_cell ()) { continue; } From c14d8cc877d4578730e80a66b639de1ab32bd7d0 Mon Sep 17 00:00:00 2001 From: Matthias Koefferlein Date: Sat, 21 Feb 2026 20:44:02 +0100 Subject: [PATCH 012/212] [consider merging] proper cleanup of properties repo - this enables using user classes for names or values. Without this pre-finalization cleanup, the user class 'destroy' method may end up calling a method of an already destroyed class object. --- src/db/db/dbPropertiesRepository.cc | 13 +++++++++++-- src/db/unit_tests/dbPropertiesRepositoryTests.cc | 16 ++++++++++++++++ 2 files changed, 27 insertions(+), 2 deletions(-) diff --git a/src/db/db/dbPropertiesRepository.cc b/src/db/db/dbPropertiesRepository.cc index f10dd7050..22129dd52 100644 --- a/src/db/db/dbPropertiesRepository.cc +++ b/src/db/db/dbPropertiesRepository.cc @@ -27,6 +27,7 @@ #include "tlString.h" #include "tlAssert.h" #include "tlHash.h" +#include "tlStaticObjects.h" namespace db { @@ -348,13 +349,21 @@ PropertiesSet::hash () const // ---------------------------------------------------------------------------------- // PropertiesRepository implementation -static PropertiesRepository s_instance; +static PropertiesRepository *sp_global_instance = 0; static PropertiesRepository *sp_temp_instance = 0; PropertiesRepository & PropertiesRepository::instance () { - return sp_temp_instance ? *sp_temp_instance : s_instance; + if (sp_temp_instance) { + return *sp_temp_instance; + } else { + if (! sp_global_instance) { + sp_global_instance = new PropertiesRepository (); + tl::StaticObjects::reg (&sp_global_instance); + } + return *sp_global_instance; + } } void diff --git a/src/db/unit_tests/dbPropertiesRepositoryTests.cc b/src/db/unit_tests/dbPropertiesRepositoryTests.cc index 7363be12d..fe8dc27a3 100644 --- a/src/db/unit_tests/dbPropertiesRepositoryTests.cc +++ b/src/db/unit_tests/dbPropertiesRepositoryTests.cc @@ -503,3 +503,19 @@ TEST(SameValueDifferentTypes) EXPECT_EQ (db::property_name (rp.prop_name_id ((int) 5)).to_parsable_string (), "#5"); } } + +TEST(ComplexTypes) +{ + // This is also a smoke test: we intentionally register globally as the finalization code + // is critical: without the right destruction order we destroy the class object before the + // variant and trigger an assertion (pure virtual function called) + + db::PropertiesSet ps; + ps.insert (tl::Variant (17), db::DBox (0, 0, 1.5, 2.5)); + + db::properties_id_type pid = db::properties_id (ps); + + auto const &ps_out = db::properties (pid); + + EXPECT_EQ (ps_out.to_dict_var ().to_string (), "{17=>(0,0;1.5,2.5)}"); +} From 9f92c4eaa4342b817ad7fbc0012b2fb81073e2e8 Mon Sep 17 00:00:00 2001 From: Matthias Koefferlein Date: Sat, 21 Feb 2026 23:27:33 +0100 Subject: [PATCH 013/212] [consider merging] Bugfix: 'oasis_read_all_options' as always on in buddy tools. --- src/plugins/streamers/oasis/db_plugin/gsiDeclDbOASIS.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/streamers/oasis/db_plugin/gsiDeclDbOASIS.cc b/src/plugins/streamers/oasis/db_plugin/gsiDeclDbOASIS.cc index efa503565..90fd665de 100644 --- a/src/plugins/streamers/oasis/db_plugin/gsiDeclDbOASIS.cc +++ b/src/plugins/streamers/oasis/db_plugin/gsiDeclDbOASIS.cc @@ -38,7 +38,7 @@ static void set_oasis_read_all_properties (db::LoadLayoutOptions *options, bool options->get_options ().read_all_properties = f; } -static int get_oasis_read_all_properties (const db::LoadLayoutOptions *options) +static bool get_oasis_read_all_properties (const db::LoadLayoutOptions *options) { return options->get_options ().read_all_properties; } From 7ae87404a07b3d62d41771a1d7a01ddf54150cda Mon Sep 17 00:00:00 2001 From: Matthias Koefferlein Date: Sun, 22 Feb 2026 15:16:56 +0100 Subject: [PATCH 014/212] [consider merging] Adding an option '-of|--format' to strmxor and strmclip to specify the output format instead of taking it from the suffix --- src/buddies/src/bd/bdWriterOptions.cc | 39 +++++++++++++++++++++++++++ src/buddies/src/bd/bdWriterOptions.h | 7 +++++ 2 files changed, 46 insertions(+) diff --git a/src/buddies/src/bd/bdWriterOptions.cc b/src/buddies/src/bd/bdWriterOptions.cc index dc8bc4287..8d9ccf24f 100644 --- a/src/buddies/src/bd/bdWriterOptions.cc +++ b/src/buddies/src/bd/bdWriterOptions.cc @@ -98,6 +98,20 @@ const std::string GenericWriterOptions::dxf_format_name = "DXF"; const std::string GenericWriterOptions::cif_format_name = "CIF"; const std::string GenericWriterOptions::mag_format_name = "MAG"; +std::vector +GenericWriterOptions::all_format_names () +{ + std::vector names; + names.push_back (gds2_format_name); + names.push_back (gds2text_format_name); + names.push_back (oasis_format_name); + names.push_back (lstream_format_name); + names.push_back (dxf_format_name); + names.push_back (cif_format_name); + names.push_back (mag_format_name); + return names; +} + void GenericWriterOptions::add_options (tl::CommandLineOptions &cmd, const std::string &format) { @@ -109,6 +123,15 @@ GenericWriterOptions::add_options (tl::CommandLineOptions &cmd, const std::strin "given factor." ); + if (format.empty ()) { + cmd << tl::arg (group + + "-of|--format=format", &m_format, "Specifies the output format", + "By default, the output format is derived from the file name suffix. " + "You can also specify the format directly using this option. Allowed format names are: " + + tl::join (all_format_names (), ", ") + ); + } + if (format.empty () || format == gds2_format_name || format == gds2text_format_name || format == oasis_format_name) { cmd << tl::arg (group + "-od|--dbu-out=dbu", &m_dbu, "Uses the specified database unit", @@ -426,6 +449,22 @@ GenericWriterOptions::configure (db::SaveLayoutOptions &save_options, const db:: save_options.set_keep_instances (m_keep_instances); save_options.set_write_context_info (m_write_context_info); + if (! m_format.empty ()) { + + // check, if the format name is a valid one + std::vector af = all_format_names (); + auto i = af.begin (); + while (i != af.end () && *i != m_format) { + ++i; + } + if (i == af.end ()) { + throw tl::Exception (tl::sprintf (tl::to_string (tr ("Invalid fornat name %s. Allowed names are: %s")), m_format, tl::join (af, ", "))); + } + + save_options.set_format (m_format); + + } + save_options.set_option_by_name ("gds2_max_vertex_count", m_gds2_max_vertex_count); save_options.set_option_by_name ("gds2_no_zero_length_paths", m_gds2_no_zero_length_paths); save_options.set_option_by_name ("gds2_multi_xy_records", m_gds2_multi_xy_records); diff --git a/src/buddies/src/bd/bdWriterOptions.h b/src/buddies/src/bd/bdWriterOptions.h index 67119d1d8..b0831044a 100644 --- a/src/buddies/src/bd/bdWriterOptions.h +++ b/src/buddies/src/bd/bdWriterOptions.h @@ -26,6 +26,7 @@ #include "bdCommon.h" #include +#include namespace tl { @@ -60,6 +61,11 @@ public: */ GenericWriterOptions (const db::SaveLayoutOptions &options); + /** + * @brief Gets a list with all format names available + */ + static std::vector all_format_names (); + /** * @brief Adds the generic options to the command line parser object * The format string gives a hint about the target format. Certain options will be @@ -114,6 +120,7 @@ public: static const std::string mag_format_name; private: + std::string m_format; double m_scale_factor; double m_dbu; bool m_dont_write_empty_cells; From de7ace92953d78f545bb79b95b41e526cf1e7100 Mon Sep 17 00:00:00 2001 From: Matthias Koefferlein Date: Sun, 22 Feb 2026 23:49:21 +0100 Subject: [PATCH 015/212] [consider merging] Bugfix: OASIS reader was not able to read S_GDS_PROPERTY from file level or under forward reference conditions --- .../oasis/db_plugin/dbOASISReader.cc | 57 ++++++++++++++----- 1 file changed, 44 insertions(+), 13 deletions(-) diff --git a/src/plugins/streamers/oasis/db_plugin/dbOASISReader.cc b/src/plugins/streamers/oasis/db_plugin/dbOASISReader.cc index 2b3256808..124df7e44 100644 --- a/src/plugins/streamers/oasis/db_plugin/dbOASISReader.cc +++ b/src/plugins/streamers/oasis/db_plugin/dbOASISReader.cc @@ -1322,21 +1322,37 @@ OASISReader::resolve_forward_references (db::PropertiesSet &properties) const tl::Variant &name = db::property_name (p->first); if (name.is_id ()) { - std::map ::iterator pf = m_propname_forward_references.find (name.to_id ()); + uint64_t name_id = name.to_id (); + bool is_sprop = (name_id & 1) != 0; + name_id >>= 1; + + std::map ::iterator pf = m_propname_forward_references.find (name_id); if (pf != m_propname_forward_references.end ()) { - if (pf->second == m_s_gds_property_name_id) { + if (pf->second == m_klayout_context_property_name_id) { + + // NOTE: property names ID 0 is reserved for context strings + new_props.insert (property_names_id_type (0), value); + + } else if (! m_read_properties) { + + // ignore other properties + + } else if (pf->second == m_s_gds_property_name_id && is_sprop) { // S_GDS_PROPERTY translation if (value.is_list () && value.get_list ().size () >= 2) { new_props.insert (value.get_list () [0], value.get_list () [1]); } - } else if (pf->second == m_klayout_context_property_name_id) { - // NOTE: property names ID 0 is reserved for context strings - new_props.insert (property_names_id_type (0), value); + } else if (is_sprop && ! m_read_all_properties) { + + // ignore system properties + } else { + new_props.insert (pf->second, value); + } } @@ -1395,10 +1411,27 @@ OASISReader::replace_forward_references_in_variant (tl::Variant &v) } } +static void +store_properties (db::PropertiesSet &properties, db::property_names_id_type name, const db::OASISReader::property_value_list &value) +{ + if (value.size () == 0) { + properties.insert (name, tl::Variant ()); + } else if (value.size () == 1) { + properties.insert (name, tl::Variant (value [0])); + } else if (value.size () > 1) { + properties.insert (name, tl::Variant (value.begin (), value.end ())); + } +} + void OASISReader::store_last_properties (db::PropertiesSet &properties, bool ignore_special, bool with_context_props) { - if (with_context_props && mm_last_property_name.get () == m_klayout_context_property_name_id) { + const tl::Variant &name = db::property_name (mm_last_property_name.get ()); + if (name.is_id ()) { + + store_properties (properties, mm_last_property_name.get (), mm_last_value_list.get ()); + + } else if (with_context_props && mm_last_property_name.get () == m_klayout_context_property_name_id) { // Context properties are stored with a special property name ID of 0 @@ -1422,12 +1455,10 @@ OASISReader::store_last_properties (db::PropertiesSet &properties, bool ignore_s // This is mode is used for cells and layouts so the standard properties do not appear as user properties. // For shapes we need to keep the special ones since they may be forward-references S_GDS_PROPERTY names. - } else if (mm_last_value_list.get ().size () == 0) { - properties.insert (mm_last_property_name.get (), tl::Variant ()); - } else if (mm_last_value_list.get ().size () == 1) { - properties.insert (mm_last_property_name.get (), tl::Variant (mm_last_value_list.get () [0])); - } else if (mm_last_value_list.get ().size () > 1) { - properties.insert (mm_last_property_name.get (), tl::Variant (mm_last_value_list.get ().begin (), mm_last_value_list.get ().end ())); + } else { + + store_properties (properties, mm_last_property_name.get (), mm_last_value_list.get ()); + } } @@ -1510,7 +1541,7 @@ OASISReader::read_properties () std::map ::const_iterator cid = m_propnames.find (id); if (cid == m_propnames.end ()) { - mm_last_property_name = db::property_names_id (tl::Variant (id, true /*dummy for id type*/)); + mm_last_property_name = db::property_names_id (tl::Variant ((id << 1) + uint64_t (is_sprop ? 1 : 0), true /*dummy for id type*/)); m_propname_forward_references.insert (std::make_pair (id, db::property_names_id_type (0))); } else { mm_last_property_name = db::property_names_id (tl::Variant (cid->second)); From 3af55686635fb395e6a191caba9f75b8ee18ddc0 Mon Sep 17 00:00:00 2001 From: Matthias Koefferlein Date: Tue, 24 Feb 2026 21:00:21 +0100 Subject: [PATCH 016/212] [consider merging] Bugfix: Python did not support downcasting of PolygonWithProperties to Polygon on Shapes#polygon for example --- src/pya/pya/pyaCallables.cc | 7 ++++--- testdata/python/dbShapesTest.py | 20 ++++++++++++++++++++ 2 files changed, 24 insertions(+), 3 deletions(-) diff --git a/src/pya/pya/pyaCallables.cc b/src/pya/pya/pyaCallables.cc index cf5bc0eab..6cf02316b 100644 --- a/src/pya/pya/pyaCallables.cc +++ b/src/pya/pya/pyaCallables.cc @@ -1214,8 +1214,9 @@ property_setter_impl (int mid, PyObject *self, PyObject *value) // check arguments (count and type) bool is_valid = (*m)->compatible_with_num_args (1); - bool loose = (pass != 0); // loose in the second pass - if (is_valid && ! test_arg (*(*m)->begin_arguments (), value, loose, loose)) { + bool loose = (pass > 0); // loose in the second and third pass + bool object_substitution = (pass > 1); // object substitution in the third pass + if (is_valid && ! test_arg (*(*m)->begin_arguments (), value, loose, object_substitution)) { is_valid = false; } @@ -1228,7 +1229,7 @@ property_setter_impl (int mid, PyObject *self, PyObject *value) ++pass; - } while (! meth && pass < 2); + } while (! meth && pass < 3); } diff --git a/testdata/python/dbShapesTest.py b/testdata/python/dbShapesTest.py index 584a37b5b..2be2b5c49 100644 --- a/testdata/python/dbShapesTest.py +++ b/testdata/python/dbShapesTest.py @@ -61,6 +61,26 @@ class DBShapesTest(unittest.TestCase): shapes = top.shapes(l1) self.assertEqual(sys.getrefcount(shapes), 2) + # Tests the ability to take PolygonWithProperties instead of base class + # for setter + def test_3(self): + + shapes = pya.Shapes() + shapes.insert(pya.Polygon(pya.Box(0, 0, 100, 200))) + self.assertEqual(";".join([ str(s) for s in shapes.each() ]), "polygon (0,0;0,200;100,200;100,0)") + + pwp = pya.PolygonWithProperties(pya.Polygon(pya.Box(0, 0, 110, 210))) + s0 = [ s for s in shapes.each() ][0] + s0.polygon = pwp + self.assertEqual(";".join([ str(s) for s in shapes.each() ]), "polygon (0,0;0,210;110,210;110,0)") + + # with object substitution + s0.polygon = ( pya.Box(0, 0, 120, 220) ) + self.assertEqual(";".join([ str(s) for s in shapes.each() ]), "polygon (0,0;0,220;120,220;120,0)") + + # with object substitution by constructor inference + s0.polygon = pya.Box(0, 0, 130, 230) + self.assertEqual(";".join([ str(s) for s in shapes.each() ]), "polygon (0,0;0,230;130,230;130,0)") # run unit tests if __name__ == '__main__': From b657cd9b57fcc62df24d34e59cd5606deeeeaa29 Mon Sep 17 00:00:00 2001 From: Matthias Koefferlein Date: Tue, 24 Feb 2026 21:44:33 +0100 Subject: [PATCH 017/212] Bugfix: double clicking an edge in partial mode opened the properties dialog, not setting a point --- src/edt/edt/edtPartialService.cc | 1 + src/laybasic/laybasic/layMove.cc | 9 ++++++--- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/src/edt/edt/edtPartialService.cc b/src/edt/edt/edtPartialService.cc index ccb9abdbc..917122572 100644 --- a/src/edt/edt/edtPartialService.cc +++ b/src/edt/edt/edtPartialService.cc @@ -1770,6 +1770,7 @@ PartialService::edit_cancel () ui ()->ungrab_mouse (this); + clear_mouse_cursors (); close_editor_hooks (false); selection_to_view (); diff --git a/src/laybasic/laybasic/layMove.cc b/src/laybasic/laybasic/layMove.cc index 742af551a..a93639741 100644 --- a/src/laybasic/laybasic/layMove.cc +++ b/src/laybasic/laybasic/layMove.cc @@ -269,9 +269,12 @@ MoveService::mouse_double_click_event (const db::DPoint &p, unsigned int buttons handle_click (p, buttons, false, 0); } - lay::SelectionService *selector = mp_view->selection_service (); - if (selector) { - return selector->mouse_double_click_event (p, buttons, prio); + if (is_active ()) { + // in move mode, a double click opens the properties dialog + lay::SelectionService *selector = mp_view->selection_service (); + if (selector) { + return selector->mouse_double_click_event (p, buttons, prio); + } } } From 125f3b459fa86d41590d450d9515fc378d8f139d Mon Sep 17 00:00:00 2001 From: Matthias Koefferlein Date: Tue, 24 Feb 2026 22:10:05 +0100 Subject: [PATCH 018/212] Added a marker attribute to turn off label frames: Marker#text_frame_enabled. Set it to false to disable the frame --- src/laybasic/laybasic/gsiDeclLayMarker.cc | 13 +++++++++++++ src/laybasic/laybasic/layMarker.cc | 19 ++++++++++++++----- src/laybasic/laybasic/layMarker.h | 17 +++++++++++++++++ testdata/ruby/layMarkers.rb | 4 ++++ 4 files changed, 48 insertions(+), 5 deletions(-) diff --git a/src/laybasic/laybasic/gsiDeclLayMarker.cc b/src/laybasic/laybasic/gsiDeclLayMarker.cc index c7c59bb29..f75bda6c1 100644 --- a/src/laybasic/laybasic/gsiDeclLayMarker.cc +++ b/src/laybasic/laybasic/gsiDeclLayMarker.cc @@ -197,6 +197,19 @@ Class decl_Marker ("lay", "Marker", "@brief Gets the halo flag\n" "See \\halo= for a description of the halo flag." ) + + gsi::method ("text_frame_enabled=", (void (lay::ManagedDMarker::*) (bool)) &lay::ManagedDMarker::set_text_frame_enabled, gsi::arg ("enabled"), + "@brief Enables or disables the label frame\n" + "With the value set to true (the default), texts (labels) are drawn with a frame indicating the label dimension.\n" + "To turn off that frame, set this attribute to false.\n" + "\n" + "This attribute has been introduced in version 0.30.7." + ) + + gsi::method ("text_frame_enabled", (bool (lay::ManagedDMarker::*) () const) &lay::ManagedDMarker::is_text_frame_enabled, + "@brief Gets a value indicating whether label frames are enabled\n" + "See \\text_frame_enabled= for a description of this attribute." + "\n" + "This attribute has been introduced in version 0.30.7." + ) + gsi::method ("dither_pattern=", (void (lay::ManagedDMarker::*) (int)) &lay::ManagedDMarker::set_dither_pattern, gsi::arg ("index"), "@brief Sets the stipple pattern index\n" "A value of -1 or less than zero indicates that the marker is not filled. Otherwise, the " diff --git a/src/laybasic/laybasic/layMarker.cc b/src/laybasic/laybasic/layMarker.cc index 4855ac37f..f30d1387f 100644 --- a/src/laybasic/laybasic/layMarker.cc +++ b/src/laybasic/laybasic/layMarker.cc @@ -188,7 +188,7 @@ void render_cell_inst (const db::Layout &layout, const db::CellInstArray &inst, MarkerBase::MarkerBase (lay::LayoutViewBase *view) : lay::ViewObject (view ? view->canvas () : 0), - m_line_width (-1), m_vertex_size (-1), m_halo (-1), m_text_enabled (true), m_vertex_shape (lay::ViewOp::Rect), m_line_style (-1), m_dither_pattern (-1), m_frame_pattern (0), mp_view (view) + m_line_width (-1), m_vertex_size (-1), m_halo (-1), m_text_enabled (true), m_text_frame_enabled (true), m_vertex_shape (lay::ViewOp::Rect), m_line_style (-1), m_dither_pattern (-1), m_frame_pattern (0), mp_view (view) { // .. nothing yet .. } @@ -266,6 +266,15 @@ MarkerBase::set_text_enabled (bool en) } } +void +MarkerBase::set_text_frame_enabled (bool en) +{ + if (m_text_frame_enabled != en) { + m_text_frame_enabled = en; + redraw (); + } +} + void MarkerBase::set_frame_pattern (int frame_pattern) { @@ -638,7 +647,7 @@ ShapeMarker::render (const Viewport &vp, ViewObjectCanvas &canvas) if (trans_vector ()) { for (std::vector::const_iterator tr = trans_vector ()->begin (); tr != trans_vector ()->end (); ++tr) { db::CplxTrans t = vp.trans () * *tr * trans (); - if (m_shape.is_text () && text) { + if (m_shape.is_text () && text && is_text_frame_enabled ()) { // draw a frame around the text lay::TextInfo ti (view ()); db::DCplxTrans vp_trans = vp.trans () * *tr; @@ -654,7 +663,7 @@ ShapeMarker::render (const Viewport &vp, ViewObjectCanvas &canvas) } } else { db::CplxTrans t = vp.trans () * trans (); - if (m_shape.is_text () && text) { + if (m_shape.is_text () && text && is_text_frame_enabled ()) { // draw a frame around the text lay::TextInfo ti (view ()); db::Text t; @@ -1118,7 +1127,7 @@ Marker::draw (lay::Renderer &r, const db::CplxTrans &t, lay::CanvasPlane *fill, // TODO: in order to draw the box we'd need a separation of dbu-to-micron and micron-to-pixel transformations ... r.draw (*m_object.text, t, fill, contour, vertex, text); } else if (m_type == DText) { - if (view () && text) { + if (view () && text && is_text_frame_enabled ()) { // draw a frame around the text lay::TextInfo ti (view ()); db::DCplxTrans dt (t); @@ -1323,7 +1332,7 @@ DMarker::render (const Viewport &vp, ViewObjectCanvas &canvas) } else if (m_type == Path) { r.draw (*m_object.path, t, fill, contour, vertex, text); } else if (m_type == Text) { - if (view () && text) { + if (view () && text && is_text_frame_enabled ()) { // draw a frame around the text lay::TextInfo ti (view ()); db::DBox box = ti.bbox (*m_object.text, t).enlarged (text_box_enlargement (t)); diff --git a/src/laybasic/laybasic/layMarker.h b/src/laybasic/laybasic/layMarker.h index 925599dc8..0738e2ffa 100644 --- a/src/laybasic/laybasic/layMarker.h +++ b/src/laybasic/laybasic/layMarker.h @@ -232,6 +232,22 @@ public: */ void set_text_enabled (bool en); + /** + * @brief Gets a value indicating whether text frame drawing is enabled + * + * If this value is true (the default), labels are drawn with a frame indicating the text box. + * Set this value to value to disable the text box. + */ + bool is_text_frame_enabled () const + { + return m_text_frame_enabled; + } + + /** + * @brief Sets a value indicating whether text drawing is enabled + */ + void set_text_frame_enabled (bool en); + /** * @brief Gets the bounding box */ @@ -255,6 +271,7 @@ private: tl::Color m_frame_color; int m_line_width, m_vertex_size, m_halo; bool m_text_enabled; + bool m_text_frame_enabled; lay::ViewOp::Shape m_vertex_shape; int m_line_style, m_dither_pattern, m_frame_pattern; lay::LayoutViewBase *mp_view; diff --git a/testdata/ruby/layMarkers.rb b/testdata/ruby/layMarkers.rb index e261c4aa6..3fe496d22 100644 --- a/testdata/ruby/layMarkers.rb +++ b/testdata/ruby/layMarkers.rb @@ -72,6 +72,10 @@ class LAYMarkers_TestClass < TestBase m.dither_pattern = 15 assert_equal(m.dither_pattern, 15) + assert_equal(m.text_frame_enabled, true) + m.text_frame_enabled = false + assert_equal(m.text_frame_enabled, false) + # Keep the marker alive after GC.start: # $marker = m From 25a6db267c90d7a69c7585c5aafafc03f139bf5e Mon Sep 17 00:00:00 2001 From: Matthias Koefferlein Date: Sat, 28 Feb 2026 09:39:12 +0100 Subject: [PATCH 019/212] Implemented backup files for the configuration file Currently, up to 10 backups are kept. "klayoutrc.1" is the most recent backup, "klayoutrc." the second most recent etc. --- src/lay/lay/gsiDeclLayApplication.cc | 7 ++++++- src/lay/lay/gsiDeclLayMainWindow.cc | 6 +++--- src/lay/lay/layApplication.cc | 8 +++++--- src/lay/lay/layApplication.h | 5 ++++- src/laybasic/laybasic/gsiDeclLayDispatcher.cc | 7 ++++++- src/laybasic/laybasic/layDispatcher.cc | 4 ++-- src/laybasic/laybasic/layDispatcher.h | 5 ++++- 7 files changed, 30 insertions(+), 12 deletions(-) diff --git a/src/lay/lay/gsiDeclLayApplication.cc b/src/lay/lay/gsiDeclLayApplication.cc index dde5d8aac..5e2b6d410 100644 --- a/src/lay/lay/gsiDeclLayApplication.cc +++ b/src/lay/lay/gsiDeclLayApplication.cc @@ -164,12 +164,17 @@ static gsi::Methods application_methods () // TODO: basically this method belongs to Dispatcher (aka MainWindow). // There is separate declaration for Dispatcher which we have to synchronize // with this method. - method ("write_config", &C::write_config, gsi::arg ("file_name"), + method ("write_config", &C::write_config, gsi::arg ("file_name"), gsi::arg ("keep_backups", 0), "@brief Writes configuration to a file\n" "@return A value indicating whether the operation was successful\n" "\n" "If the configuration file cannot be written, \n" "is returned but no exception is thrown.\n" + "\n" + "@param file_name The path to write the config file to.\n" + "@param keep_backups The number of backups to keep (0 for 'no backups').\n" + "\n" + "The 'keep_backups' option was introduced in version 0.30.7.\n" ) + // TODO: basically this method belongs to Dispatcher (aka MainWindow). // There is separate declaration for Dispatcher which we have to synchronize diff --git a/src/lay/lay/gsiDeclLayMainWindow.cc b/src/lay/lay/gsiDeclLayMainWindow.cc index 777dbac65..4b9b7e75a 100644 --- a/src/lay/lay/gsiDeclLayMainWindow.cc +++ b/src/lay/lay/gsiDeclLayMainWindow.cc @@ -202,9 +202,9 @@ static void clear_config (lay::MainWindow *mw) mw->dispatcher ()->clear_config (); } -static bool write_config (lay::MainWindow *mw, const std::string &config_file) +static bool write_config (lay::MainWindow *mw, const std::string &config_file, int keep_backups) { - return mw->dispatcher ()->write_config (config_file); + return mw->dispatcher ()->write_config (config_file, keep_backups); } static bool read_config (lay::MainWindow *mw, const std::string &config_file) @@ -348,7 +348,7 @@ Class decl_MainWindow (QT_EXTERNAL_BASE (QMainWindow) "lay", "M "\n" "This method has been introduced in version 0.27.\n" ) + - method_ext ("write_config", &write_config, gsi::arg ("file_name"), + method_ext ("write_config", &write_config, gsi::arg ("file_name"), gsi::arg ("keep_backups", 0), "@brief Writes configuration to a file\n" "This method is provided for using MainWindow without an Application object. " "It's a convience method which is equivalent to 'dispatcher().write_config(...)'. See \\Dispatcher#write_config for details.\n" diff --git a/src/lay/lay/layApplication.cc b/src/lay/lay/layApplication.cc index 139740bb0..75b8c3bc1 100644 --- a/src/lay/lay/layApplication.cc +++ b/src/lay/lay/layApplication.cc @@ -992,6 +992,8 @@ ApplicationBase::exit (int result) ::exit (result); } +const int number_of_config_file_backups = 10; + void ApplicationBase::finish () { @@ -1001,7 +1003,7 @@ ApplicationBase::finish () if (tl::verbosity () >= 20) { tl::info << tl::to_string (QObject::tr ("Updating configuration file ")) << m_config_file_to_write; } - dispatcher ()->write_config (m_config_file_to_write); + dispatcher ()->write_config (m_config_file_to_write, number_of_config_file_backups); } if (! m_config_file_to_delete.empty () && m_config_file_to_delete != m_config_file_to_write) { if (tl::verbosity () >= 20) { @@ -1419,9 +1421,9 @@ ApplicationBase::process_events_impl (QEventLoop::ProcessEventsFlags /*flags*/, } bool -ApplicationBase::write_config (const std::string &config_file) +ApplicationBase::write_config (const std::string &config_file, int keep_backups) { - return dispatcher () ? dispatcher ()->write_config (config_file) : 0; + return dispatcher () ? dispatcher ()->write_config (config_file, keep_backups) : 0; } void diff --git a/src/lay/lay/layApplication.h b/src/lay/lay/layApplication.h index 2a89b61a1..e268df204 100644 --- a/src/lay/lay/layApplication.h +++ b/src/lay/lay/layApplication.h @@ -183,8 +183,11 @@ public: * * If the configuration file cannot be written, false * is returned but no exception is thrown. + * + * "keep_backups" controls how many backups are kept for + * the configuration file. */ - bool write_config (const std::string &config_file); + bool write_config (const std::string &config_file, int keep_backups = 0); /** * @brief Read the configuration from a file diff --git a/src/laybasic/laybasic/gsiDeclLayDispatcher.cc b/src/laybasic/laybasic/gsiDeclLayDispatcher.cc index e5ae50228..9c5b691dc 100644 --- a/src/laybasic/laybasic/gsiDeclLayDispatcher.cc +++ b/src/laybasic/laybasic/gsiDeclLayDispatcher.cc @@ -71,12 +71,17 @@ Class decl_Dispatcher ("lay", "Dispatcher", "\n" "@return The instance\n" ) + - method ("write_config", &lay::Dispatcher::write_config, gsi::arg ("file_name"), + method ("write_config", &lay::Dispatcher::write_config, gsi::arg ("file_name"), gsi::arg ("keep_backups", 0), "@brief Writes configuration to a file\n" "@return A value indicating whether the operation was successful\n" "\n" "If the configuration file cannot be written, false \n" "is returned but no exception is thrown.\n" + "\n" + "@param file_name The path to write the config file to.\n" + "@param keep_backups The number of backups to keep (0 for 'no backups').\n" + "\n" + "The 'keep_backups' option was introduced in version 0.30.7.\n" ) + method ("read_config", &lay::Dispatcher::read_config, gsi::arg ("file_name"), "@brief Reads the configuration from a file\n" diff --git a/src/laybasic/laybasic/layDispatcher.cc b/src/laybasic/laybasic/layDispatcher.cc index 0cd20571e..499336b29 100644 --- a/src/laybasic/laybasic/layDispatcher.cc +++ b/src/laybasic/laybasic/layDispatcher.cc @@ -238,10 +238,10 @@ config_structure (const lay::Dispatcher *plugin) bool -Dispatcher::write_config (const std::string &config_file) +Dispatcher::write_config (const std::string &config_file, int keep_backups) { try { - tl::OutputStream os (config_file, tl::OutputStream::OM_Plain); + tl::OutputStream os (config_file, tl::OutputStream::OM_Plain, true, keep_backups); config_structure (this).write (os, *this); return true; } catch (...) { diff --git a/src/laybasic/laybasic/layDispatcher.h b/src/laybasic/laybasic/layDispatcher.h index 67046250c..f42b60585 100644 --- a/src/laybasic/laybasic/layDispatcher.h +++ b/src/laybasic/laybasic/layDispatcher.h @@ -147,9 +147,12 @@ public: * If the configuration file cannot be written, false * is returned but no exception is thrown. * + * "keep_backups" is the number of backup files kept. + * By default, no backups are kept. + * * @return false, if an error occurred. */ - bool write_config (const std::string &config_file); + bool write_config (const std::string &config_file, int keep_backups = 0); /** * @brief Read the configuration from a file From f3b71460341eb6e7c266bf193599e0c0e77f292f Mon Sep 17 00:00:00 2001 From: Matthias Koefferlein Date: Sat, 28 Feb 2026 09:48:54 +0100 Subject: [PATCH 020/212] Added documentation to clarify constraints on the documentation parameter name --- src/lay/lay/gsiDeclLayApplication.cc | 5 ++++- src/laybasic/laybasic/gsiDeclLayDispatcher.cc | 3 +++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/src/lay/lay/gsiDeclLayApplication.cc b/src/lay/lay/gsiDeclLayApplication.cc index dde5d8aac..f5ca372d3 100644 --- a/src/lay/lay/gsiDeclLayApplication.cc +++ b/src/lay/lay/gsiDeclLayApplication.cc @@ -141,13 +141,16 @@ static gsi::Methods application_methods () "@param name The name of the configuration parameter to set\n" "@param value The value to which to set the configuration parameter\n" "\n" + "The configuration parameter name needs to be a valid XML element name. Otherwise, a corrupt " + "configuration file will be produced.\n" + "\n" "This method sets the configuration parameter with the given name to the given value. " "Values can only be strings. Numerical values have to be converted into strings first. " "The actual format of the value depends on the configuration parameter. The name must " "be one of the names returned by \\get_config_names." "\n" "It is possible to write an arbitrary name/value pair into the configuration database which then is " - "written to the configuration file." + "written to the configuration file.\n" ) + // TODO: basically this method belongs to Dispatcher (aka MainWindow). // There is separate declaration for Dispatcher which we have to synchronize diff --git a/src/laybasic/laybasic/gsiDeclLayDispatcher.cc b/src/laybasic/laybasic/gsiDeclLayDispatcher.cc index e5ae50228..b005437a3 100644 --- a/src/laybasic/laybasic/gsiDeclLayDispatcher.cc +++ b/src/laybasic/laybasic/gsiDeclLayDispatcher.cc @@ -101,6 +101,9 @@ Class decl_Dispatcher ("lay", "Dispatcher", "@param name The name of the configuration parameter to set\n" "@param value The value to which to set the configuration parameter\n" "\n" + "The configuration parameter name needs to be a valid XML element name. Otherwise, a corrupt " + "configuration file will be produced.\n" + "\n" "This method sets a configuration parameter with the given name to the given value. " "Values can only be strings. Numerical values have to be converted into strings first. " "Local configuration parameters override global configurations for this specific view. " From ca1d648917f5b9623f919062ff4d632bc03f35b4 Mon Sep 17 00:00:00 2001 From: Matthias Koefferlein Date: Sat, 28 Feb 2026 09:54:41 +0100 Subject: [PATCH 021/212] Implementing --help as alias for -h and --version as alias for -v --- src/klayout_main/klayout_main/klayout.cc | 4 ++-- src/lay/lay/layApplication.cc | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/klayout_main/klayout_main/klayout.cc b/src/klayout_main/klayout_main/klayout.cc index 11d4aea39..4e04a5e10 100644 --- a/src/klayout_main/klayout_main/klayout.cc +++ b/src/klayout_main/klayout_main/klayout.cc @@ -305,12 +305,12 @@ klayout_main (int &argc, char **argv) for (int i = 1; i < argc; ++i) { - if (argv [i] == std::string ("-v")) { + if (argv [i] == std::string ("-v") || argv [i] == std::string ("--version")) { tl::info << lay::ApplicationBase::version (); return 0; - } else if (argv [i] == std::string ("-h")) { + } else if (argv [i] == std::string ("-h") || argv [i] == std::string ("--help")) { tl::info << lay::ApplicationBase::usage () << tl::noendl; return 0; diff --git a/src/lay/lay/layApplication.cc b/src/lay/lay/layApplication.cc index 139740bb0..5fb4ba47d 100644 --- a/src/lay/lay/layApplication.cc +++ b/src/lay/lay/layApplication.cc @@ -1091,7 +1091,7 @@ ApplicationBase::usage () r += tl::to_string (QObject::tr (" -t Don't update the configuration file on exit")) + "\n"; r += tl::to_string (QObject::tr (" -nt Update the configuration file on exit (default, overrides previous -t option)")) + "\n"; r += tl::to_string (QObject::tr (" -u Restore session from given file")) + "\n"; - r += tl::to_string (QObject::tr (" -v Print program version and exit")) + "\n"; + r += tl::to_string (QObject::tr (" -v Print program version and exit (also available as --version)")) + "\n"; r += tl::to_string (QObject::tr (" -wd = Define a variable within expressions")) + "\n"; r += tl::to_string (QObject::tr (" -x Synchronous drawing mode")) + "\n"; r += tl::to_string (QObject::tr (" -y Package installation: install package(s) and exit - can be used more than once")) + "\n"; From 8a594c1626a5e7af2ee9bc21c517975ad4d01ca5 Mon Sep 17 00:00:00 2001 From: Matthias Koefferlein Date: Sun, 1 Mar 2026 15:32:21 +0100 Subject: [PATCH 022/212] Doc update --- src/layview/layview/gsiDeclLayLayoutView_qt.cc | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/layview/layview/gsiDeclLayLayoutView_qt.cc b/src/layview/layview/gsiDeclLayLayoutView_qt.cc index aa8d4a47d..c39b2fc50 100644 --- a/src/layview/layview/gsiDeclLayLayoutView_qt.cc +++ b/src/layview/layview/gsiDeclLayLayoutView_qt.cc @@ -156,9 +156,13 @@ Class decl_LayoutView (decl_LayoutViewBase, "lay", "LayoutView" gsi::constructor ("new", &new_view, gsi::arg ("editable", false), gsi::arg ("manager", (db::Manager *) 0, "nil"), gsi::arg ("options", (unsigned int) 0), "@brief Creates a standalone view\n" "\n" - "This constructor is for special purposes only. To create a view in the context of a main window, " + "This constructor creates a non-GUI, standalone layout view. It is not attached to a Qt object and can be used for generating " + "images through the screenshot method for example. To create a view in the context of a main window, " "use \\MainWindow#create_view and related methods.\n" "\n" + "A standalone layout view has a default configuration that is different from a standard view - for example the " + "color scheme is not initialized according to screen settings.\n" + "\n" "@param editable True to make the view editable\n" "@param manager The \\Manager object to enable undo/redo\n" "@param options A combination of the values in the LV_... constants from \\LayoutViewBase\n" From 992947f748ac1acec33303aa0ccc92f3f9915660 Mon Sep 17 00:00:00 2001 From: Matthias Koefferlein Date: Sun, 1 Mar 2026 17:39:29 +0100 Subject: [PATCH 023/212] ReportDatabase#merge - a method to merge two report databases --- src/rdb/rdb/gsiDeclRdb.cc | 9 ++ src/rdb/rdb/rdb.cc | 118 +++++++++++++--- src/rdb/rdb/rdb.h | 21 +++ src/rdb/unit_tests/rdbTests.cc | 247 +++++++++++++++++++++++++++++++++ testdata/ruby/rdbTest.rb | 71 ++++++++++ 5 files changed, 450 insertions(+), 16 deletions(-) diff --git a/src/rdb/rdb/gsiDeclRdb.cc b/src/rdb/rdb/gsiDeclRdb.cc index ccadf6eff..95e370e73 100644 --- a/src/rdb/rdb/gsiDeclRdb.cc +++ b/src/rdb/rdb/gsiDeclRdb.cc @@ -1676,6 +1676,15 @@ Class decl_ReportDatabase ("rdb", "ReportDatabase", "\n" "This method has been added in version 0.29.1." ) + + gsi::method ("merge", &rdb::Database::merge, gsi::arg ("other"), + "@brief Merges the other database with this one\n" + "This method will merge the other database with this one. The other database needs to have the same top cell than\n" + "this database. In the merge step, identical cells and categories will be identified and missing cells or categories\n" + "will be created in this database. After that, all items will be transferred from the other database into this one\n" + "and will be associated with cells and categories from this database.\n" + "\n" + "This method has been added in version 0.30.7." + ) + gsi::method ("is_modified?", &rdb::Database::is_modified, "@brief Returns a value indicating whether the database has been modified\n" ) + diff --git a/src/rdb/rdb/rdb.cc b/src/rdb/rdb/rdb.cc index 4207721df..475f310e4 100644 --- a/src/rdb/rdb/rdb.cc +++ b/src/rdb/rdb/rdb.cc @@ -958,11 +958,18 @@ Tags::tag (id_type id) void Tags::import_tag (const Tag &t) { - Tag &tt = tag (t.name (), t.is_user_tag ()); - tt.set_description (t.description ()); + import_tag_with_ref (t); } -bool +Tag & +Tags::import_tag_with_ref (const Tag &t) +{ + Tag &tt = tag (t.name (), t.is_user_tag ()); + tt.set_description (t.description ()); + return tt; +} + +bool Tags::has_tag (const std::string &name, bool user_tag) const { return m_ids_for_names.find (std::make_pair (name, user_tag)) != m_ids_for_names.end (); @@ -1314,6 +1321,13 @@ Database::import_tags (const Tags &tags) } } +Tag & +Database::import_tag (const Tag &tag) +{ + set_modified (); + return m_tags.import_tag_with_ref (tag); +} + void Database::import_categories (Categories *categories) { @@ -1880,41 +1894,52 @@ namespace }; } -static void map_category (const rdb::Category &cat, const rdb::Database &db, std::map &cat2cat) +static void map_category (const rdb::Category &cat, rdb::Database &db, std::map &cat2cat, std::map &rev_cat2cat, bool create_missing, rdb::Category *parent) { - const rdb::Category *this_cat = db.category_by_name (cat.path ()); + rdb::Category *this_cat = db.category_by_name_non_const (cat.path ()); + if (! this_cat && create_missing) { + this_cat = db.create_category (parent, cat.name ()); + this_cat->set_description (cat.description ()); + } if (this_cat) { cat2cat.insert (std::make_pair (this_cat->id (), cat.id ())); + rev_cat2cat.insert (std::make_pair (cat.id (), this_cat->id ())); } for (auto c = cat.sub_categories ().begin (); c != cat.sub_categories ().end (); ++c) { - map_category (*c, db, cat2cat); + map_category (*c, db, cat2cat, rev_cat2cat, create_missing, this_cat); } } -void -Database::apply (const rdb::Database &other) +static void map_databases (rdb::Database &self, const rdb::Database &other, + std::map &cell2cell, + std::map &rev_cell2cell, + std::map &cat2cat, + std::map &rev_cat2cat, + std::map &tag2tag, + std::map &rev_tag2tag, + bool create_missing) { - std::map cell2cell; - std::map cat2cat; - std::map tag2tag; - std::map rev_tag2tag; - for (auto c = other.cells ().begin (); c != other.cells ().end (); ++c) { // TODO: do we have a consistent scheme of naming variants? What requirements // exist towards detecting variant specific waivers - const rdb::Cell *this_cell = cell_by_qname (c->qname ()); + rdb::Cell *this_cell = self.cell_by_qname_non_const (c->qname ()); + if (! this_cell && create_missing) { + this_cell = self.create_cell (c->name (), c->variant (), c->layout_name ()); + this_cell->import_references (c->references ()); + } if (this_cell) { cell2cell.insert (std::make_pair (this_cell->id (), c->id ())); + rev_cell2cell.insert (std::make_pair (c->id (), this_cell->id ())); } } for (auto c = other.categories ().begin (); c != other.categories ().end (); ++c) { - map_category (*c, *this, cat2cat); + map_category (*c, self, cat2cat, rev_cat2cat, create_missing, 0); } std::map tags_by_name; - for (auto c = tags ().begin_tags (); c != tags ().end_tags (); ++c) { + for (auto c = self.tags ().begin_tags (); c != self.tags ().end_tags (); ++c) { tags_by_name.insert (std::make_pair (c->name (), c->id ())); } @@ -1923,8 +1948,25 @@ Database::apply (const rdb::Database &other) if (t != tags_by_name.end ()) { tag2tag.insert (std::make_pair (t->second, c->id ())); rev_tag2tag.insert (std::make_pair (c->id (), t->second)); + } else if (create_missing) { + auto tt = self.import_tag (*c); + tag2tag.insert (std::make_pair (tt.id (), c->id ())); + rev_tag2tag.insert (std::make_pair (c->id (), tt.id ())); } } +} + +void +Database::apply (const rdb::Database &other) +{ + std::map cell2cell; + std::map rev_cell2cell; + std::map cat2cat; + std::map rev_cat2cat; + std::map tag2tag; + std::map rev_tag2tag; + + map_databases (*this, other, cell2cell, rev_cell2cell, cat2cat, rev_cat2cat, tag2tag, rev_tag2tag, false); std::map, ValueMapEntry> value_map; @@ -1963,6 +2005,50 @@ Database::apply (const rdb::Database &other) } } +void +Database::merge (const Database &other) +{ + if (top_cell_name () != other.top_cell_name ()) { + throw tl::Exception (tl::to_string (tr ("Merging of RDB databases requires identical top cell names"))); + } + + std::map cell2cell; + std::map rev_cell2cell; + std::map cat2cat; + std::map rev_cat2cat; + std::map tag2tag; + std::map rev_tag2tag; + + map_databases (*this, other, cell2cell, rev_cell2cell, cat2cat, rev_cat2cat, tag2tag, rev_tag2tag, true); + + for (Items::const_iterator i = other.items ().begin (); i != other.items ().end (); ++i) { + + auto icell = rev_cell2cell.find (i->cell_id ()); + if (icell == rev_cell2cell.end ()) { + continue; + } + + auto icat = rev_cat2cat.find (i->category_id ()); + if (icat == rev_cat2cat.end ()) { + continue; + } + + rdb::Item *this_item = create_item (icell->second, icat->second); + + this_item->set_values (i->values ()); + this_item->set_multiplicity (i->multiplicity ()); + this_item->set_comment (i->comment ()); + this_item->set_image_str (i->image_str ()); + + for (auto tt = rev_tag2tag.begin (); tt != rev_tag2tag.end (); ++tt) { + if (i->has_tag (tt->first)) { + this_item->add_tag (tt->second); + } + } + + } +} + void Database::scan_layout (const db::Layout &layout, db::cell_index_type cell_index, const std::vector > &layers_and_descriptions, bool flat) { diff --git a/src/rdb/rdb/rdb.h b/src/rdb/rdb/rdb.h index 4286e883a..62b340295 100644 --- a/src/rdb/rdb/rdb.h +++ b/src/rdb/rdb/rdb.h @@ -1987,6 +1987,11 @@ public: */ void import_tag (const Tag &tag); + /** + * @brief Import a tag and returns the reference for the new tag + */ + Tag &import_tag_with_ref (const Tag &tag); + /** * @brief Clear the collection of tags */ @@ -2143,6 +2148,11 @@ public: */ void import_tags (const Tags &tags); + /** + * @brief Import a tag + */ + Tag &import_tag (const Tag &tag); + /** * @brief Get the reference to the categories collection (const version) */ @@ -2478,6 +2488,17 @@ public: */ void apply (const rdb::Database &other); + /** + * @brief Merges another database to this one + * + * Merging requires the other database to have the same top cell. + * Merging involves: + * * categories present in other, but not in *this will be created (based on category name and parent category) + * * cells present in other, but not in *this will be created (based on cell name and variant) + * * items will be transferred from other to *this based on cell and category + */ + void merge (const rdb::Database &other); + /** * @brief Scans a layout into this RDB * diff --git a/src/rdb/unit_tests/rdbTests.cc b/src/rdb/unit_tests/rdbTests.cc index 3fd2d79a1..4ccc25a08 100644 --- a/src/rdb/unit_tests/rdbTests.cc +++ b/src/rdb/unit_tests/rdbTests.cc @@ -822,3 +822,250 @@ TEST(13_ApplyIgnoreUnknownTag) EXPECT_EQ (i1->tag_str (), "tag2"); } +TEST(20_MergeBasic) +{ + rdb::Database db1; + db1.set_top_cell_name ("A"); + + rdb::Database db2; + db1.set_top_cell_name ("B"); + + try { + // can't merge DB's with different top cell names + db1.merge (db2); + EXPECT_EQ (0, 1); + } catch (...) { } + + db1.set_top_cell_name ("TOP"); + db2.set_top_cell_name ("TOP"); + db1.merge (db2); + + { + rdb::Cell *cell = db2.create_cell ("A", "VAR", "ALAY"); + + rdb::Category *pcat = db2.create_category ("PCAT"); + rdb::Category *cat = db2.create_category (pcat, "CAT"); + cat->set_description ("A child category"); + + // create two tags + /*auto t1_id =*/ db2.tags ().tag ("T1").id (); + auto t2_id = db2.tags ().tag ("T2", true).id (); + + rdb::Item *item = db2.create_item (cell->id (), cat->id ()); + item->set_comment ("Comment"); + item->add_tag (t2_id); + item->set_image_str ("%nonsense%"); + item->set_multiplicity (42); + item->add_value (db::DBox (0, 0, 1.0, 1.5)); + item->add_value (42.0); + } + + db1.merge (db2); + + auto c = db1.cells ().begin (); + tl_assert (c != db1.cells ().end ()); + const rdb::Cell *cell = c.operator-> (); + ++c; + EXPECT_EQ (c == db1.cells ().end (), true); + EXPECT_EQ (cell->name (), "A"); + EXPECT_EQ (cell->variant (), "VAR"); + EXPECT_EQ (cell->layout_name (), "ALAY"); + + const rdb::Category *cat = db1.category_by_name ("PCAT.CAT"); + tl_assert (cat != 0); + EXPECT_EQ (cat->name (), "CAT"); + EXPECT_EQ (cat->path (), "PCAT.CAT"); + EXPECT_EQ (cat->description (), "A child category"); + EXPECT_EQ (cat->num_items (), size_t (1)); + + auto i = db1.items ().begin (); + tl_assert (i != db1.items ().end ()); + const rdb::Item *item = i.operator-> (); + ++i; + EXPECT_EQ (i == db1.items ().end (), true); + EXPECT_EQ (item->category_id (), cat->id ()); + EXPECT_EQ (item->cell_id (), cell->id ()); + EXPECT_EQ (item->comment (), "Comment"); + EXPECT_EQ (item->multiplicity (), size_t (42)); + EXPECT_EQ (item->has_image (), true); + EXPECT_EQ (item->image_str (), "%nonsense%") + EXPECT_EQ (item->values ().to_string (&db1), "box: (0,0;1,1.5);float: 42"); + EXPECT_EQ (item->tag_str (), "#T2"); +} + +TEST(21_MergeCategories) +{ + rdb::Database db1; + db1.set_top_cell_name ("TOP"); + + rdb::Database db2; + db2.set_top_cell_name ("TOP"); + + { + rdb::Category *pcat = db1.create_category ("PCAT"); + pcat->set_description ("db1"); + rdb::Category *cat = db1.create_category (pcat, "CAT"); + cat->set_description ("db1"); + } + + { + rdb::Category *pcat = db2.create_category ("PCAT"); + pcat->set_description ("db2a"); + rdb::Category *cat2 = db2.create_category (pcat, "CAT2"); + cat2->set_description ("db2a"); + + rdb::Category *pcat2 = db2.create_category ("PCAT2"); + pcat2->set_description ("db2b"); + rdb::Category *cat3 = db2.create_category (pcat2, "CAT3"); + cat3->set_description ("db2b"); + } + + db1.merge (db2); + + const rdb::Category *cat; + + cat = db1.category_by_name ("PCAT"); + tl_assert (cat != 0); + EXPECT_EQ (cat->name (), "PCAT"); + EXPECT_EQ (cat->description (), "db1"); + + cat = db1.category_by_name ("PCAT2"); + tl_assert (cat != 0); + EXPECT_EQ (cat->name (), "PCAT2"); + EXPECT_EQ (cat->description (), "db2b"); + + cat = db1.category_by_name ("PCAT.CAT"); + tl_assert (cat != 0); + EXPECT_EQ (cat->name (), "CAT"); + EXPECT_EQ (cat->description (), "db1"); + + cat = db1.category_by_name ("PCAT.CAT2"); + tl_assert (cat != 0); + EXPECT_EQ (cat->name (), "CAT2"); + EXPECT_EQ (cat->description (), "db2a"); + + cat = db1.category_by_name ("PCAT2.CAT3"); + tl_assert (cat != 0); + EXPECT_EQ (cat->name (), "CAT3"); + EXPECT_EQ (cat->description (), "db2b"); + + int ncat = 0; + for (auto c = db1.categories ().begin (); c != db1.categories ().end (); ++c) { + ++ncat; + for (auto s = c->sub_categories ().begin (); s != c->sub_categories ().end (); ++s) { + ++ncat; + } + } + EXPECT_EQ (ncat, 5); +} + +TEST(22_MergeCells) +{ + rdb::Database db1; + db1.set_top_cell_name ("TOP"); + + rdb::Database db2; + db2.set_top_cell_name ("TOP"); + + { + rdb::Cell *parent; + parent = db1.create_cell ("TOP"); + + rdb::Cell *cell; + cell = db1.create_cell ("A"); + cell->references ().insert (rdb::Reference (db::DCplxTrans (db::DVector (1.0, 2.0)), parent->id ())); + cell = db1.create_cell ("A", "VAR1", "ALAY"); + cell->references ().insert (rdb::Reference (db::DCplxTrans (db::DVector (1.0, -2.0)), parent->id ())); + } + + { + rdb::Cell *parent; + parent = db2.create_cell ("TOP"); + + rdb::Cell *cell; + cell = db2.create_cell ("B"); + cell->references ().insert (rdb::Reference (db::DCplxTrans (db::DVector (1.0, 0.0)), parent->id ())); + cell = db2.create_cell ("A"); + cell->references ().insert (rdb::Reference (db::DCplxTrans (db::DVector (1.0, 2.5)), parent->id ())); // reference not taken! + cell = db2.create_cell ("A", "VAR2", "ALAY"); + cell->references ().insert (rdb::Reference (db::DCplxTrans (db::DVector (1.0, -1.0)), parent->id ())); + } + + db1.merge (db2); + + std::set cells; + for (auto c = db1.cells ().begin (); c != db1.cells ().end (); ++c) { + if (c->references ().begin () != c->references ().end ()) { + cells.insert (c->qname () + "[" + c->references ().begin ()->trans_str () + "]"); + } else { + cells.insert (c->qname ()); + } + } + + EXPECT_EQ (tl::join (cells.begin (), cells.end (), ";"), "A:1[r0 *1 1,2];A:VAR1[r0 *1 1,-2];A:VAR2[r0 *1 1,-1];B[r0 *1 1,0];TOP"); +} + +TEST(23_MergeTags) +{ + rdb::Database db1; + db1.set_top_cell_name ("TOP"); + + rdb::Database db2; + db2.set_top_cell_name ("TOP"); + + db1.tags ().tag ("T1"); + db1.tags ().tag ("T2"); + + db2.tags ().tag ("T1"); + db2.tags ().tag ("T3", true); + + db1.merge (db2); + + std::set tags; + for (auto t = db1.tags ().begin_tags (); t != db1.tags ().end_tags (); ++t) { + tags.insert (t->is_user_tag () ? "#" + t->name () : t->name ()); + } + EXPECT_EQ (tl::join (tags.begin (), tags.end (), ";"), "#T3;T1;T2"); +} + +TEST(24_MergeItems) +{ + rdb::Database db1; + db1.set_top_cell_name ("TOP"); + + rdb::Database db2; + db2.set_top_cell_name ("TOP"); + + { + rdb::Cell *cell = db1.create_cell ("TOP"); + rdb::Category *cat1 = db1.create_category ("CAT1"); + rdb::Category *cat2 = db1.create_category ("CAT2"); + + rdb::Item *item; + item = db1.create_item (cell->id (), cat1->id ()); + item->set_comment ("db1a"); + item = db1.create_item (cell->id (), cat2->id ()); + item->set_comment ("db1b"); + } + + { + rdb::Cell *cell = db2.create_cell ("TOP"); + rdb::Category *cat1 = db2.create_category ("CAT1"); + rdb::Category *cat3 = db2.create_category ("CAT3"); + + rdb::Item *item; + item = db2.create_item (cell->id (), cat1->id ()); + item->set_comment ("db2a"); + item = db2.create_item (cell->id (), cat3->id ()); + item->set_comment ("db2b"); + } + + db1.merge (db2); + + std::set items; + for (auto i = db1.items ().begin (); i != db1.items ().end (); ++i) { + const rdb::Item *item = i.operator-> (); + items.insert (item->cell_qname () + ":" + item->category_name () + "=" + item->comment ()); + } + EXPECT_EQ (tl::join (items.begin (), items.end (), ";"), "TOP:CAT1=db1a;TOP:CAT1=db2a;TOP:CAT2=db1b;TOP:CAT3=db2b"); +} diff --git a/testdata/ruby/rdbTest.rb b/testdata/ruby/rdbTest.rb index 6d6f7e2b6..056a2c9f7 100644 --- a/testdata/ruby/rdbTest.rb +++ b/testdata/ruby/rdbTest.rb @@ -1205,6 +1205,77 @@ class RDB_TestClass < TestBase end + # apply + def test_16 + + rdb1 = RBA::ReportDatabase::new + cat = rdb1.create_category("CAT") + cell = rdb1.create_cell("TOP") + item = rdb1.create_item(cell, cat) + item.add_value("item1") + item.add_tag(rdb1.tag_id("t1")) + + assert_equal(item.tags_str, "t1") + + rdb2 = RBA::ReportDatabase::new + cat = rdb2.create_category("CAT") + cell = rdb2.create_cell("TOP") + item = rdb2.create_item(cell, cat) + item.add_value("item1") + item.add_tag(rdb2.tag_id("t2")) + + assert_equal(item.tags_str, "t2") + + items = rdb1.each_item.to_a + assert_equal(items.size, 1) + + assert_equal(items[0].tags_str, "t1") + + rdb1.apply(rdb2) + + items = rdb1.each_item.to_a + assert_equal(items.size, 1) + + assert_equal(items[0].tags_str, "t2") + + end + + # merge + def test_17 + + rdb1 = RBA::ReportDatabase::new + cat = rdb1.create_category("CAT") + cell = rdb1.create_cell("TOP") + item = rdb1.create_item(cell, cat) + item.add_value("item1") + item.add_tag(rdb1.tag_id("t1")) + + assert_equal(item.tags_str, "t1") + + rdb2 = RBA::ReportDatabase::new + cat = rdb2.create_category("CAT") + cell = rdb2.create_cell("TOP") + item = rdb2.create_item(cell, cat) + item.add_value("item1") + item.add_tag(rdb2.tag_id("t2")) + + assert_equal(item.tags_str, "t2") + + items = rdb1.each_item.to_a + assert_equal(items.size, 1) + + assert_equal(items[0].tags_str, "t1") + + rdb1.merge(rdb2) + + items = rdb1.each_item.to_a + assert_equal(items.size, 2) + + assert_equal(items[0].tags_str, "t1") + assert_equal(items[1].tags_str, "t2") + + end + end load("test_epilogue.rb") From aaa165df32d26719516a68a790ab8340a3035461 Mon Sep 17 00:00:00 2001 From: Matthias Koefferlein Date: Sun, 1 Mar 2026 21:13:40 +0100 Subject: [PATCH 024/212] Providing a solution for #2248 The solution is to introduce a new object, the layout handle. A layout handle is a reference counting pointer to a layout. It can be obtained from a cell view and stored somewhere. If the cell view is closed, the layout will still exists as long as a layout handle exists. A layout handle can be used in LayoutView#show_layout in addition to the Layout object to re-open a layout that existed in a closed view. --- src/laybasic/laybasic/gsiDeclLayCellView.cc | 413 +++++++++++++++ .../laybasic/gsiDeclLayLayoutHandle.cc | 215 ++++++++ .../laybasic/gsiDeclLayLayoutViewBase.cc | 413 +-------------- src/laybasic/laybasic/layCellView.cc | 466 ----------------- src/laybasic/laybasic/layCellView.h | 318 +----------- src/laybasic/laybasic/layLayoutHandle.cc | 490 ++++++++++++++++++ src/laybasic/laybasic/layLayoutHandle.h | 356 +++++++++++++ src/laybasic/laybasic/laybasic.pro | 4 + testdata/ruby/layLayoutView.rb | 103 ++++ 9 files changed, 1600 insertions(+), 1178 deletions(-) create mode 100644 src/laybasic/laybasic/gsiDeclLayCellView.cc create mode 100644 src/laybasic/laybasic/gsiDeclLayLayoutHandle.cc create mode 100644 src/laybasic/laybasic/layLayoutHandle.cc create mode 100644 src/laybasic/laybasic/layLayoutHandle.h diff --git a/src/laybasic/laybasic/gsiDeclLayCellView.cc b/src/laybasic/laybasic/gsiDeclLayCellView.cc new file mode 100644 index 000000000..95672c7bd --- /dev/null +++ b/src/laybasic/laybasic/gsiDeclLayCellView.cc @@ -0,0 +1,413 @@ + +/* + + KLayout Layout Viewer + Copyright (C) 2006-2026 Matthias Koefferlein + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + +*/ + + +#include "gsiDecl.h" +#include "gsiSignals.h" + +#include "layCellView.h" +#include "layLayoutViewBase.h" +#include "layLayoutHandle.h" + +namespace gsi +{ + +static db::Layout *get_layout (const lay::CellViewRef *cv) +{ + if (cv->handle ()) { + return &cv->handle ()->layout (); + } else { + return 0; + } +} + +static lay::LayoutHandleRef *get_layout_handle (const lay::CellViewRef *cv) +{ + if (cv->handle ()) { + return new lay::LayoutHandleRef (cv->handle ()); + } else { + return 0; + } +} + +static std::string name (const lay::CellViewRef *cv) +{ + if (cv->handle ()) { + return cv->handle ()->name (); + } else { + return std::string (); + } +} + +static void set_name (lay::CellViewRef *cv, const std::string &name) +{ + cv->set_name (name); +} + +static std::string filename (const lay::CellViewRef *cv) +{ + if (cv->handle ()) { + return cv->handle ()->filename (); + } else { + return std::string (); + } +} + +static bool is_dirty (const lay::CellViewRef *cv) +{ + if (cv->handle ()) { + return cv->handle ()->is_dirty (); + } else { + return false; + } +} + +static void apply_technology (const lay::CellViewRef *cv, const std::string &tech) +{ + if (cv->handle ()) { + cv->handle ()->apply_technology (tech); + } +} + +static std::string get_technology (const lay::CellViewRef *cv) +{ + if (cv->handle ()) { + return cv->handle ()->tech_name (); + } else { + return std::string (); + } +} + +static tl::Event &get_technology_changed_event (lay::CellViewRef *cv) +{ + if (! cv->is_valid ()) { + throw tl::Exception (tl::to_string (tr ("Not a valid cellview"))); + } + return (*cv)->technology_changed_event; +} + +static void set_cell (lay::CellViewRef *cv, db::Cell *cell) +{ + if (! cell) { + cv->reset_cell (); + } else { + cv->set_cell (cell->cell_index ()); + } +} + +static void close_cellview (lay::CellViewRef *cv) +{ + if (cv->is_valid ()) { + cv->view ()->erase_cellview (cv->index ()); + } +} + +static std::string get_cell_name (const lay::CellViewRef *cv) +{ + if (cv->cell () == 0) { + return std::string (); + } else { + return (*cv)->layout ().cell_name (cv->cell_index ()); + } +} + +static void cv_descend (lay::CellViewRef *cv, const std::vector &path) +{ + if (cv->is_valid ()) { + cv->view ()->descend (path, cv->index ()); + } +} + +static void cv_ascend (lay::CellViewRef *cv) +{ + if (cv->is_valid ()) { + cv->view ()->ascend (cv->index ()); + } +} + +static bool cv_is_cell_hidden (lay::CellViewRef *cv, const db::Cell *cell) +{ + if (cv->is_valid () && cell) { + if (cell->layout () != &(*cv)->layout ()) { + throw tl::Exception (tl::to_string (tr ("The cell is not a cell of the view's layout"))); + } + return cv->view ()->is_cell_hidden (cell->cell_index (), cv->index ()); + } else { + return false; + } +} + +static void cv_hide_cell (lay::CellViewRef *cv, const db::Cell *cell) +{ + if (cv->is_valid () && cell) { + if (cell->layout () != &(*cv)->layout ()) { + throw tl::Exception (tl::to_string (tr ("The cell is not a cell of the view's layout"))); + } + cv->view ()->hide_cell (cell->cell_index (), cv->index ()); + } +} + +static void cv_show_cell (lay::CellViewRef *cv, const db::Cell *cell) +{ + if (cv->is_valid () && cell) { + if (cell->layout () != &(*cv)->layout ()) { + throw tl::Exception (tl::to_string (tr ("The cell is not a cell of the view's layout"))); + } + cv->view ()->show_cell (cell->cell_index (), cv->index ()); + } +} + +static void cv_show_all_cells (lay::CellViewRef *cv) +{ + if (cv->is_valid ()) { + cv->view ()->show_all_cells (cv->index ()); + } +} + +Class decl_CellView ("lay", "CellView", + method ("==", static_cast (&lay::CellViewRef::operator==), gsi::arg ("other"), + "@brief Equality: indicates whether the cellviews refer to the same one\n" + "In version 0.25, the definition of the equality operator has been changed to reflect identity of the " + "cellview. Before that version, identity of the cell shown was implied." + ) + + method ("index", &lay::CellViewRef::index, + "@brief Gets the index of this cellview in the layout view\n" + "The index will be negative if the cellview is not a valid one.\n" + "This method has been added in version 0.25.\n" + ) + + method ("is_valid?", &lay::CellViewRef::is_valid, + "@brief Returns true, if the cellview is valid\n" + "A cellview may become invalid if the corresponding tab is closed for example." + ) + + method ("path=|set_path", &lay::CellViewRef::set_unspecific_path, gsi::arg ("path"), + "@brief Sets the unspecific part of the path explicitly\n" + "\n" + "Setting the unspecific part of the path will clear the context path component and\n" + "update the context and target cell.\n" + ) + + method ("context_path=|set_context_path", &lay::CellViewRef::set_specific_path, gsi::arg ("path"), + "@brief Sets the context path explicitly\n" + "\n" + "This method assumes that the unspecific part of the path \n" + "is established already and that the context path starts\n" + "from the context cell.\n" + ) + + method ("cell_index=|set_cell", (void (lay::CellViewRef::*) (lay::CellViewRef::cell_index_type)) &lay::CellViewRef::set_cell, gsi::arg ("cell_index"), + "@brief Sets the path to the given cell\n" + "\n" + "This method will construct any path to this cell, not a \n" + "particular one. It will clear the context path\n" + "and update the context and target cell. Note that the cell is specified by its index.\n" + ) + + method ("cell_name=|set_cell_name", (void (lay::CellViewRef::*) (const std::string &)) &lay::CellViewRef::set_cell, gsi::arg ("cell_name"), + "@brief Sets the cell by name\n" + "\n" + "If the name is not a valid one, the cellview will become\n" + "invalid.\n" + "This method will construct any path to this cell, not a \n" + "particular one. It will clear the context path\n" + "and update the context and target cell.\n" + ) + + method_ext ("cell=", set_cell, gsi::arg ("cell"), + "@brief Sets the cell by reference to a Cell object\n" + "Setting the cell reference to nil invalidates the cellview. " + "This method will construct any path to this cell, not a \n" + "particular one. It will clear the context path\n" + "and update the context and target cell.\n" + ) + + method ("reset_cell", &lay::CellViewRef::reset_cell, + "@brief Resets the cell \n" + "\n" + "The cellview will become invalid. The layout object will\n" + "still be attached to the cellview, but no cell will be selected.\n" + ) + + method ("ctx_cell_index", &lay::CellViewRef::ctx_cell_index, + "@brief Gets the context cell's index\n" + ) + + method ("ctx_cell", &lay::CellViewRef::ctx_cell, + "@brief Gets the reference to the context cell currently addressed\n" + ) + + method ("cell_index", &lay::CellViewRef::cell_index, + "@brief Gets the target cell's index\n" + ) + + method ("cell", &lay::CellViewRef::cell, + "@brief Gets the reference to the target cell currently addressed\n" + ) + + method_ext ("cell_name", &get_cell_name, + "@brief Gets the name of the target cell currently addressed\n" + ) + + method_ext ("filename", &gsi::filename, + "@brief Gets filename associated with the layout behind the cellview\n" + ) + + method_ext ("is_dirty?", &gsi::is_dirty, + "@brief Gets a flag indicating whether the layout needs saving\n" + "A layout is 'dirty' if it is modified and needs saving. This method returns " + "true in this case.\n" + "\n" + "This method has been introduced in version 0.24.10.\n" + ) + + method_ext ("name", &gsi::name, + "@brief Gets the unique name associated with the layout behind the cellview\n" + ) + + method_ext ("name=", &gsi::set_name, gsi::arg("name"), + "@brief sets the unique name associated with the layout behind the cellview\n" + "\n" + "this method has been introduced in version 0.25." + ) + + method ("path", &lay::CellViewRef::unspecific_path, + "@brief Gets the cell's unspecific part of the path leading to the context cell\n" + ) + + method ("context_path", &lay::CellViewRef::specific_path, + "@brief Gets the cell's context path\n" + "The context path leads from the context cell to the target cell in a specific " + "fashion, i.e. describing each instance in detail, not just by cell indexes. If " + "the context and target cell are identical, the context path is empty." + ) + + method ("context_trans", &lay::CellViewRef::context_trans, + "@brief Gets the accumulated transformation of the context path\n" + "This is the transformation applied to the target cell before it is shown in the context cell\n" + "Technically this is the product of all transformations over the context path.\n" + "See \\context_dtrans for a version delivering a micron-unit space transformation.\n" + "\n" + "This method has been introduced in version 0.27.3.\n" + ) + + method ("context_dtrans", &lay::CellViewRef::context_dtrans, + "@brief Gets the accumulated transformation of the context path in micron unit space\n" + "This is the transformation applied to the target cell before it is shown in the context cell\n" + "Technically this is the product of all transformations over the context path.\n" + "See \\context_trans for a version delivering an integer-unit space transformation.\n" + "\n" + "This method has been introduced in version 0.27.3.\n" + ) + + event_ext ("on_technology_changed", &get_technology_changed_event, + "@brief An event indicating that the technology has changed\n" + "This event is triggered when the CellView is attached to a different technology.\n" + "\n" + "This event has been introduced in version 0.27.\n" + ) + + method_ext ("technology", &get_technology, + "@brief Returns the technology name for the layout behind the given cell view\n" + "This method has been added in version 0.23.\n" + ) + + method_ext ("technology=", &apply_technology, gsi::arg ("tech_name"), + "@brief Sets the technology for the layout behind the given cell view\n" + "According to the specification of the technology, new layer properties may be loaded " + "or the net tracer may be reconfigured. If the layout is shown in multiple views, the " + "technology is updated for all views.\n" + "This method has been added in version 0.22.\n" + ) + + method_ext ("layout", &get_layout, + "@brief Gets the reference to the layout object addressed by this view\n" + ) + + factory_ext ("layout_handle", &get_layout_handle, + "@brief Gets the handle to the layout object addressed by this cell view\n" + "A layout handle is a reference-counted pointer to a layout object and allows sharing this " + "resource among different views or objects. By holding a handle, the layout object is not " + "destroyed when the view closes for example.\n" + "\n" + "This method has been added in version 0.30.7.\n" + ) + + method_ext ("descend", &cv_descend, gsi::arg ("path"), + "@brief Descends further into the hierarchy.\n" + "Adds the given path (given as an array of InstElement objects) to the specific path of the " + "cellview with the given index. In effect, the cell addressed by the terminal of the new path " + "components can be shown in the context of the upper cells, if the minimum hierarchy level is " + "set to a negative value.\n" + "The path is assumed to originate from the current cell and contain specific instances sorted from " + "top to bottom." + "\n" + "This method has been added in version 0.25." + ) + + method_ext ("ascend", &cv_ascend, + "@brief Ascends upwards in the hierarchy.\n" + "Removes one element from the specific path of the cellview with the given index. Returns the element " + "removed." + "\n" + "This method has been added in version 0.25." + ) + + method_ext ("is_cell_hidden?", &cv_is_cell_hidden, gsi::arg ("cell"), + "@brief Returns true, if the given cell is hidden\n" + "\n" + "This method has been added in version 0.25." + ) + + method_ext ("hide_cell", &cv_hide_cell, gsi::arg ("cell"), + "@brief Hides the given cell\n" + "\n" + "This method has been added in version 0.25." + ) + + method_ext ("show_cell", &cv_show_cell, gsi::arg ("cell"), + "@brief Shows the given cell (cancels the effect of \\hide_cell)\n" + "\n" + "This method has been added in version 0.25." + ) + + method_ext ("show_all_cells", &cv_show_all_cells, + "@brief Makes all cells shown (cancel effects of \\hide_cell) for the specified cell view\n" + "\n" + "This method has been added in version 0.25." + ) + + method_ext ("close", &close_cellview, + "@brief Closes this cell view\n" + "\n" + "This method will close the cellview - remove it from the layout view. After this method was called, the " + "cellview will become invalid (see \\is_valid?).\n" + "\n" + "This method was introduced in version 0.25." + ), + "@brief A class describing what is shown inside a layout view\n" + "\n" + "The cell view points to a specific cell within a certain layout and a hierarchical context.\n" + "For that, first of all a layout pointer is provided. The cell itself\n" + "is addressed by an cell_index or a cell object reference.\n" + "The layout pointer can be nil, indicating that the cell view is invalid.\n" + "\n" + "The cell is not only identified by its index or object but also \n" + "by the path leading to that cell. This path indicates how to find the\n" + "cell in the hierarchical context of its parent cells. \n" + "\n" + "The path is in fact composed of two parts: first in an unspecific fashion,\n" + "just describing which parent cells are used. The target of this path\n" + "is called the \"context cell\". It is accessible by the \\ctx_cell_index\n" + "or \\ctx_cell methods. In the viewer, the unspecific part of the path is\n" + "the location of the cell in the cell tree.\n" + "\n" + "Additionally the path's second part may further identify a specific instance of a certain\n" + "subcell in the context cell. This is done through a set of \\InstElement\n" + "objects. The target of this specific path is the actual cell addressed by the\n" + "cellview. This target cell is accessible by the \\cell_index or \\cell methods.\n" + "In the viewer, the target cell is shown in the context of the context cell.\n" + "The hierarchy levels are counted from the context cell, which is on level 0.\n" + "If the context path is empty, the context cell is identical with the target cell.\n" + "\n" + "Starting with version 0.25, the cellview can be modified directly. This will have an immediate " + "effect on the display. For example, the following code will select a different cell:\n" + "\n" + "@code\n" + "cv = RBA::CellView::active\n" + "cv.cell_name = \"TOP2\"\n" + "@/code\n" + "\n" + "See @The Application API@ for more details about the " + "cellview objects." +); + +} + diff --git a/src/laybasic/laybasic/gsiDeclLayLayoutHandle.cc b/src/laybasic/laybasic/gsiDeclLayLayoutHandle.cc new file mode 100644 index 000000000..a9cfb1120 --- /dev/null +++ b/src/laybasic/laybasic/gsiDeclLayLayoutHandle.cc @@ -0,0 +1,215 @@ + +/* + + KLayout Layout Viewer + Copyright (C) 2006-2026 Matthias Koefferlein + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + +*/ + + +#include "gsiDecl.h" +#include "layLayoutHandle.h" + +namespace gsi +{ + +static std::vector get_names () +{ + std::vector names; + lay::LayoutHandle::get_names (names); + return names; +} + +static lay::LayoutHandleRef *find (const std::string &name) +{ + auto h = lay::LayoutHandle::find (name); + return h ? new lay::LayoutHandleRef (h) : 0; +} + +static lay::LayoutHandleRef *find_layout (const db::Layout *layout) +{ + auto h = lay::LayoutHandle::find_layout (layout); + return h ? new lay::LayoutHandleRef (h) : 0; +} + +static lay::LayoutHandleRef *new_handle1 (const std::string &filename, const db::LoadLayoutOptions &options, const std::string &technology) +{ + std::unique_ptr handle (new lay::LayoutHandle (new db::Layout (), filename)); + handle->load (options, technology); + return new lay::LayoutHandleRef (handle.release ()); +} + +static lay::LayoutHandleRef *new_handle2 (db::Layout *layout) +{ + return new lay::LayoutHandleRef (new lay::LayoutHandle (layout, std::string ())); +} + +static bool is_valid (const lay::LayoutHandleRef *ref) +{ + return ref->get () != 0; +} + +static const std::string &name (const lay::LayoutHandleRef *ref) +{ + tl_assert (ref->get () != 0); + return ref->get ()->name (); +} + +static void set_name (lay::LayoutHandleRef *ref, const std::string &name) +{ + tl_assert (ref->get () != 0); + ref->get ()->rename (name, true); +} + +static db::Layout *layout (const lay::LayoutHandleRef *ref) +{ + tl_assert (ref->get () != 0); + return &ref->get ()->layout (); +} + +static const std::string &filename (const lay::LayoutHandleRef *ref) +{ + tl_assert (ref->get () != 0); + return ref->get ()->filename (); +} + +static int get_ref_count (const lay::LayoutHandleRef *ref) +{ + tl_assert (ref->get () != 0); + return ref->get ()->get_ref_count (); +} + +static bool is_dirty (const lay::LayoutHandleRef *ref) +{ + tl_assert (ref->get () != 0); + return ref->get ()->is_dirty (); +} + +static void save_as (lay::LayoutHandleRef *ref, const std::string &filename, const db::SaveLayoutOptions &options, int keep_backups) +{ + tl_assert (ref->get () != 0); + ref->get ()->save_as (filename, tl::OutputStream::OM_Auto, options, true, keep_backups); + ref->get ()->set_save_options (options, true); +} + +static tl::Variant save_options (const lay::LayoutHandleRef *ref) +{ + tl_assert (ref->get () != 0); + return ref->get ()->save_options_valid () ? tl::Variant (ref->get ()->save_options ()) : tl::Variant (); +} + +static const db::LoadLayoutOptions &load_options (const lay::LayoutHandleRef *ref) +{ + tl_assert (ref->get () != 0); + return ref->get ()->load_options (); +} + + +Class decl_LayoutHandle ("lay", "LayoutHandle", + gsi::method ("names", &get_names, + "@brief Gets the names of all layout handles registered currently.\n" + ) + + gsi::constructor ("find", &find, gsi::arg ("name"), + "@brief Finds a layout handle by name.\n" + "If no handle with that name exists, nil is returned." + ) + + gsi::constructor ("find", &find_layout, gsi::arg ("layout"), + "@brief Finds a layout handle for the given layout object.\n" + "If no handle for that layout exists, nil is returned." + ) + + gsi::constructor ("new", &new_handle1, gsi::arg ("filename"), gsi::arg ("options"), gsi::arg ("technology", std::string ()), + "@brief Creates a handle from a file.\n" + "Loads the layout and creates a handle from that layout. The name is derived from the file name initially. " + "You can pass load options and assign a technology using 'options' and 'technology' respectively." + ) + + gsi::constructor ("new", &new_handle2, gsi::arg ("layout"), + "@brief Creates a handle from an existing layout object.\n" + "Creates a layout handle for an existing layout object. The ownership over the layout object is transferred to the handle. " + ) + + gsi::method_ext ("is_valid?", &is_valid, + "@brief Gets a value indicating whether the layout handle is valid.\n" + "Invalid layout handles cannot be used. Default-created layout handles are invalid for example." + ) + + gsi::method_ext ("name", &name, + "@brief Gets the name of the layout handle.\n" + "The name identifies a layout handle in the global context. Names should be unique. " + "Handles can be retrieved by name using \\find." + ) + + gsi::method_ext ("name=", &set_name, + "@brief Sets the name of the layout handle.\n" + "The caller is responsible for selecting a unique name for the handle. Only uniquely named handles " + "can be retrieved by \\find." + ) + + gsi::method_ext ("layout", &layout, + "@brief Gets the layout object kept by the handle.\n" + ) + + gsi::method_ext ("filename", &filename, + "@brief Gets the file name the layout was loaded from.\n" + "If the handle was not constructed from a file, this attribute is an empty string." + ) + + gsi::method_ext ("ref_count", &get_ref_count, + "@brief Gets the reference count.\n" + "The reference count indicates how many references are present for the handle. If the " + "reference count reaches zero, the layout object is destroyed. References are kept by " + "layout views showing the layout, but can also be kept by separate handles." + ) + + gsi::method_ext ("is_dirty?", &is_dirty, + "@brief Gets a value indicating whether the layout needs saving.\n" + ) + + gsi::method_ext ("save_as?", &save_as, gsi::arg ("filename"), gsi::arg ("options"), gsi::arg ("keep_backups", 0), + "@brief Saves the layout to a file.\n" + "This method will save the layout kept by the handle to the given file. Calling this method will change " + "the file name and reset the \\is_dirty? flag and set \\save_options to the options passed.\n" + "\n" + "@param filename The path where to save the layout to\n" + "@param options The options used for saving the file\n" + "@param keep_backups The number of backup files to keep (0 for 'no backups')\n" + ) + + gsi::method_ext ("save_options", &save_options, + "@brief Gets the save options used most recently when saving the file or 'nil' if no save options are available." + ) + + gsi::method_ext ("load_options", &load_options, + "@brief Gets the load options used when the layout was read.\n" + "Default options will be returned when the layout was not created from a file." + ), + "@brief A handle to a global layout object\n" + "Layout objects shown in layout views are stored in a global repository. The layout handle is a pointer " + "into that repository. Handles are reference counted - when no handle points to a layout, the layout is discarded.\n" + "A handle stores some more information about the layout, i.e. whether it is 'dirty' (needs saving) and the " + "options used for loading or saving the layout.\n" + "\n" + "The layout handle object is useful to hold a separate reference to a layout. This way it is possible " + "to close a layout view, but still have a reference to the layout:\n" + "\n" + "You can use layout handles to move a layout to a different view for example:\n" + "\n" + "@code\n" + "cellview = ... # the source cellview\n" + "new_view = ... # the new target view\n" + "\n" + "h = cellview.handle\n" + "cellview.close\n" + "new_view.show_layout(h, true)\n" + "@/code\n" + "\n" + "Handles are named. You can use \\LayoutHandle#find the find a handle by name or to obtain the handle for " + "a given layout object. You can use \\LayoutHandle#names to get the names of all handles registered in the system.\n" + "\n" + "This class has been introduced in version 0.30.7." +); + +} diff --git a/src/laybasic/laybasic/gsiDeclLayLayoutViewBase.cc b/src/laybasic/laybasic/gsiDeclLayLayoutViewBase.cc index 8c4307134..78ee00486 100644 --- a/src/laybasic/laybasic/gsiDeclLayLayoutViewBase.cc +++ b/src/laybasic/laybasic/gsiDeclLayLayoutViewBase.cc @@ -281,8 +281,6 @@ static void delete_layers1 (lay::LayoutViewBase *view, const std::vectorkeep (); lay::LayoutHandle *handle = lay::LayoutHandle::find_layout (layout); if (! handle) { handle = new lay::LayoutHandle (layout, std::string ()); @@ -290,22 +288,8 @@ static unsigned int show_layout1 (lay::LayoutViewBase *view, db::Layout *layout, return view->add_layout (handle, add_cellview); } -static unsigned int show_layout2 (lay::LayoutViewBase *view, db::Layout *layout, std::string &tech, bool add_cellview) +static unsigned int show_layout2 (lay::LayoutViewBase *view, db::Layout *layout, std::string &tech, bool add_cellview, bool initialize_layers) { - // the layout gets held by the LayoutHandle object - layout->keep (); - lay::LayoutHandle *handle = lay::LayoutHandle::find_layout (layout); - if (! handle) { - handle = new lay::LayoutHandle (layout, std::string ()); - } - handle->set_tech_name (tech); - return view->add_layout (handle, add_cellview); -} - -static unsigned int show_layout3 (lay::LayoutViewBase *view, db::Layout *layout, std::string &tech, bool add_cellview, bool initialize_layers) -{ - // the layout gets held by the LayoutHandle object - layout->keep (); lay::LayoutHandle *handle = lay::LayoutHandle::find_layout (layout); if (! handle) { handle = new lay::LayoutHandle (layout, std::string ()); @@ -314,6 +298,11 @@ static unsigned int show_layout3 (lay::LayoutViewBase *view, db::Layout *layout, return view->add_layout (handle, add_cellview, initialize_layers); } +static unsigned int show_layout_handle (lay::LayoutViewBase *view, lay::LayoutHandleRef &handle, bool add_cellview, bool initialize_layers) +{ + return view->add_layout (handle.operator-> (), add_cellview, initialize_layers); +} + static void delete_layers2 (lay::LayoutViewBase *view, unsigned int index, const std::vector &iters) { std::vector sorted (iters); @@ -773,23 +762,7 @@ LAYBASIC_PUBLIC Class decl_LayoutViewBase (decl_Dispatcher, "\n" "This method has been introduced in version 0.22.\n" ) + - gsi::method_ext ("show_layout", &show_layout2, gsi::arg ("layout"), gsi::arg ("tech"), gsi::arg ("add_cellview"), - "@brief Shows an existing layout in the view\n" - "\n" - "Shows the given layout in the view. If add_cellview is true, the new layout is added to the list of " - "cellviews in the view.\n" - "The technology to use for that layout can be specified as well with the 'tech' parameter. Depending " - "on the definition of the technology, layer properties may be loaded for example.\n" - "The technology string can be empty for the default technology.\n" - "\n" - "Note: once a layout is passed to the view with show_layout, it is owned by the view and must not be " - "destroyed with the 'destroy' method.\n" - "\n" - "@return The index of the cellview created.\n" - "\n" - "This method has been introduced in version 0.22.\n" - ) + - gsi::method_ext ("show_layout", &show_layout3, gsi::arg ("layout"), gsi::arg ("tech"), gsi::arg ("add_cellview"), gsi::arg ("init_layers"), + gsi::method_ext ("show_layout", &show_layout2, gsi::arg ("layout"), gsi::arg ("tech"), gsi::arg ("add_cellview"), gsi::arg ("init_layers", true), "@brief Shows an existing layout in the view\n" "\n" "Shows the given layout in the view. If add_cellview is true, the new layout is added to the list of " @@ -807,6 +780,17 @@ LAYBASIC_PUBLIC Class decl_LayoutViewBase (decl_Dispatcher, "\n" "This method has been introduced in version 0.22.\n" ) + + gsi::method_ext ("show_layout", &show_layout_handle, gsi::arg ("layout_handle"), gsi::arg ("add_cellview"), gsi::arg ("init_layers", true), + "@brief Shows an existing layout (from a handle) in the view\n" + "\n" + "This variant of \\show_layout takes a layout handle instead of the layout. Layout handles are reference-counted pointers\n" + "and can be used to hold a reference to a layout object. This way, ownership over the layout can be shared between different\n" + "objects.\n" + "\n" + "@return The index of the cellview created.\n" + "\n" + "This method has been introduced in version 0.30.7.\n" + ) + gsi::method ("erase_cellview", static_cast (&lay::LayoutViewBase::erase_cellview), gsi::arg ("index"), "@brief Erases the cellview with the given index\n" "\n" @@ -2083,366 +2067,5 @@ gsi::EnumIn decl_layLayoutVie // Inject the NetlistCrossReference::Status declarations into NetlistCrossReference: gsi::ClassExt inject_SelectionMode_in_parent (decl_layLayoutView_SelectionMode.defs ()); -static db::Layout *get_layout (const lay::CellViewRef *cv) -{ - if ((*cv).operator-> ()) { - return &(*cv)->layout (); - } else { - return 0; - } -} - -static std::string name (const lay::CellViewRef *cv) -{ - if ((*cv).operator-> ()) { - return (*cv)->name (); - } else { - return std::string (); - } -} - -static void set_name (lay::CellViewRef *cv, const std::string &name) -{ - cv->set_name (name); -} - -static std::string filename (const lay::CellViewRef *cv) -{ - if ((*cv).operator-> ()) { - return (*cv)->filename (); - } else { - return std::string (); - } -} - -static bool is_dirty (const lay::CellViewRef *cv) -{ - if ((*cv).operator-> ()) { - return (*cv)->is_dirty (); - } else { - return false; - } -} - -static void apply_technology (const lay::CellViewRef *cv, const std::string &tech) -{ - if ((*cv).operator-> ()) { - (*cv)->apply_technology (tech); - } -} - -static std::string get_technology (const lay::CellViewRef *cv) -{ - if ((*cv).operator-> ()) { - return (*cv)->tech_name (); - } else { - return std::string (); - } -} - -static tl::Event &get_technology_changed_event (lay::CellViewRef *cv) -{ - if (! cv->is_valid ()) { - throw tl::Exception (tl::to_string (tr ("Not a valid cellview"))); - } - return (*cv)->technology_changed_event; -} - -static void set_cell (lay::CellViewRef *cv, db::Cell *cell) -{ - if (! cell) { - cv->reset_cell (); - } else { - cv->set_cell (cell->cell_index ()); - } -} - -static void close_cellview (lay::CellViewRef *cv) -{ - if (cv->is_valid ()) { - cv->view ()->erase_cellview (cv->index ()); - } -} - -static std::string get_cell_name (const lay::CellViewRef *cv) -{ - if (cv->cell () == 0) { - return std::string (); - } else { - return (*cv)->layout ().cell_name (cv->cell_index ()); - } -} - -static void cv_descend (lay::CellViewRef *cv, const std::vector &path) -{ - if (cv->is_valid ()) { - cv->view ()->descend (path, cv->index ()); - } -} - -static void cv_ascend (lay::CellViewRef *cv) -{ - if (cv->is_valid ()) { - cv->view ()->ascend (cv->index ()); - } -} - -static bool cv_is_cell_hidden (lay::CellViewRef *cv, const db::Cell *cell) -{ - if (cv->is_valid () && cell) { - if (cell->layout () != &(*cv)->layout ()) { - throw tl::Exception (tl::to_string (tr ("The cell is not a cell of the view's layout"))); - } - return cv->view ()->is_cell_hidden (cell->cell_index (), cv->index ()); - } else { - return false; - } -} - -static void cv_hide_cell (lay::CellViewRef *cv, const db::Cell *cell) -{ - if (cv->is_valid () && cell) { - if (cell->layout () != &(*cv)->layout ()) { - throw tl::Exception (tl::to_string (tr ("The cell is not a cell of the view's layout"))); - } - cv->view ()->hide_cell (cell->cell_index (), cv->index ()); - } -} - -static void cv_show_cell (lay::CellViewRef *cv, const db::Cell *cell) -{ - if (cv->is_valid () && cell) { - if (cell->layout () != &(*cv)->layout ()) { - throw tl::Exception (tl::to_string (tr ("The cell is not a cell of the view's layout"))); - } - cv->view ()->show_cell (cell->cell_index (), cv->index ()); - } -} - -static void cv_show_all_cells (lay::CellViewRef *cv) -{ - if (cv->is_valid ()) { - cv->view ()->show_all_cells (cv->index ()); - } -} - -Class decl_CellView ("lay", "CellView", - method ("==", static_cast (&lay::CellViewRef::operator==), gsi::arg ("other"), - "@brief Equality: indicates whether the cellviews refer to the same one\n" - "In version 0.25, the definition of the equality operator has been changed to reflect identity of the " - "cellview. Before that version, identity of the cell shown was implied." - ) + - method ("index", &lay::CellViewRef::index, - "@brief Gets the index of this cellview in the layout view\n" - "The index will be negative if the cellview is not a valid one.\n" - "This method has been added in version 0.25.\n" - ) + - method ("is_valid?", &lay::CellViewRef::is_valid, - "@brief Returns true, if the cellview is valid\n" - "A cellview may become invalid if the corresponding tab is closed for example." - ) + - method ("path=|set_path", &lay::CellViewRef::set_unspecific_path, gsi::arg ("path"), - "@brief Sets the unspecific part of the path explicitly\n" - "\n" - "Setting the unspecific part of the path will clear the context path component and\n" - "update the context and target cell.\n" - ) + - method ("context_path=|set_context_path", &lay::CellViewRef::set_specific_path, gsi::arg ("path"), - "@brief Sets the context path explicitly\n" - "\n" - "This method assumes that the unspecific part of the path \n" - "is established already and that the context path starts\n" - "from the context cell.\n" - ) + - method ("cell_index=|set_cell", (void (lay::CellViewRef::*) (lay::CellViewRef::cell_index_type)) &lay::CellViewRef::set_cell, gsi::arg ("cell_index"), - "@brief Sets the path to the given cell\n" - "\n" - "This method will construct any path to this cell, not a \n" - "particular one. It will clear the context path\n" - "and update the context and target cell. Note that the cell is specified by its index.\n" - ) + - method ("cell_name=|set_cell_name", (void (lay::CellViewRef::*) (const std::string &)) &lay::CellViewRef::set_cell, gsi::arg ("cell_name"), - "@brief Sets the cell by name\n" - "\n" - "If the name is not a valid one, the cellview will become\n" - "invalid.\n" - "This method will construct any path to this cell, not a \n" - "particular one. It will clear the context path\n" - "and update the context and target cell.\n" - ) + - method_ext ("cell=", set_cell, gsi::arg ("cell"), - "@brief Sets the cell by reference to a Cell object\n" - "Setting the cell reference to nil invalidates the cellview. " - "This method will construct any path to this cell, not a \n" - "particular one. It will clear the context path\n" - "and update the context and target cell.\n" - ) + - method ("reset_cell", &lay::CellViewRef::reset_cell, - "@brief Resets the cell \n" - "\n" - "The cellview will become invalid. The layout object will\n" - "still be attached to the cellview, but no cell will be selected.\n" - ) + - method ("ctx_cell_index", &lay::CellViewRef::ctx_cell_index, - "@brief Gets the context cell's index\n" - ) + - method ("ctx_cell", &lay::CellViewRef::ctx_cell, - "@brief Gets the reference to the context cell currently addressed\n" - ) + - method ("cell_index", &lay::CellViewRef::cell_index, - "@brief Gets the target cell's index\n" - ) + - method ("cell", &lay::CellViewRef::cell, - "@brief Gets the reference to the target cell currently addressed\n" - ) + - method_ext ("cell_name", &get_cell_name, - "@brief Gets the name of the target cell currently addressed\n" - ) + - method_ext ("filename", &gsi::filename, - "@brief Gets filename associated with the layout behind the cellview\n" - ) + - method_ext ("is_dirty?", &gsi::is_dirty, - "@brief Gets a flag indicating whether the layout needs saving\n" - "A layout is 'dirty' if it is modified and needs saving. This method returns " - "true in this case.\n" - "\n" - "This method has been introduced in version 0.24.10.\n" - ) + - method_ext ("name", &gsi::name, - "@brief Gets the unique name associated with the layout behind the cellview\n" - ) + - method_ext ("name=", &gsi::set_name, gsi::arg("name"), - "@brief sets the unique name associated with the layout behind the cellview\n" - "\n" - "this method has been introduced in version 0.25." - ) + - method ("path", &lay::CellViewRef::unspecific_path, - "@brief Gets the cell's unspecific part of the path leading to the context cell\n" - ) + - method ("context_path", &lay::CellViewRef::specific_path, - "@brief Gets the cell's context path\n" - "The context path leads from the context cell to the target cell in a specific " - "fashion, i.e. describing each instance in detail, not just by cell indexes. If " - "the context and target cell are identical, the context path is empty." - ) + - method ("context_trans", &lay::CellViewRef::context_trans, - "@brief Gets the accumulated transformation of the context path\n" - "This is the transformation applied to the target cell before it is shown in the context cell\n" - "Technically this is the product of all transformations over the context path.\n" - "See \\context_dtrans for a version delivering a micron-unit space transformation.\n" - "\n" - "This method has been introduced in version 0.27.3.\n" - ) + - method ("context_dtrans", &lay::CellViewRef::context_dtrans, - "@brief Gets the accumulated transformation of the context path in micron unit space\n" - "This is the transformation applied to the target cell before it is shown in the context cell\n" - "Technically this is the product of all transformations over the context path.\n" - "See \\context_trans for a version delivering an integer-unit space transformation.\n" - "\n" - "This method has been introduced in version 0.27.3.\n" - ) + - event_ext ("on_technology_changed", &get_technology_changed_event, - "@brief An event indicating that the technology has changed\n" - "This event is triggered when the CellView is attached to a different technology.\n" - "\n" - "This event has been introduced in version 0.27.\n" - ) + - method_ext ("technology", &get_technology, - "@brief Returns the technology name for the layout behind the given cell view\n" - "This method has been added in version 0.23.\n" - ) + - method_ext ("technology=", &apply_technology, gsi::arg ("tech_name"), - "@brief Sets the technology for the layout behind the given cell view\n" - "According to the specification of the technology, new layer properties may be loaded " - "or the net tracer may be reconfigured. If the layout is shown in multiple views, the " - "technology is updated for all views.\n" - "This method has been added in version 0.22.\n" - ) + - method_ext ("layout", &get_layout, - "@brief Gets the reference to the layout object addressed by this view\n" - ) + - method_ext ("descend", &cv_descend, gsi::arg ("path"), - "@brief Descends further into the hierarchy.\n" - "Adds the given path (given as an array of InstElement objects) to the specific path of the " - "cellview with the given index. In effect, the cell addressed by the terminal of the new path " - "components can be shown in the context of the upper cells, if the minimum hierarchy level is " - "set to a negative value.\n" - "The path is assumed to originate from the current cell and contain specific instances sorted from " - "top to bottom." - "\n" - "This method has been added in version 0.25." - ) + - method_ext ("ascend", &cv_ascend, - "@brief Ascends upwards in the hierarchy.\n" - "Removes one element from the specific path of the cellview with the given index. Returns the element " - "removed." - "\n" - "This method has been added in version 0.25." - ) + - method_ext ("is_cell_hidden?", &cv_is_cell_hidden, gsi::arg ("cell"), - "@brief Returns true, if the given cell is hidden\n" - "\n" - "This method has been added in version 0.25." - ) + - method_ext ("hide_cell", &cv_hide_cell, gsi::arg ("cell"), - "@brief Hides the given cell\n" - "\n" - "This method has been added in version 0.25." - ) + - method_ext ("show_cell", &cv_show_cell, gsi::arg ("cell"), - "@brief Shows the given cell (cancels the effect of \\hide_cell)\n" - "\n" - "This method has been added in version 0.25." - ) + - method_ext ("show_all_cells", &cv_show_all_cells, - "@brief Makes all cells shown (cancel effects of \\hide_cell) for the specified cell view\n" - "\n" - "This method has been added in version 0.25." - ) + - method_ext ("close", &close_cellview, - "@brief Closes this cell view\n" - "\n" - "This method will close the cellview - remove it from the layout view. After this method was called, the " - "cellview will become invalid (see \\is_valid?).\n" - "\n" - "This method was introduced in version 0.25." - ), - "@brief A class describing what is shown inside a layout view\n" - "\n" - "The cell view points to a specific cell within a certain layout and a hierarchical context.\n" - "For that, first of all a layout pointer is provided. The cell itself\n" - "is addressed by an cell_index or a cell object reference.\n" - "The layout pointer can be nil, indicating that the cell view is invalid.\n" - "\n" - "The cell is not only identified by its index or object but also \n" - "by the path leading to that cell. This path indicates how to find the\n" - "cell in the hierarchical context of its parent cells. \n" - "\n" - "The path is in fact composed of two parts: first in an unspecific fashion,\n" - "just describing which parent cells are used. The target of this path\n" - "is called the \"context cell\". It is accessible by the \\ctx_cell_index\n" - "or \\ctx_cell methods. In the viewer, the unspecific part of the path is\n" - "the location of the cell in the cell tree.\n" - "\n" - "Additionally the path's second part may further identify a specific instance of a certain\n" - "subcell in the context cell. This is done through a set of \\InstElement\n" - "objects. The target of this specific path is the actual cell addressed by the\n" - "cellview. This target cell is accessible by the \\cell_index or \\cell methods.\n" - "In the viewer, the target cell is shown in the context of the context cell.\n" - "The hierarchy levels are counted from the context cell, which is on level 0.\n" - "If the context path is empty, the context cell is identical with the target cell.\n" - "\n" - "Starting with version 0.25, the cellview can be modified directly. This will have an immediate " - "effect on the display. For example, the following code will select a different cell:\n" - "\n" - "@code\n" - "cv = RBA::CellView::active\n" - "cv.cell_name = \"TOP2\"\n" - "@/code\n" - "\n" - "See @The Application API@ for more details about the " - "cellview objects." -); - } diff --git a/src/laybasic/laybasic/layCellView.cc b/src/laybasic/laybasic/layCellView.cc index 7c70791cc..f20138ec5 100644 --- a/src/laybasic/laybasic/layCellView.cc +++ b/src/laybasic/laybasic/layCellView.cc @@ -20,478 +20,12 @@ */ - #include "layCellView.h" #include "layLayoutViewBase.h" -#if defined(HAVE_QT) -# include "layStream.h" -#endif -#include "dbLayout.h" -#include "dbWriter.h" -#include "dbReader.h" -#include "tlLog.h" -#include "tlStaticObjects.h" - -#include namespace lay { -// ------------------------------------------------------------- - -static std::string -filename_for_caption (const std::string &fn) -{ - const char *cp = fn.c_str (); - const char *cpp = cp + fn.size (); - while (cpp > cp && cpp [-1] != '\\' && cpp [-1] != '/') { - --cpp; - } - return cpp; -} - -// ------------------------------------------------------------- -// LayoutHandle implementation - - -LayoutHandle::LayoutHandle (db::Layout *layout, const std::string &filename) - : mp_layout (layout), - m_ref_count (0), - m_filename (filename), - m_dirty (false), - m_save_options_valid (false) -{ - layout->technology_changed_event.add (this, &LayoutHandle::on_technology_changed); - - // layouts in the managed layouts space participate in spare proxy cleanup - layout->do_cleanup (true); - - add_file_to_watcher (m_filename); - - if (! m_filename.empty ()) { - rename (filename_for_caption (m_filename)); - } else { - - // create a unique new name - static int nn = 0; - - std::string n; - do { - n = tl::sprintf ("L%d", ++nn); - } while (find (n) != 0); - - m_name = n; - ms_dict.insert (std::make_pair (n, this)); - - } - - mp_layout->hier_changed_event.add (this, &LayoutHandle::layout_changed); - mp_layout->bboxes_changed_any_event.add (this, &LayoutHandle::layout_changed); - mp_layout->cell_name_changed_event.add (this, &LayoutHandle::layout_changed); - mp_layout->prop_ids_changed_event.add (this, &LayoutHandle::layout_changed); - mp_layout->layer_properties_changed_event.add (this, &LayoutHandle::layout_changed); - - if (tl::verbosity () >= 30) { - tl::info << "Created layout " << name (); - } -} - -LayoutHandle::~LayoutHandle () -{ - if (tl::verbosity () >= 30) { - tl::info << "Deleted layout " << name (); - } - - delete mp_layout; - mp_layout = 0; - - if (find (m_name) == this) { - ms_dict.erase (m_name); - } - - remove_file_from_watcher (filename ()); -} - -void -LayoutHandle::remove_file_from_watcher (const std::string &path) -{ -#if defined(HAVE_QT) - file_watcher ().remove_file (path); -#endif -} - -void -LayoutHandle::add_file_to_watcher (const std::string &path) -{ -#if defined(HAVE_QT) - file_watcher ().add_file (path); -#endif -} - -void -LayoutHandle::on_technology_changed () -{ - technology_changed_event (); -} - -void -LayoutHandle::layout_changed () -{ - m_dirty = true; -} - -void -LayoutHandle::rename (const std::string &name, bool force) -{ - std::string n (name); - - if (n != m_name) { - - if (force || find (n) == 0) { - ms_dict.erase (m_name); - if (tl::verbosity () >= 40) { - tl::info << "Renamed layout from " << m_name << " to " << n; - } - m_name = n; - ms_dict.insert (std::make_pair (n, this)); - return; - } - - // rename using suffix "[u]" where u is a unique index - int nn = 0; - int ns = 0x40000000; - do { - n = name + tl::sprintf ("[%d]", nn + ns); - if (find (n) != 0) { - nn += ns; - } - ns /= 2; - } while (ns > 0); - - n = name + tl::sprintf ("[%d]", nn + 1); - - if (tl::verbosity () >= 40) { - tl::info << "Renamed layout from " << m_name << " to " << n; - } - - if (find (m_name) == this) { - ms_dict.erase (m_name); - } - - m_name = n; - ms_dict.insert (std::make_pair (n, this)); - return; - - } -} - -db::Layout & -LayoutHandle::layout () const -{ - return *mp_layout; -} - -void -LayoutHandle::set_filename (const std::string &fn) -{ - remove_file_from_watcher (m_filename); - m_filename = fn; - add_file_to_watcher (m_filename); -} - -const std::string & -LayoutHandle::filename () const -{ - return m_filename; -} - -const std::string & -LayoutHandle::name () const -{ - return m_name; -} - -void -LayoutHandle::add_ref () -{ - if (tl::verbosity () >= 50) { - tl::info << "Add reference to " << m_name; - } - ++m_ref_count; -} - -void -LayoutHandle::remove_ref () -{ - if (tl::verbosity () >= 50) { - tl::info << "Remove reference from " << m_name; - } - if (--m_ref_count <= 0) { - // not nice, but hopefully we can do so: - delete this; - } -} - -const std::string & -LayoutHandle::tech_name () const -{ - static std::string s_empty; - return mp_layout ? mp_layout->technology_name () : s_empty; -} - -const db::Technology * -LayoutHandle::technology () const -{ - return mp_layout ? mp_layout->technology () : 0; -} - -void -LayoutHandle::apply_technology (const std::string &tn) -{ - set_tech_name (tn); - apply_technology_event (); - apply_technology_with_sender_event (this); -} - -void -LayoutHandle::set_tech_name (const std::string &tn) -{ - if (mp_layout && tn != tech_name ()) { - mp_layout->set_technology_name (tn); - } -} - -LayoutHandle * -LayoutHandle::find (const std::string &name) -{ - std::map ::const_iterator h = ms_dict.find (name); - if (h == ms_dict.end ()) { - return 0; - } else { - return h->second; - } -} - -LayoutHandle * -LayoutHandle::find_layout (const db::Layout *layout) -{ - for (auto h = ms_dict.begin (); h != ms_dict.end (); ++h) { - if (h->second->mp_layout == layout) { - return h->second; - } - } - return 0; -} - -void -LayoutHandle::get_names (std::vector &names) -{ - names.clear (); - names.reserve (ms_dict.size ()); - for (std::map ::const_iterator h = ms_dict.begin (); h != ms_dict.end (); ++h) { - names.push_back (h->first); - } -} - -void -LayoutHandle::set_save_options (const db::SaveLayoutOptions &options, bool valid) -{ - m_save_options = options; - m_save_options_valid = valid; -} - -void -LayoutHandle::save_as (const std::string &fn, tl::OutputStream::OutputStreamMode om, const db::SaveLayoutOptions &options, bool update, int keep_backups) -{ - if (update) { - - // We must not load with the original options after we have saved the file - hence we reset the - // reader options. - m_load_options = db::LoadLayoutOptions (); - - remove_file_from_watcher (filename ()); - - rename (filename_for_caption (fn)); - - // NOTE: we don't use set_filename since this would re-attach the file watcher - m_filename = fn; - - } - - try { - - { - // The write needs to be finished before the file watcher gets the new modification time - db::Writer writer (options); - tl::OutputStream stream (fn, om, false, keep_backups); - try { - writer.write (*mp_layout, stream); - } catch (...) { - stream.reject (); - throw; - } - } - - if (update) { - add_file_to_watcher (filename ()); - m_dirty = false; - } - - } catch (...) { - - if (update) { - add_file_to_watcher (filename ()); - } - - throw; - - } -} - -db::LayerMap -LayoutHandle::load (const db::LoadLayoutOptions &options, const std::string &technology) -{ - m_load_options = options; - m_save_options = db::SaveLayoutOptions (); - m_save_options_valid = false; - - set_tech_name (technology); - - tl::InputStream stream (m_filename); - db::Reader reader (stream); - db::LayerMap new_lmap = reader.read (layout (), m_load_options); - - // If there is no technology given and the reader reports one, use this one - if (technology.empty ()) { - std::string tech_from_reader = layout ().technology_name (); - if (! tech_from_reader.empty ()) { - set_tech_name (tech_from_reader); - } - } - - // Update the file's data: - remove_file_from_watcher (filename ()); - add_file_to_watcher (filename ()); - - m_save_options.set_format (reader.format ()); - m_dirty = false; - return new_lmap; -} - -db::LayerMap -LayoutHandle::load () -{ - m_load_options = db::LoadLayoutOptions (); - m_save_options = db::SaveLayoutOptions (); - m_save_options_valid = false; - - set_tech_name (std::string ()); - - tl::InputStream stream (m_filename); - db::Reader reader (stream); - db::LayerMap new_lmap = reader.read (layout (), m_load_options); - - // Attach the technology from the reader if it reports one - std::string tech_from_reader = layout ().technology_name (); - if (! tech_from_reader.empty ()) { - set_tech_name (tech_from_reader); - } - - // Update the file's data: - remove_file_from_watcher (filename ()); - add_file_to_watcher (filename ()); - - m_save_options.set_format (reader.format ()); - m_dirty = false; - return new_lmap; -} - -#if defined(HAVE_QT) -tl::FileSystemWatcher & -LayoutHandle::file_watcher () -{ - if (! mp_file_watcher) { - mp_file_watcher = new tl::FileSystemWatcher (); - tl::StaticObjects::reg (&mp_file_watcher); - } - return *mp_file_watcher; -} - -tl::FileSystemWatcher *LayoutHandle::mp_file_watcher = 0; -#endif - -std::map LayoutHandle::ms_dict; - -// ------------------------------------------------------------- -// LayoutHandleRef implementation - -LayoutHandleRef::LayoutHandleRef () - : mp_handle (0) -{ - // .. nothing yet .. -} - -LayoutHandleRef::LayoutHandleRef (LayoutHandle *h) - : mp_handle (0) -{ - set (h); -} - -LayoutHandleRef::LayoutHandleRef (const LayoutHandleRef &r) - : mp_handle (0) -{ - set (r.mp_handle); -} - -LayoutHandleRef::~LayoutHandleRef () -{ - set (0); -} - -bool -LayoutHandleRef::operator== (const LayoutHandleRef &r) const -{ - return mp_handle == r.mp_handle; -} - -LayoutHandleRef & -LayoutHandleRef::operator= (const LayoutHandleRef &r) -{ - if (&r != this) { - set (r.mp_handle); - } - return *this; -} - -void -LayoutHandleRef::set (LayoutHandle *h) -{ - if (mp_handle == h) { - return; - } - - if (mp_handle) { - mp_handle->remove_ref (); - mp_handle = 0; - } - mp_handle = h; - if (mp_handle) { - mp_handle->add_ref (); - } -} - -LayoutHandle * -LayoutHandleRef::operator-> () const -{ - return mp_handle; -} - -LayoutHandle * -LayoutHandleRef::get () const -{ - return mp_handle; -} - // ------------------------------------------------------------- // CellView implementation diff --git a/src/laybasic/laybasic/layCellView.h b/src/laybasic/laybasic/layCellView.h index 13280e1f9..477d82294 100644 --- a/src/laybasic/laybasic/layCellView.h +++ b/src/laybasic/laybasic/layCellView.h @@ -25,6 +25,7 @@ #define HDR_layCellView #include "laybasicCommon.h" +#include "layLayoutHandle.h" #include #include @@ -33,330 +34,13 @@ #include "dbLayout.h" #include "dbMetaInfo.h" #include "dbReader.h" -#include "dbSaveLayoutOptions.h" -#include "dbLoadLayoutOptions.h" #include "dbInstElement.h" #include "dbTechnology.h" #include "gsi.h" -#if defined(HAVE_QT) -# include "tlFileSystemWatcher.h" -#endif - namespace lay { -class LayoutViewBase; - -/** - * @brief A layout handle - * - * This object controls a layout object. A layout object can be - * identified through a name. Additionally, a reference count - * is maintained that controls when the layout object is deleted. - */ -class LAYBASIC_PUBLIC LayoutHandle - : public tl::Object -{ -public: - /** - * @brief Creates a layout handle to the given object - * - * This constructor creates a new handle to the given - * layout object. The handle takes over the ownership over the - * layout object. - * The initial reference count is zero (see remove_ref). - * The filename is a string that is supposed to identify - * the layout further. It can be retrieved with the filename - * method. - */ - LayoutHandle (db::Layout *layout, const std::string &filename); - - /** - * @brief Destructor - * - * The destructor will delete the layout object that - * was associated with this handle. - */ - ~LayoutHandle (); - - /** - * @brief Renames the layout object - * - * If "force" is set to true, the layout will be given that name, irregardless if - * the name already is being used. If "force" is false, a new unique name is created. - */ - void rename (const std::string &name, bool force = false); - - /** - * @brief Gets the name of the handle - */ - const std::string &name () const; - - /** - * @brief Gets the layout object that this handle points to - */ - db::Layout &layout () const; - - /** - * @brief Sets the file name associated with this handle - */ - void set_filename (const std::string &); - - /** - * @brief Gets the file name associated with this handle - */ - const std::string &filename () const; - - /** - * @brief Gets the technology attached to this layout - */ - const db::Technology *technology () const; - - /** - * @brief Gets the technology name for this layout - * - * An empty name indicates the default technology should be used. - */ - const std::string &tech_name () const; - - /** - * @brief Applies the given technology - * - * This will set the technology to the new one and send the apply event. - * This event is sent always, even if the technology did not change. - */ - void apply_technology (const std::string &tn); - - /** - * @brief Sets the technology name - * - * If there is no technology with that name, the default technology - * will be used. - */ - void set_tech_name (const std::string &tn); - - /** - * @brief Finds a layout object by name - * - * @param name The name under which to find the layout object - * @return 0, if there is no layout object with this name. Otherwise a pointer to its handle - */ - static LayoutHandle *find (const std::string &name); - - /** - * @brief Finds a handle by layout object - * - * @param layout The Layout object bound to the handle - * @return 0, if there is no layout object with this name. Otherwise a pointer to its handle - */ - static LayoutHandle *find_layout (const db::Layout *layout); - - /** - * @brief Gets the names of all registered layout objects - */ - static void get_names (std::vector &names); - - /** - * @brief Gets the reference count - */ - int get_ref_count () const - { - return m_ref_count; - } - - /** - * @brief Adds a reference to the layout handle - * - * This method will increment the reference counter of this handle - */ - void add_ref (); - - /** - * @brief Removes a reference to the layout handle - * - * This method will decrement the reference counter. Once the - * reference count reaches zero, the layout object and the - * handle is deleted. - * Upon initialization, the reference count is zero. - * Hint: it is generally not safe to access the handle after - * a remove_ref was issued. - */ - void remove_ref (); - - /** - * @brief Returns true, if the layout is "dirty" - * - * A layout is "dirty", if it needs to be saved. - * It is set dirty if one of the signal handlers is triggered. - */ - bool is_dirty () const - { - return m_dirty; - } - - /** - * @brief Loads the layout - * - * Load the layout from the file given in the constructor using the given layer map. - * The dirty flag is reset. - * - * @param lmap The layer map specifying the layers to read - * @param technology The technology to use for layer map and other settings or empty for "default technology" - * @return The new layer map (can differ from the input since layers may be created) - */ - db::LayerMap load (const db::LoadLayoutOptions &options, const std::string &technology); - - /** - * @brief Loads the layout - * - * Load the layout from the file given in the constructor. - * The dirty flag is reset. - * - * @return The new layer map - */ - db::LayerMap load (); - - /** - * @brief Saves the layout - * - * Save the layout under the given file name and with the given options. - * If update is true, this method updates the cell view's filename, title, save options and dirty flag. - */ - void save_as (const std::string &filename, tl::OutputStream::OutputStreamMode om, const db::SaveLayoutOptions &options, bool update = true, int keep_backups = 0); - - /** - * @brief Sets the save options and a flag indicating whether they are valid - * - * This method is mainly used by the session restore feature to restore the handle's state. - */ - void set_save_options (const db::SaveLayoutOptions &options, bool valid); - - /** - * @brief Gets the current saving options - * - * The saving options are set by the last save_as method call. - */ - const db::SaveLayoutOptions &save_options () const - { - return m_save_options; - } - - /** - * @brief Gets a flag indicating whether the save options are valid - * - * The save options are valid once the layout has been saved with specific - * options using "save_as" with the "update" options. - */ - bool save_options_valid () const - { - return m_save_options_valid; - } - - /** - * @brief Gets the current reader options - * - * The reader options are set by the load method call. - */ - const db::LoadLayoutOptions &load_options () const - { - return m_load_options; - } - - /** - * @brief An event indicating that the technology has changed - * This event is triggered if the technology was changed. - */ - tl::Event technology_changed_event; - - /** - * @brief An event indicating that a technology shall be applied - * This event is triggered to make the listeners apply a new technology - * to the layout. - */ - tl::Event apply_technology_event; - - /** - * @brief An event indicating that a technology shall be applied - * This event is triggered to make the listeners apply a new technology - * to the layout. This version supplies a sender pointer. - */ - tl::event apply_technology_with_sender_event; - - /** - * @brief An event handler for a layout change - * This handler is attached to a layout changed event and will invalidate the handle. - */ - void layout_changed (); - -#if defined(HAVE_QT) - /** - * @brief Gets the file system watcher that delivers events when one of the layouts gets updated - */ - static tl::FileSystemWatcher &file_watcher (); -#endif - - /** - * @brief Removes a file from the watcher - */ - static void remove_file_from_watcher (const std::string &path); - - /** - * @brief Adds a file to the watcher - */ - static void add_file_to_watcher (const std::string &path); - -private: - db::Layout *mp_layout; - int m_ref_count; - std::string m_name; - std::string m_filename; - bool m_dirty; - db::SaveLayoutOptions m_save_options; - bool m_save_options_valid; - db::LoadLayoutOptions m_load_options; - - void on_technology_changed (); - - static std::map ms_dict; -#if defined(HAVE_QT) - static tl::FileSystemWatcher *mp_file_watcher; -#endif -}; - -/** - * @brief A layout handle reference - * - * This class encapsulates a reference to a layout handle. - * The main purpose for this class is to automate the reference - * counting on the handle. - */ -class LAYBASIC_PUBLIC LayoutHandleRef -{ -public: - LayoutHandleRef (); - LayoutHandleRef (LayoutHandle *h); - LayoutHandleRef (const LayoutHandleRef &r); - ~LayoutHandleRef (); - - LayoutHandleRef &operator= (const LayoutHandleRef &r); - - bool operator== (const LayoutHandleRef &r) const; - - bool operator!= (const LayoutHandleRef &r) const - { - return !operator== (r); - } - - LayoutHandle *operator-> () const; - - LayoutHandle *get () const; - void set (LayoutHandle *h); - -private: - LayoutHandle *mp_handle; -}; - /** * @brief A "cell view" reference * diff --git a/src/laybasic/laybasic/layLayoutHandle.cc b/src/laybasic/laybasic/layLayoutHandle.cc new file mode 100644 index 000000000..a37ff3934 --- /dev/null +++ b/src/laybasic/laybasic/layLayoutHandle.cc @@ -0,0 +1,490 @@ + +/* + + KLayout Layout Viewer + Copyright (C) 2006-2026 Matthias Koefferlein + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + +*/ + +#include "layLayoutHandle.h" + +#include "dbWriter.h" +#include "dbReader.h" +#include "tlStaticObjects.h" + +namespace lay +{ + +// ------------------------------------------------------------- + +static std::string +filename_for_caption (const std::string &fn) +{ + const char *cp = fn.c_str (); + const char *cpp = cp + fn.size (); + while (cpp > cp && cpp [-1] != '\\' && cpp [-1] != '/') { + --cpp; + } + return cpp; +} + +// ------------------------------------------------------------- +// LayoutHandle implementation + + +LayoutHandle::LayoutHandle (db::Layout *layout, const std::string &filename) + : mp_layout (layout), + m_ref_count (0), + m_filename (filename), + m_dirty (false), + m_save_options_valid (false) +{ + // the layout gets held by the LayoutHandle object + layout->keep (); + + layout->technology_changed_event.add (this, &LayoutHandle::on_technology_changed); + + // layouts in the managed layouts space participate in spare proxy cleanup + layout->do_cleanup (true); + + add_file_to_watcher (m_filename); + + if (! m_filename.empty ()) { + rename (filename_for_caption (m_filename)); + } else { + + // create a unique new name + static int nn = 0; + + std::string n; + do { + n = tl::sprintf ("L%d", ++nn); + } while (find (n) != 0); + + m_name = n; + ms_dict.insert (std::make_pair (n, this)); + + } + + mp_layout->hier_changed_event.add (this, &LayoutHandle::layout_changed); + mp_layout->bboxes_changed_any_event.add (this, &LayoutHandle::layout_changed); + mp_layout->cell_name_changed_event.add (this, &LayoutHandle::layout_changed); + mp_layout->prop_ids_changed_event.add (this, &LayoutHandle::layout_changed); + mp_layout->layer_properties_changed_event.add (this, &LayoutHandle::layout_changed); + + if (tl::verbosity () >= 30) { + tl::info << "Created layout " << name (); + } +} + +LayoutHandle::~LayoutHandle () +{ + if (tl::verbosity () >= 30) { + tl::info << "Deleted layout " << name (); + } + + delete mp_layout; + mp_layout = 0; + + if (find (m_name) == this) { + ms_dict.erase (m_name); + } + + remove_file_from_watcher (filename ()); +} + +void +LayoutHandle::remove_file_from_watcher (const std::string &path) +{ +#if defined(HAVE_QT) + file_watcher ().remove_file (path); +#endif +} + +void +LayoutHandle::add_file_to_watcher (const std::string &path) +{ +#if defined(HAVE_QT) + file_watcher ().add_file (path); +#endif +} + +void +LayoutHandle::on_technology_changed () +{ + technology_changed_event (); +} + +void +LayoutHandle::layout_changed () +{ + m_dirty = true; +} + +void +LayoutHandle::rename (const std::string &name, bool force) +{ + std::string n (name); + + if (n != m_name) { + + if (force || find (n) == 0) { + ms_dict.erase (m_name); + if (tl::verbosity () >= 40) { + tl::info << "Renamed layout from " << m_name << " to " << n; + } + m_name = n; + ms_dict.insert (std::make_pair (n, this)); + return; + } + + // rename using suffix "[u]" where u is a unique index + int nn = 0; + int ns = 0x40000000; + do { + n = name + tl::sprintf ("[%d]", nn + ns); + if (find (n) != 0) { + nn += ns; + } + ns /= 2; + } while (ns > 0); + + n = name + tl::sprintf ("[%d]", nn + 1); + + if (tl::verbosity () >= 40) { + tl::info << "Renamed layout from " << m_name << " to " << n; + } + + if (find (m_name) == this) { + ms_dict.erase (m_name); + } + + m_name = n; + ms_dict.insert (std::make_pair (n, this)); + return; + + } +} + +db::Layout & +LayoutHandle::layout () const +{ + return *mp_layout; +} + +void +LayoutHandle::set_filename (const std::string &fn) +{ + remove_file_from_watcher (m_filename); + m_filename = fn; + add_file_to_watcher (m_filename); +} + +const std::string & +LayoutHandle::filename () const +{ + return m_filename; +} + +const std::string & +LayoutHandle::name () const +{ + return m_name; +} + +void +LayoutHandle::add_ref () +{ + if (tl::verbosity () >= 50) { + tl::info << "Add reference to " << m_name; + } + ++m_ref_count; +} + +void +LayoutHandle::remove_ref () +{ + if (tl::verbosity () >= 50) { + tl::info << "Remove reference from " << m_name; + } + if (--m_ref_count <= 0) { + // not nice, but hopefully we can do so: + delete this; + } +} + +const std::string & +LayoutHandle::tech_name () const +{ + static std::string s_empty; + return mp_layout ? mp_layout->technology_name () : s_empty; +} + +const db::Technology * +LayoutHandle::technology () const +{ + return mp_layout ? mp_layout->technology () : 0; +} + +void +LayoutHandle::apply_technology (const std::string &tn) +{ + set_tech_name (tn); + apply_technology_event (); + apply_technology_with_sender_event (this); +} + +void +LayoutHandle::set_tech_name (const std::string &tn) +{ + if (mp_layout && tn != tech_name ()) { + mp_layout->set_technology_name (tn); + } +} + +LayoutHandle * +LayoutHandle::find (const std::string &name) +{ + std::map ::const_iterator h = ms_dict.find (name); + if (h == ms_dict.end ()) { + return 0; + } else { + return h->second; + } +} + +LayoutHandle * +LayoutHandle::find_layout (const db::Layout *layout) +{ + for (auto h = ms_dict.begin (); h != ms_dict.end (); ++h) { + if (h->second->mp_layout == layout) { + return h->second; + } + } + return 0; +} + +void +LayoutHandle::get_names (std::vector &names) +{ + names.clear (); + names.reserve (ms_dict.size ()); + for (std::map ::const_iterator h = ms_dict.begin (); h != ms_dict.end (); ++h) { + names.push_back (h->first); + } +} + +void +LayoutHandle::set_save_options (const db::SaveLayoutOptions &options, bool valid) +{ + m_save_options = options; + m_save_options_valid = valid; +} + +void +LayoutHandle::save_as (const std::string &fn, tl::OutputStream::OutputStreamMode om, const db::SaveLayoutOptions &options, bool update, int keep_backups) +{ + if (update) { + + // We must not load with the original options after we have saved the file - hence we reset the + // reader options. + m_load_options = db::LoadLayoutOptions (); + + remove_file_from_watcher (filename ()); + + rename (filename_for_caption (fn)); + + // NOTE: we don't use set_filename since this would re-attach the file watcher + m_filename = fn; + + } + + try { + + { + // The write needs to be finished before the file watcher gets the new modification time + db::Writer writer (options); + tl::OutputStream stream (fn, om, false, keep_backups); + try { + writer.write (*mp_layout, stream); + } catch (...) { + stream.reject (); + throw; + } + } + + if (update) { + add_file_to_watcher (filename ()); + m_dirty = false; + } + + } catch (...) { + + if (update) { + add_file_to_watcher (filename ()); + } + + throw; + + } +} + +db::LayerMap +LayoutHandle::load (const db::LoadLayoutOptions &options, const std::string &technology) +{ + m_load_options = options; + m_save_options = db::SaveLayoutOptions (); + m_save_options_valid = false; + + set_tech_name (technology); + + tl::InputStream stream (m_filename); + db::Reader reader (stream); + db::LayerMap new_lmap = reader.read (layout (), m_load_options); + + // If there is no technology given and the reader reports one, use this one + if (technology.empty ()) { + std::string tech_from_reader = layout ().technology_name (); + if (! tech_from_reader.empty ()) { + set_tech_name (tech_from_reader); + } + } + + // Update the file's data: + remove_file_from_watcher (filename ()); + add_file_to_watcher (filename ()); + + m_save_options.set_format (reader.format ()); + m_dirty = false; + return new_lmap; +} + +db::LayerMap +LayoutHandle::load () +{ + m_load_options = db::LoadLayoutOptions (); + m_save_options = db::SaveLayoutOptions (); + m_save_options_valid = false; + + set_tech_name (std::string ()); + + tl::InputStream stream (m_filename); + db::Reader reader (stream); + db::LayerMap new_lmap = reader.read (layout (), m_load_options); + + // Attach the technology from the reader if it reports one + std::string tech_from_reader = layout ().technology_name (); + if (! tech_from_reader.empty ()) { + set_tech_name (tech_from_reader); + } + + // Update the file's data: + remove_file_from_watcher (filename ()); + add_file_to_watcher (filename ()); + + m_save_options.set_format (reader.format ()); + m_dirty = false; + return new_lmap; +} + +#if defined(HAVE_QT) +tl::FileSystemWatcher & +LayoutHandle::file_watcher () +{ + if (! mp_file_watcher) { + mp_file_watcher = new tl::FileSystemWatcher (); + tl::StaticObjects::reg (&mp_file_watcher); + } + return *mp_file_watcher; +} + +tl::FileSystemWatcher *LayoutHandle::mp_file_watcher = 0; +#endif + +std::map LayoutHandle::ms_dict; + +// ------------------------------------------------------------- +// LayoutHandleRef implementation + +LayoutHandleRef::LayoutHandleRef () + : mp_handle (0) +{ + // .. nothing yet .. +} + +LayoutHandleRef::LayoutHandleRef (LayoutHandle *h) + : mp_handle (0) +{ + set (h); +} + +LayoutHandleRef::LayoutHandleRef (const LayoutHandleRef &r) + : mp_handle (0) +{ + set (r.mp_handle); +} + +LayoutHandleRef::~LayoutHandleRef () +{ + set (0); +} + +bool +LayoutHandleRef::operator== (const LayoutHandleRef &r) const +{ + return mp_handle == r.mp_handle; +} + +LayoutHandleRef & +LayoutHandleRef::operator= (const LayoutHandleRef &r) +{ + if (&r != this) { + set (r.mp_handle); + } + return *this; +} + +void +LayoutHandleRef::set (LayoutHandle *h) +{ + if (mp_handle == h) { + return; + } + + if (mp_handle) { + mp_handle->remove_ref (); + mp_handle = 0; + } + mp_handle = h; + if (mp_handle) { + mp_handle->add_ref (); + } +} + +LayoutHandle * +LayoutHandleRef::operator-> () const +{ + return mp_handle; +} + +LayoutHandle * +LayoutHandleRef::get () const +{ + return mp_handle; +} + +} diff --git a/src/laybasic/laybasic/layLayoutHandle.h b/src/laybasic/laybasic/layLayoutHandle.h new file mode 100644 index 000000000..f2a927fe5 --- /dev/null +++ b/src/laybasic/laybasic/layLayoutHandle.h @@ -0,0 +1,356 @@ + +/* + + KLayout Layout Viewer + Copyright (C) 2006-2026 Matthias Koefferlein + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + +*/ + +#ifndef HDR_layLayoutViewHandle +#define HDR_layLayoutViewHandle + +#include "laybasicCommon.h" + +#include "dbLayout.h" +#include "dbStream.h" + +#if defined(HAVE_QT) +# include "tlFileSystemWatcher.h" +#endif + +#include +#include +#include + +namespace lay +{ + +class LayoutViewBase; + +/** + * @brief A layout handle + * + * This object controls a layout object. A layout object can be + * identified through a name. Additionally, a reference count + * is maintained that controls when the layout object is deleted. + */ +class LAYBASIC_PUBLIC LayoutHandle + : public tl::Object +{ +public: + /** + * @brief Creates a layout handle to the given object + * + * This constructor creates a new handle to the given + * layout object. The handle takes over the ownership over the + * layout object. + * The initial reference count is zero (see remove_ref). + * The filename is a string that is supposed to identify + * the layout further. It can be retrieved with the filename + * method. + */ + LayoutHandle (db::Layout *layout, const std::string &filename); + + /** + * @brief Destructor + * + * The destructor will delete the layout object that + * was associated with this handle. + */ + ~LayoutHandle (); + + /** + * @brief Renames the layout object + * + * If "force" is set to true, the layout will be given that name, irregardless if + * the name already is being used. If "force" is false, a new unique name is created. + */ + void rename (const std::string &name, bool force = false); + + /** + * @brief Gets the name of the handle + */ + const std::string &name () const; + + /** + * @brief Gets the layout object that this handle points to + */ + db::Layout &layout () const; + + /** + * @brief Sets the file name associated with this handle + */ + void set_filename (const std::string &); + + /** + * @brief Gets the file name associated with this handle + */ + const std::string &filename () const; + + /** + * @brief Gets the technology attached to this layout + */ + const db::Technology *technology () const; + + /** + * @brief Gets the technology name for this layout + * + * An empty name indicates the default technology should be used. + */ + const std::string &tech_name () const; + + /** + * @brief Applies the given technology + * + * This will set the technology to the new one and send the apply event. + * This event is sent always, even if the technology did not change. + */ + void apply_technology (const std::string &tn); + + /** + * @brief Sets the technology name + * + * If there is no technology with that name, the default technology + * will be used. + */ + void set_tech_name (const std::string &tn); + + /** + * @brief Finds a layout object by name + * + * @param name The name under which to find the layout object + * @return 0, if there is no layout object with this name. Otherwise a pointer to its handle + */ + static LayoutHandle *find (const std::string &name); + + /** + * @brief Finds a handle by layout object + * + * @param layout The Layout object bound to the handle + * @return 0, if there is no layout object with this name. Otherwise a pointer to its handle + */ + static LayoutHandle *find_layout (const db::Layout *layout); + + /** + * @brief Gets the names of all registered layout objects + */ + static void get_names (std::vector &names); + + /** + * @brief Gets the reference count + */ + int get_ref_count () const + { + return m_ref_count; + } + + /** + * @brief Adds a reference to the layout handle + * + * This method will increment the reference counter of this handle + */ + void add_ref (); + + /** + * @brief Removes a reference to the layout handle + * + * This method will decrement the reference counter. Once the + * reference count reaches zero, the layout object and the + * handle is deleted. + * Upon initialization, the reference count is zero. + * Hint: it is generally not safe to access the handle after + * a remove_ref was issued. + */ + void remove_ref (); + + /** + * @brief Returns true, if the layout is "dirty" + * + * A layout is "dirty", if it needs to be saved. + * It is set dirty if one of the signal handlers is triggered. + */ + bool is_dirty () const + { + return m_dirty; + } + + /** + * @brief Loads the layout + * + * Load the layout from the file given in the constructor using the given layer map. + * The dirty flag is reset. + * + * @param lmap The layer map specifying the layers to read + * @param technology The technology to use for layer map and other settings or empty for "default technology" + * @return The new layer map (can differ from the input since layers may be created) + */ + db::LayerMap load (const db::LoadLayoutOptions &options, const std::string &technology); + + /** + * @brief Loads the layout + * + * Load the layout from the file given in the constructor. + * The dirty flag is reset. + * + * @return The new layer map + */ + db::LayerMap load (); + + /** + * @brief Saves the layout + * + * Save the layout under the given file name and with the given options. + * If update is true, this method updates the cell view's filename, title, save options and dirty flag. + */ + void save_as (const std::string &filename, tl::OutputStream::OutputStreamMode om, const db::SaveLayoutOptions &options, bool update = true, int keep_backups = 0); + + /** + * @brief Sets the save options and a flag indicating whether they are valid + * + * This method is mainly used by the session restore feature to restore the handle's state. + */ + void set_save_options (const db::SaveLayoutOptions &options, bool valid); + + /** + * @brief Gets the current saving options + * + * The saving options are set by the last save_as method call. + */ + const db::SaveLayoutOptions &save_options () const + { + return m_save_options; + } + + /** + * @brief Gets a flag indicating whether the save options are valid + * + * The save options are valid once the layout has been saved with specific + * options using "save_as" with the "update" options. + */ + bool save_options_valid () const + { + return m_save_options_valid; + } + + /** + * @brief Gets the current reader options + * + * The reader options are set by the load method call. + */ + const db::LoadLayoutOptions &load_options () const + { + return m_load_options; + } + + /** + * @brief An event indicating that the technology has changed + * This event is triggered if the technology was changed. + */ + tl::Event technology_changed_event; + + /** + * @brief An event indicating that a technology shall be applied + * This event is triggered to make the listeners apply a new technology + * to the layout. + */ + tl::Event apply_technology_event; + + /** + * @brief An event indicating that a technology shall be applied + * This event is triggered to make the listeners apply a new technology + * to the layout. This version supplies a sender pointer. + */ + tl::event apply_technology_with_sender_event; + + /** + * @brief An event handler for a layout change + * This handler is attached to a layout changed event and will invalidate the handle. + */ + void layout_changed (); + +#if defined(HAVE_QT) + /** + * @brief Gets the file system watcher that delivers events when one of the layouts gets updated + */ + static tl::FileSystemWatcher &file_watcher (); +#endif + + /** + * @brief Removes a file from the watcher + */ + static void remove_file_from_watcher (const std::string &path); + + /** + * @brief Adds a file to the watcher + */ + static void add_file_to_watcher (const std::string &path); + +private: + db::Layout *mp_layout; + int m_ref_count; + std::string m_name; + std::string m_filename; + bool m_dirty; + db::SaveLayoutOptions m_save_options; + bool m_save_options_valid; + db::LoadLayoutOptions m_load_options; + + void on_technology_changed (); + + static std::map ms_dict; +#if defined(HAVE_QT) + static tl::FileSystemWatcher *mp_file_watcher; +#endif +}; + +/** + * @brief A layout handle reference + * + * This class encapsulates a reference to a layout handle. + * The main purpose for this class is to automate the reference + * counting on the handle. + */ +class LAYBASIC_PUBLIC LayoutHandleRef +{ +public: + LayoutHandleRef (); + LayoutHandleRef (LayoutHandle *h); + LayoutHandleRef (const LayoutHandleRef &r); + ~LayoutHandleRef (); + + LayoutHandleRef &operator= (const LayoutHandleRef &r); + + bool operator== (const LayoutHandleRef &r) const; + + bool operator!= (const LayoutHandleRef &r) const + { + return !operator== (r); + } + + LayoutHandle *operator-> () const; + + LayoutHandle *get () const; + void set (LayoutHandle *h); + +private: + LayoutHandle *mp_handle; +}; + +} + +#endif + diff --git a/src/laybasic/laybasic/laybasic.pro b/src/laybasic/laybasic/laybasic.pro index bb15d949a..a7bec543b 100644 --- a/src/laybasic/laybasic/laybasic.pro +++ b/src/laybasic/laybasic/laybasic.pro @@ -28,8 +28,10 @@ DEFINES += MAKE_LAYBASIC_LIBRARY SOURCES += \ gsiDeclLayAdded.cc \ + gsiDeclLayCellView.cc \ gsiDeclLayLayers.cc \ gsiDeclLayDispatcher.cc \ + gsiDeclLayLayoutHandle.cc \ gsiDeclLayLayoutViewBase.cc \ gsiDeclLayMarker.cc \ gsiDeclLayMenu.cc \ @@ -39,6 +41,7 @@ SOURCES += \ layAbstractMenu.cc \ layEditorOptionsPage.cc \ layEditorUtils.cc \ + layLayoutHandle.cc \ layLayoutViewConfig.cc \ layMargin.cc \ laybasicForceLink.cc \ @@ -93,6 +96,7 @@ SOURCES += \ HEADERS += \ layEditorOptionsPage.h \ layEditorUtils.h \ + layLayoutHandle.h \ layMargin.h \ laybasicConfig.h \ laybasicForceLink.h \ diff --git a/testdata/ruby/layLayoutView.rb b/testdata/ruby/layLayoutView.rb index b60997827..e6aa49093 100644 --- a/testdata/ruby/layLayoutView.rb +++ b/testdata/ruby/layLayoutView.rb @@ -622,6 +622,109 @@ class LAYLayoutView_TestClass < TestBase end + # layout handles + def test_20 + + name = "LayoutViewTest::test_20" + + hh = RBA::LayoutHandle.find("DOESNOTEXIST???") + assert_equal(hh == nil, true) + + h = RBA::LayoutHandle::new + assert_equal(h.is_valid?, false) + + lv = RBA::LayoutView::new(true) + + ly = RBA::Layout::new + hh = RBA::LayoutHandle.find(ly) # not yet + assert_equal(hh == nil, true) + + ly.create_cell("TOPCELL") + + h = RBA::LayoutHandle::new(ly) + assert_equal(h.is_valid?, true) + h.name = name + assert_equal(h.name, name) + assert_equal(RBA::LayoutHandle.names.member?(name), true) + hh = RBA::LayoutHandle.find(name) + assert_equal(hh.name, name) + hh._destroy + hh = RBA::LayoutHandle.find(ly) + assert_equal(hh.name, name) + hh._destroy + assert_equal(h.filename, "") + assert_equal(h.ref_count, 1) + assert_equal(h.is_dirty?, false) + assert_equal(h.layout.top_cell.name, "TOPCELL") + + # smoke test + assert_equal(h.save_options, nil) + assert_equal(h.load_options.class, RBA::LoadLayoutOptions) + + l1 = ly.layer(1, 0) + ly.top_cell.shapes(l1).insert(RBA::Box::new(0, 0, 1000, 2000)) + assert_equal(h.is_dirty?, true) + + hh = RBA::LayoutHandle::find(ly) + assert_equal(hh.name, name) + assert_equal(hh.layout.top_cell.name, "TOPCELL") + hh._destroy + + lv.show_layout(h, true) + assert_equal(h.ref_count, 2) + + hh = RBA::LayoutHandle::find(name) + assert_equal(hh.name, name) + assert_equal(hh.layout.top_cell.name, "TOPCELL") + hh._destroy + + cv = lv.cellview(0) + hh = cv.layout_handle + assert_equal(hh.name, name) + assert_equal(hh.layout.top_cell.name, "TOPCELL") + hh._destroy + assert_equal(RBA::LayoutHandle.names.member?(name), true) + + lv.erase_cellview(0) + + # still there? + assert_equal(h.layout.top_cell.name, "TOPCELL") + + assert_equal(h.ref_count, 1) + h._destroy + assert_equal(RBA::LayoutHandle.names.member?(name), false) + + end + + # layout handles + def test_21 + + name = "LayoutViewTest::test_21" + + h = RBA::LayoutHandle::new(RBA::Layout::new) + h.name = name + assert_equal(h.is_valid?, true) + assert_equal(h.filename, "") + + h.layout.create_cell("TOP_CELL") + assert_equal(h.is_dirty?, true) + + tmp = File.join($ut_testtmp, "layout_handles.gds") + h.save_as(tmp, RBA::SaveLayoutOptions::new) + assert_equal(h.filename, tmp) + assert_equal(h.save_options.class, RBA::SaveLayoutOptions) + assert_equal(h.is_dirty?, false) + + h._destroy + + h = RBA::LayoutHandle::new(tmp, RBA::LoadLayoutOptions::new) + assert_equal(h.filename, tmp) + assert_equal(h.layout.top_cell.name, "TOP_CELL") + + h._destroy + + end + end load("test_epilogue.rb") From c6b72b7e07483530c69e78658399fc76abe5c925 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 1 Mar 2026 21:11:11 +0000 Subject: [PATCH 025/212] Bump actions/download-artifact from 7 to 8 Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 7 to 8. - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v7...v8) --- updated-dependencies: - dependency-name: actions/download-artifact dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f13c7b30a..84d7bb5d0 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -122,7 +122,7 @@ jobs: needs: [build, make_sdist] runs-on: ubuntu-latest steps: - - uses: actions/download-artifact@v7 + - uses: actions/download-artifact@v8 with: merge-multiple: true path: dist @@ -139,7 +139,7 @@ jobs: runs-on: ubuntu-latest if: github.event_name == 'release' && github.event.action == 'published' steps: - - uses: actions/download-artifact@v7 + - uses: actions/download-artifact@v8 with: merge-multiple: true path: dist From bb011eaf984b398ec6220a608cfd8eb3d4d6e0aa Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 1 Mar 2026 21:11:15 +0000 Subject: [PATCH 026/212] Bump actions/upload-artifact from 6 to 7 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 6 to 7. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v6...v7) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f13c7b30a..1ef38f912 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -98,7 +98,7 @@ jobs: mv ./wheelhouse/.ccache $HOST_CCACHE_DIR ls -la $HOST_CCACHE_DIR ccache -s - - uses: actions/upload-artifact@v6 + - uses: actions/upload-artifact@v7 with: name: artifact-${{ matrix.os }}-${{ matrix.cibw_arch }}-${{ strategy.job-index }} path: ./wheelhouse/*.whl @@ -113,7 +113,7 @@ jobs: - name: Build SDist run: pipx run build --sdist - - uses: actions/upload-artifact@v6 + - uses: actions/upload-artifact@v7 with: name: artifact-sdist path: dist/*.tar.gz From 001deab767082582095de74145e281081073a95f Mon Sep 17 00:00:00 2001 From: Matthias Koefferlein Date: Tue, 3 Mar 2026 23:20:43 +0100 Subject: [PATCH 027/212] Fixing Python module builds --- src/tl/tl/tlThreads.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/tl/tl/tlThreads.cc b/src/tl/tl/tlThreads.cc index 19ff4fa77..f1000d8c0 100644 --- a/src/tl/tl/tlThreads.cc +++ b/src/tl/tl/tlThreads.cc @@ -29,7 +29,7 @@ #include -#if defined(HAVE_PTHREADS) +#if !defined(HAVE_QT) || defined(HAVE_PTHREADS) #define _TIMESPEC_DEFINED // avoids errors with pthread-win and MSVC2017 #include @@ -233,7 +233,7 @@ void WaitCondition::wakeOne () // ------------------------------------------------------------------------------- // Thread implementation -#if !(defined(HAVE_QT) && !defined(HAVE_PTHREADS)) +#if !defined(HAVE_QT) || defined(HAVE_PTHREADS) class ThreadPrivateData { From 383591b1fa5cc6d58930aad1dd1c937bb93ea258 Mon Sep 17 00:00:00 2001 From: Matthias Koefferlein Date: Wed, 4 Mar 2026 18:59:08 +0100 Subject: [PATCH 028/212] Preparations for 0.30.7 release --- Changelog | 18 ++++++++++++++++++ Changelog.Debian | 7 +++++++ version.sh | 4 ++-- 3 files changed, 27 insertions(+), 2 deletions(-) diff --git a/Changelog b/Changelog index 3debf64f3..493e3b21e 100644 --- a/Changelog +++ b/Changelog @@ -1,3 +1,21 @@ +0.30.7 (2026-03-05): +* Enhancement: %GITHUB%/issues/2248 Switch layouts but without losing the handle +* Bugfix: %GITHUB%/issues/2273 Potential use-after-free bug due to Ruby GC +* Bugfix: %GITHUB%/issues/2277 Poor netlister performance in some cases +* Enhancement: %GITHUB%/issues/2278 Option to hide markers frames +* Bugfix: %GITHUB%/issues/2284 klayoutrc parse issue silently replaces config file +* Bugfix: %GITHUB%/issues/2286 CLI arguments, '--help' / '--version' should be implemented +* Enhancement: ReportDatabase#merge - a method to merge two report databases +* Bugfix: double clicking an edge in partial mode opened the properties dialog, not setting a point +* Bugfix: Python did not support downcasting of PolygonWithProperties to Polygon on Shapes#polygon for example +* Bugfix: OASIS reader was not able to read S_GDS_PROPERTY from file level or under forward reference conditions +* Enhancement: Adding an option '-of|--format' to strmxor and strmclip to specify the output format instead of taking it from the suffix +* Bugfix: 'oasis_read_all_options' as always on in buddy tools +* Bugfix: avoid a crash on application exit when using objects for user property values or names +* Bugfix: Fixing a small glitch: drawing into a ghost cell is possible, but did not turn off the ghost cell flag +* Bugfix: Fixing a potential segfault during layout painting due to a race condition (rare but happened) +* Enhancement: Performance improvement for hierarchical processor - better parallelization in some cases + 0.30.6 (2026-02-07): * Bugfix: %GITHUB%/issues/2210 LayoutView::create_measure_ruler() creates incorrect rulers * Enhancement: %GITHUB%/issues/2214 Take selection modifer into account on release rather than on click diff --git a/Changelog.Debian b/Changelog.Debian index fab33ed72..3cb5cee9f 100644 --- a/Changelog.Debian +++ b/Changelog.Debian @@ -1,3 +1,10 @@ +klayout (0.30.7-1) unstable; urgency=low + + * New features and bugfixes + - See changelog + + -- Matthias Köfferlein Wed, 04 Mar 2026 18:58:50 +0100 + klayout (0.30.6-1) unstable; urgency=low * New features and bugfixes diff --git a/version.sh b/version.sh index 35ade8a69..a0d375e78 100644 --- a/version.sh +++ b/version.sh @@ -2,10 +2,10 @@ # This script is sourced to define the main version parameters # The main version -KLAYOUT_VERSION="0.30.6" +KLAYOUT_VERSION="0.30.7" # The version used for PyPI (don't use variables here!) -KLAYOUT_PYPI_VERSION="0.30.6" +KLAYOUT_PYPI_VERSION="0.30.7" # The build date KLAYOUT_VERSION_DATE=$(date "+%Y-%m-%d") From a80d181cf1d4925fc329666181496501d8fd9d4b Mon Sep 17 00:00:00 2001 From: Matthias Koefferlein Date: Thu, 5 Mar 2026 21:16:17 +0100 Subject: [PATCH 029/212] Mutex got faster on i386, so threaded worker tests need to be adjusted --- src/tl/unit_tests/tlThreadedWorkersTests.cc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/tl/unit_tests/tlThreadedWorkersTests.cc b/src/tl/unit_tests/tlThreadedWorkersTests.cc index 50b03219d..5eaff3d1d 100644 --- a/src/tl/unit_tests/tlThreadedWorkersTests.cc +++ b/src/tl/unit_tests/tlThreadedWorkersTests.cc @@ -197,7 +197,7 @@ TEST(4) s_sum[0].reset (); - for (int i = 0; i < 10000; ++i) { + for (int i = 0; i < 100000; ++i) { job.schedule (new MyTask (100000)); } @@ -205,7 +205,7 @@ TEST(4) bool status = job.wait (100); EXPECT_EQ (status, false /*timed out*/); - EXPECT_EQ (s_sum[0].sum () < 10000000, true); + EXPECT_EQ (s_sum[0].sum () < 100000000, true); } TEST(5) @@ -214,7 +214,7 @@ TEST(5) s_sum[0].reset (); - for (int i = 0; i < 10000; ++i) { + for (int i = 0; i < 100000; ++i) { job.schedule (new MyTask (100000)); } @@ -223,7 +223,7 @@ TEST(5) tl::usleep (100000); job.terminate (); - EXPECT_EQ (s_sum[0].sum () < 10000000, true); + EXPECT_EQ (s_sum[0].sum () < 100000000, true); } TEST(10) From f8646851e14579f9be33469f1502e71c3130f5b8 Mon Sep 17 00:00:00 2001 From: Matthias Koefferlein Date: Fri, 6 Mar 2026 15:46:16 +0100 Subject: [PATCH 030/212] Updating doc and pyi files --- src/doc/doc/about/drc_ref.xml | 2 +- src/doc/doc/about/drc_ref_drc.xml | 2 +- src/doc/doc/about/drc_ref_global.xml | 4 +- src/doc/doc/about/drc_ref_layer.xml | 2 +- src/doc/doc/about/drc_ref_netter.xml | 2 +- src/doc/doc/about/drc_ref_source.xml | 2 +- src/doc/doc/about/lvs_ref.xml | 2 +- src/doc/doc/about/lvs_ref_global.xml | 2 +- src/doc/doc/about/lvs_ref_netter.xml | 2 +- src/pymod/distutils_src/klayout/dbcore.pyi | 271 ++---------------- src/pymod/distutils_src/klayout/laycore.pyi | 300 ++++++++++++++++++-- src/pymod/distutils_src/klayout/rdbcore.pyi | 11 + 12 files changed, 333 insertions(+), 269 deletions(-) diff --git a/src/doc/doc/about/drc_ref.xml b/src/doc/doc/about/drc_ref.xml index 203941a1d..3974cf751 100644 --- a/src/doc/doc/about/drc_ref.xml +++ b/src/doc/doc/about/drc_ref.xml @@ -1,7 +1,7 @@ - + diff --git a/src/doc/doc/about/drc_ref_drc.xml b/src/doc/doc/about/drc_ref_drc.xml index a4ad2a239..78e0e1744 100644 --- a/src/doc/doc/about/drc_ref_drc.xml +++ b/src/doc/doc/about/drc_ref_drc.xml @@ -1,7 +1,7 @@ - + diff --git a/src/doc/doc/about/drc_ref_global.xml b/src/doc/doc/about/drc_ref_global.xml index 735374f88..20955b730 100644 --- a/src/doc/doc/about/drc_ref_global.xml +++ b/src/doc/doc/about/drc_ref_global.xml @@ -1,7 +1,7 @@ - + @@ -1530,7 +1530,7 @@ is called on. Turns profiling on or off (default). In profiling mode, the system will collect statistics about rules executed, their execution time and memory information. The argument specifies how many operations to -print at the end of the run. Without an argument, all operations are +print at the end of the run. Without an argument or when passing "true", all operations are printed. Passing "false" for the argument will disable profiling. This is the default.

diff --git a/src/doc/doc/about/drc_ref_layer.xml b/src/doc/doc/about/drc_ref_layer.xml index 49585ef12..0e485e947 100644 --- a/src/doc/doc/about/drc_ref_layer.xml +++ b/src/doc/doc/about/drc_ref_layer.xml @@ -1,7 +1,7 @@ - + diff --git a/src/doc/doc/about/drc_ref_netter.xml b/src/doc/doc/about/drc_ref_netter.xml index afee536b7..0af5788cd 100644 --- a/src/doc/doc/about/drc_ref_netter.xml +++ b/src/doc/doc/about/drc_ref_netter.xml @@ -1,7 +1,7 @@ - + diff --git a/src/doc/doc/about/drc_ref_source.xml b/src/doc/doc/about/drc_ref_source.xml index a746917e3..a3fea2b89 100644 --- a/src/doc/doc/about/drc_ref_source.xml +++ b/src/doc/doc/about/drc_ref_source.xml @@ -1,7 +1,7 @@ - + diff --git a/src/doc/doc/about/lvs_ref.xml b/src/doc/doc/about/lvs_ref.xml index 58168f012..842f21820 100644 --- a/src/doc/doc/about/lvs_ref.xml +++ b/src/doc/doc/about/lvs_ref.xml @@ -1,7 +1,7 @@ - + diff --git a/src/doc/doc/about/lvs_ref_global.xml b/src/doc/doc/about/lvs_ref_global.xml index 494ef2f6e..d1121526c 100644 --- a/src/doc/doc/about/lvs_ref_global.xml +++ b/src/doc/doc/about/lvs_ref_global.xml @@ -1,7 +1,7 @@ - + diff --git a/src/doc/doc/about/lvs_ref_netter.xml b/src/doc/doc/about/lvs_ref_netter.xml index 2e1dbd89e..be3e6e538 100644 --- a/src/doc/doc/about/lvs_ref_netter.xml +++ b/src/doc/doc/about/lvs_ref_netter.xml @@ -1,7 +1,7 @@ - + diff --git a/src/pymod/distutils_src/klayout/dbcore.pyi b/src/pymod/distutils_src/klayout/dbcore.pyi index 9c3e0a4b8..ac17d4f82 100644 --- a/src/pymod/distutils_src/klayout/dbcore.pyi +++ b/src/pymod/distutils_src/klayout/dbcore.pyi @@ -1082,6 +1082,8 @@ class Cell: To satisfy the references inside the layout, a dummy cell is created in this case which has the "ghost cell" flag set to true. + A ghost cell is a real ghost cell only if the cell is empty. In that case, it is written as a ghost cell to GDS files for example. If a cell is not empty, this flag is ignored. + This method has been introduced in version 0.20. Setter: @@ -2207,6 +2209,8 @@ class Cell: To satisfy the references inside the layout, a dummy cell is created in this case which has the "ghost cell" flag set to true. + A ghost cell is a real ghost cell only if the cell is empty. In that case, it is written as a ghost cell to GDS files for example. If a cell is not empty, this flag is ignored. + This method has been introduced in version 0.20. """ ... @@ -15691,7 +15695,8 @@ class DText: Setter: @brief Sets the horizontal alignment - This is the version accepting integer values. It's provided for backward compatibility. + This property specifies how the text is aligned relative to the anchor point. + This property has been introduced in version 0.22 and extended to enums in 0.28. """ size: float r""" @@ -35865,11 +35870,11 @@ class Instance: Starting with version 0.25 the displacement is of vector type. Setter: - @brief Sets the displacement vector for the 'b' axis + @brief Sets the displacement vector for the 'b' axis in micrometer units - If the instance was not an array instance before it is made one. + Like \b= with an integer displacement, this method will set the displacement vector but it accepts a vector in micrometer units that is of \DVector type. The vector will be translated to database units internally. - This method has been introduced in version 0.23. Starting with version 0.25 the displacement is of vector type. + This method has been introduced in version 0.25. """ cell: Cell r""" @@ -35912,9 +35917,10 @@ class Instance: @brief Gets the complex transformation of the instance or the first instance in the array This method is always valid compared to \trans, since simple transformations can be expressed as complex transformations as well. Setter: - @brief Sets the complex transformation of the instance or the first instance in the array + @brief Sets the complex transformation of the instance or the first instance in the array (in micrometer units) + This method sets the transformation the same way as \cplx_trans=, but the displacement of this transformation is given in micrometer units. It is internally translated into database units. - This method has been introduced in version 0.23. + This method has been introduced in version 0.25. """ da: DVector r""" @@ -45024,204 +45030,6 @@ class LoadLayoutOptions: This method has been added in version 0.30.2. """ - mebes_boundary_datatype: int - r""" - Getter: - @brief Gets the datatype number of the boundary layer to produce - See \mebes_produce_boundary= for a description of this attribute. - - This property has been added in version 0.23.10. - - Setter: - @brief Sets the datatype number of the boundary layer to produce - See \mebes_produce_boundary= for a description of this attribute. - - This property has been added in version 0.23.10. - """ - mebes_boundary_layer: int - r""" - Getter: - @brief Gets the layer number of the boundary layer to produce - See \mebes_produce_boundary= for a description of this attribute. - - This property has been added in version 0.23.10. - - Setter: - @brief Sets the layer number of the boundary layer to produce - See \mebes_produce_boundary= for a description of this attribute. - - This property has been added in version 0.23.10. - """ - mebes_boundary_name: str - r""" - Getter: - @brief Gets the name of the boundary layer to produce - See \mebes_produce_boundary= for a description of this attribute. - - This property has been added in version 0.23.10. - - Setter: - @brief Sets the name of the boundary layer to produce - See \mebes_produce_boundary= for a description of this attribute. - - This property has been added in version 0.23.10. - """ - mebes_create_other_layers: bool - r""" - Getter: - @brief Gets a value indicating whether other layers shall be created - @return True, if other layers will be created. - This attribute acts together with a layer map (see \mebes_layer_map=). Layers not listed in this map are created as well when \mebes_create_other_layers? is true. Otherwise they are ignored. - - This method has been added in version 0.25 and replaces the respective global option in \LoadLayoutOptions in a format-specific fashion. - Setter: - @brief Specifies whether other layers shall be created - @param create True, if other layers will be created. - See \mebes_create_other_layers? for a description of this attribute. - - This method has been added in version 0.25 and replaces the respective global option in \LoadLayoutOptions in a format-specific fashion. - """ - mebes_data_datatype: int - r""" - Getter: - @brief Gets the datatype number of the data layer to produce - - This property has been added in version 0.23.10. - - Setter: - @brief Sets the datatype number of the data layer to produce - - This property has been added in version 0.23.10. - """ - mebes_data_layer: int - r""" - Getter: - @brief Gets the layer number of the data layer to produce - - This property has been added in version 0.23.10. - - Setter: - @brief Sets the layer number of the data layer to produce - - This property has been added in version 0.23.10. - """ - mebes_data_name: str - r""" - Getter: - @brief Gets the name of the data layer to produce - - This property has been added in version 0.23.10. - - Setter: - @brief Sets the name of the data layer to produce - - This property has been added in version 0.23.10. - """ - mebes_invert: bool - r""" - Getter: - @brief Gets a value indicating whether to invert the MEBES pattern - If this property is set to true, the pattern will be inverted. - - This property has been added in version 0.22. - - Setter: - @brief Specify whether to invert the MEBES pattern - If this property is set to true, the pattern will be inverted. - - This property has been added in version 0.22. - """ - mebes_layer_map: LayerMap - r""" - Getter: - @brief Gets the layer map - @return The layer map. - - This method has been added in version 0.25 and replaces the respective global option in \LoadLayoutOptions in a format-specific fashion. - Setter: - @brief Sets the layer map - This sets a layer mapping for the reader. Unlike \mebes_set_layer_map, the 'create_other_layers' flag is not changed. - @param map The layer map to set. - - This convenience method has been added in version 0.26.2. - """ - mebes_num_shapes_per_cell: int - r""" - Getter: - @brief Gets the number of stripes collected per cell - See \mebes_num_stripes_per_cell= for details about this property. - - This property has been added in version 0.24.5. - - Setter: - @brief Specify the number of stripes collected per cell - See \mebes_num_stripes_per_cell= for details about this property. - - This property has been added in version 0.24.5. - """ - mebes_num_stripes_per_cell: int - r""" - Getter: - @brief Gets the number of stripes collected per cell - See \mebes_num_stripes_per_cell= for details about this property. - - This property has been added in version 0.23.10. - - Setter: - @brief Specify the number of stripes collected per cell - This property specifies how many stripes will be collected into one cell. - A smaller value means less but bigger cells. The default value is 64. - New cells will be formed whenever more than this number of stripes has been read - or a new segment is started and the number of shapes given by \mebes_num_shapes_per_cell - is exceeded. - - This property has been added in version 0.23.10. - """ - mebes_produce_boundary: bool - r""" - Getter: - @brief Gets a value indicating whether a boundary layer will be produced - See \mebes_produce_boundary= for details about this property. - - This property has been added in version 0.23.10. - - Setter: - @brief Specify whether to produce a boundary layer - If this property is set to true, the pattern boundary will be written to the layer and datatype specified with \mebes_boundary_name, \mebes_boundary_layer and \mebes_boundary_datatype. - By default, the boundary layer is produced. - - This property has been added in version 0.23.10. - """ - mebes_subresolution: bool - r""" - Getter: - @brief Gets a value indicating whether to invert the MEBES pattern - See \subresolution= for details about this property. - - This property has been added in version 0.23.10. - - Setter: - @brief Specify whether subresolution trapezoids are supported - If this property is set to true, subresolution trapezoid vertices are supported. - In order to implement support, the reader will create magnified instances with a magnification of 1/16. - By default this property is enabled. - - This property has been added in version 0.23.10. - """ - mebes_top_cell_index: int - r""" - Getter: - @brief Gets the cell index for the top cell to use - See \mebes_top_cell_index= for a description of this property. - - This property has been added in version 0.23.10. - - Setter: - @brief Specify the cell index for the top cell to use - If this property is set to a valid cell index, the MEBES reader will put the subcells and shapes into this cell. - - This property has been added in version 0.23.10. - """ oasis_expect_strict_mode: int r""" Getter: @@ -45229,7 +45037,7 @@ class LoadLayoutOptions: Setter: @hide """ - oasis_read_all_properties: int + oasis_read_all_properties: bool r""" Getter: @hide @@ -45483,26 +45291,6 @@ class LoadLayoutOptions: This method has been added in version 0.30.2. """ ... - def mebes_select_all_layers(self) -> None: - r""" - @brief Selects all layers and disables the layer map - - This disables any layer map and enables reading of all layers. - New layers will be created when required. - - This method has been added in version 0.25 and replaces the respective global option in \LoadLayoutOptions in a format-specific fashion. - """ - ... - def mebes_set_layer_map(self, map: LayerMap, create_other_layers: bool) -> None: - r""" - @brief Sets the layer map - This sets a layer mapping for the reader. The layer map allows selection and translation of the original layers. - @param map The layer map to set. - @param create_other_layers The flag indicating whether other layers will be created as well. Set to false to read only the layers in the layer map. - - This method has been added in version 0.25 and replaces the respective global option in \LoadLayoutOptions in a format-specific fashion. - """ - ... def select_all_layers(self) -> None: r""" @brief Selects all layers and disables the layer map @@ -65327,8 +65115,9 @@ class Shape: This method has been introduced in version 0.28. Setter: - @brief Replaces the shape by the given point (in micrometer units) - This method replaces the shape by the given point, like \point= with a \Point argument does. This version translates the point from micrometer units to database units internally. + @brief Replaces the shape by the given point + This method replaces the shape by the given point. This method can only be called for editable layouts. It does not change the user properties of the shape. + Calling this method will invalidate any iterators. It should not be called inside a loop iterating over shapes. This method has been introduced in version 0.28. """ @@ -65398,11 +65187,10 @@ class Shape: Starting with version 0.23, this method returns nil, if the shape does not represent a text. Setter: - @brief Replaces the shape by the given text object - This method replaces the shape by the given text object. This method can only be called for editable layouts. It does not change the user properties of the shape. - Calling this method will invalidate any iterators. It should not be called inside a loop iterating over shapes. + @brief Replaces the shape by the given text (in micrometer units) + This method replaces the shape by the given text, like \text= with a \Text argument does. This version translates the text from micrometer units to database units internally. - This method has been introduced in version 0.22. + This method has been introduced in version 0.25. """ text_dpos: DVector r""" @@ -69618,16 +69406,16 @@ class SubCircuit(NetlistObject): @overload def circuit_ref(self) -> Circuit: r""" - @brief Gets the circuit referenced by the subcircuit. + @brief Gets the circuit referenced by the subcircuit (non-const version). + + + This constness variant has been introduced in version 0.26.8 """ ... @overload def circuit_ref(self) -> Circuit: r""" - @brief Gets the circuit referenced by the subcircuit (non-const version). - - - This constness variant has been introduced in version 0.26.8 + @brief Gets the circuit referenced by the subcircuit. """ ... @overload @@ -69673,17 +69461,17 @@ class SubCircuit(NetlistObject): @overload def net_for_pin(self, pin_id: int) -> Net: r""" - @brief Gets the net connected to the specified pin of the subcircuit (non-const version). + @brief Gets the net connected to the specified pin of the subcircuit. If the pin is not connected, nil is returned for the net. - - This constness variant has been introduced in version 0.26.8 """ ... @overload def net_for_pin(self, pin_id: int) -> Net: r""" - @brief Gets the net connected to the specified pin of the subcircuit. + @brief Gets the net connected to the specified pin of the subcircuit (non-const version). If the pin is not connected, nil is returned for the net. + + This constness variant has been introduced in version 0.26.8 """ ... ... @@ -70333,7 +70121,8 @@ class Text: Setter: @brief Sets the vertical alignment - This is the version accepting integer values. It's provided for backward compatibility. + This property specifies how the text is aligned relative to the anchor point. + This property has been introduced in version 0.22 and extended to enums in 0.28. """ x: int r""" diff --git a/src/pymod/distutils_src/klayout/laycore.pyi b/src/pymod/distutils_src/klayout/laycore.pyi index 818164714..e0354dfaa 100644 --- a/src/pymod/distutils_src/klayout/laycore.pyi +++ b/src/pymod/distutils_src/klayout/laycore.pyi @@ -2727,6 +2727,14 @@ class CellView: @brief Gets the reference to the layout object addressed by this view """ ... + def layout_handle(self) -> LayoutHandle: + r""" + @brief Gets the handle to the layout object addressed by this cell view + A layout handle is a reference-counted pointer to a layout object and allows sharing this resource among different views or objects. By holding a handle, the layout object is not destroyed when the view closes for example. + + This method has been added in version 0.30.7. + """ + ... def reset_cell(self) -> None: r""" @brief Resets the cell @@ -3158,16 +3166,23 @@ class Dispatcher: @param name The name of the configuration parameter to set @param value The value to which to set the configuration parameter + The configuration parameter name needs to be a valid XML element name. Otherwise, a corrupt configuration file will be produced. + This method sets a configuration parameter with the given name to the given value. Values can only be strings. Numerical values have to be converted into strings first. Local configuration parameters override global configurations for this specific view. This allows for example to override global settings of background colors. Any local settings are not written to the configuration file. """ ... - def write_config(self, file_name: str) -> bool: + def write_config(self, file_name: str, keep_backups: Optional[int] = ...) -> bool: r""" @brief Writes configuration to a file @return A value indicating whether the operation was successful If the configuration file cannot be written, false is returned but no exception is thrown. + + @param file_name The path to write the config file to. + @param keep_backups The number of backups to keep (0 for 'no backups'). + + The 'keep_backups' option was introduced in version 0.30.7. """ ... ... @@ -6129,6 +6144,244 @@ class LayerPropertiesNodeRef(LayerPropertiesNode): ... ... +class LayoutHandle: + r""" + @brief A handle to a global layout object + Layout objects shown in layout views are stored in a global repository. The layout handle is a pointer into that repository. Handles are reference counted - when no handle points to a layout, the layout is discarded. + A handle stores some more information about the layout, i.e. whether it is 'dirty' (needs saving) and the options used for loading or saving the layout. + + The layout handle object is useful to hold a separate reference to a layout. This way it is possible to close a layout view, but still have a reference to the layout: + + You can use layout handles to move a layout to a different view for example: + + @code + cellview = ... # the source cellview + new_view = ... # the new target view + + h = cellview.handle + cellview.close + new_view.show_layout(h, true) + @/code + + Handles are named. You can use \LayoutHandle#find the find a handle by name or to obtain the handle for a given layout object. You can use \LayoutHandle#names to get the names of all handles registered in the system. + + This class has been introduced in version 0.30.7. + """ + name: str + r""" + Getter: + @brief Gets the name of the layout handle. + The name identifies a layout handle in the global context. Names should be unique. Handles can be retrieved by name using \find. + Setter: + @brief Sets the name of the layout handle. + The caller is responsible for selecting a unique name for the handle. Only uniquely named handles can be retrieved by \find. + """ + @overload + @classmethod + def find(cls, layout: db.Layout) -> LayoutHandle: + r""" + @brief Finds a layout handle for the given layout object. + If no handle for that layout exists, nil is returned. + """ + ... + @overload + @classmethod + def find(cls, name: str) -> LayoutHandle: + r""" + @brief Finds a layout handle by name. + If no handle with that name exists, nil is returned. + """ + ... + @classmethod + def names(cls) -> List[str]: + r""" + @brief Gets the names of all layout handles registered currently. + """ + ... + @overload + @classmethod + def new(cls, filename: str, options: db.LoadLayoutOptions, technology: Optional[str] = ...) -> LayoutHandle: + r""" + @brief Creates a handle from a file. + Loads the layout and creates a handle from that layout. The name is derived from the file name initially. You can pass load options and assign a technology using 'options' and 'technology' respectively. + """ + ... + @overload + @classmethod + def new(cls, layout: db.Layout) -> LayoutHandle: + r""" + @brief Creates a handle from an existing layout object. + Creates a layout handle for an existing layout object. The ownership over the layout object is transferred to the handle. + """ + ... + def __copy__(self) -> LayoutHandle: + r""" + @brief Creates a copy of self + """ + ... + def __deepcopy__(self) -> LayoutHandle: + r""" + @brief Creates a copy of self + """ + ... + @overload + def __init__(self, filename: str, options: db.LoadLayoutOptions, technology: Optional[str] = ...) -> None: + r""" + @brief Creates a handle from a file. + Loads the layout and creates a handle from that layout. The name is derived from the file name initially. You can pass load options and assign a technology using 'options' and 'technology' respectively. + """ + ... + @overload + def __init__(self, layout: db.Layout) -> None: + r""" + @brief Creates a handle from an existing layout object. + Creates a layout handle for an existing layout object. The ownership over the layout object is transferred to the handle. + """ + ... + def _const_cast(self) -> LayoutHandle: + r""" + @brief Returns a non-const reference to self. + Basically, this method allows turning a const object reference to a non-const one. This method is provided as last resort to remove the constness from an object. Usually there is a good reason for a const object reference, so using this method may have undesired side effects. + + This method has been introduced in version 0.29.6. + """ + ... + def _create(self) -> None: + r""" + @brief Ensures the C++ object is created + Use this method to ensure the C++ object is created, for example to ensure that resources are allocated. Usually C++ objects are created on demand and not necessarily when the script object is created. + """ + ... + def _destroy(self) -> None: + r""" + @brief Explicitly destroys the object + Explicitly destroys the object on C++ side if it was owned by the script interpreter. Subsequent access to this object will throw an exception. + If the object is not owned by the script, this method will do nothing. + """ + ... + def _destroyed(self) -> bool: + r""" + @brief Returns a value indicating whether the object was already destroyed + This method returns true, if the object was destroyed, either explicitly or by the C++ side. + The latter may happen, if the object is owned by a C++ object which got destroyed itself. + """ + ... + def _is_const_object(self) -> bool: + r""" + @brief Returns a value indicating whether the reference is a const reference + This method returns true, if self is a const reference. + In that case, only const methods may be called on self. + """ + ... + def _manage(self) -> None: + r""" + @brief Marks the object as managed by the script side. + After calling this method on an object, the script side will be responsible for the management of the object. This method may be called if an object is returned from a C++ function and the object is known not to be owned by any C++ instance. If necessary, the script side may delete the object if the script's reference is no longer required. + + Usually it's not required to call this method. It has been introduced in version 0.24. + """ + ... + def _to_const_object(self) -> LayoutHandle: + r""" + @hide + """ + ... + def _unmanage(self) -> None: + r""" + @brief Marks the object as no longer owned by the script side. + Calling this method will make this object no longer owned by the script's memory management. Instead, the object must be managed in some other way. Usually this method may be called if it is known that some C++ object holds and manages this object. Technically speaking, this method will turn the script's reference into a weak reference. After the script engine decides to delete the reference, the object itself will still exist. If the object is not managed otherwise, memory leaks will occur. + + Usually it's not required to call this method. It has been introduced in version 0.24. + """ + ... + def assign(self, other: LayoutHandle) -> None: + r""" + @brief Assigns another object to self + """ + ... + def create(self) -> None: + r""" + @brief Ensures the C++ object is created + Use this method to ensure the C++ object is created, for example to ensure that resources are allocated. Usually C++ objects are created on demand and not necessarily when the script object is created. + """ + ... + def destroy(self) -> None: + r""" + @brief Explicitly destroys the object + Explicitly destroys the object on C++ side if it was owned by the script interpreter. Subsequent access to this object will throw an exception. + If the object is not owned by the script, this method will do nothing. + """ + ... + def destroyed(self) -> bool: + r""" + @brief Returns a value indicating whether the object was already destroyed + This method returns true, if the object was destroyed, either explicitly or by the C++ side. + The latter may happen, if the object is owned by a C++ object which got destroyed itself. + """ + ... + def dup(self) -> LayoutHandle: + r""" + @brief Creates a copy of self + """ + ... + def filename(self) -> str: + r""" + @brief Gets the file name the layout was loaded from. + If the handle was not constructed from a file, this attribute is an empty string. + """ + ... + def is_const_object(self) -> bool: + r""" + @brief Returns a value indicating whether the reference is a const reference + This method returns true, if self is a const reference. + In that case, only const methods may be called on self. + """ + ... + def is_dirty(self) -> bool: + r""" + @brief Gets a value indicating whether the layout needs saving. + """ + ... + def is_valid(self) -> bool: + r""" + @brief Gets a value indicating whether the layout handle is valid. + Invalid layout handles cannot be used. Default-created layout handles are invalid for example. + """ + ... + def layout(self) -> db.Layout: + r""" + @brief Gets the layout object kept by the handle. + """ + ... + def load_options(self) -> db.LoadLayoutOptions: + r""" + @brief Gets the load options used when the layout was read. + Default options will be returned when the layout was not created from a file. + """ + ... + def ref_count(self) -> int: + r""" + @brief Gets the reference count. + The reference count indicates how many references are present for the handle. If the reference count reaches zero, the layout object is destroyed. References are kept by layout views showing the layout, but can also be kept by separate handles. + """ + ... + def save_as(self, filename: str, options: db.SaveLayoutOptions, keep_backups: Optional[int] = ...) -> None: + r""" + @brief Saves the layout to a file. + This method will save the layout kept by the handle to the given file. Calling this method will change the file name and reset the \is_dirty? flag and set \save_options to the options passed. + + @param filename The path where to save the layout to + @param options The options used for saving the file + @param keep_backups The number of backup files to keep (0 for 'no backups') + """ + ... + def save_options(self) -> Any: + r""" + @brief Gets the save options used most recently when saving the file or 'nil' if no save options are available. + """ + ... + ... + class LayoutView(LayoutViewBase): r""" @brief The view object presenting one or more layout objects @@ -8562,23 +8815,7 @@ class LayoutViewBase(Dispatcher): """ ... @overload - def show_layout(self, layout: db.Layout, tech: str, add_cellview: bool) -> int: - r""" - @brief Shows an existing layout in the view - - Shows the given layout in the view. If add_cellview is true, the new layout is added to the list of cellviews in the view. - The technology to use for that layout can be specified as well with the 'tech' parameter. Depending on the definition of the technology, layer properties may be loaded for example. - The technology string can be empty for the default technology. - - Note: once a layout is passed to the view with show_layout, it is owned by the view and must not be destroyed with the 'destroy' method. - - @return The index of the cellview created. - - This method has been introduced in version 0.22. - """ - ... - @overload - def show_layout(self, layout: db.Layout, tech: str, add_cellview: bool, init_layers: bool) -> int: + def show_layout(self, layout: db.Layout, tech: str, add_cellview: bool, init_layers: Optional[bool] = ...) -> int: r""" @brief Shows an existing layout in the view @@ -8595,6 +8832,20 @@ class LayoutViewBase(Dispatcher): This method has been introduced in version 0.22. """ ... + @overload + def show_layout(self, layout_handle: LayoutHandle, add_cellview: bool, init_layers: Optional[bool] = ...) -> int: + r""" + @brief Shows an existing layout (from a handle) in the view + + This variant of \show_layout takes a layout handle instead of the layout. Layout handles are reference-counted pointers + and can be used to hold a reference to a layout object. This way, ownership over the layout can be shared between different + objects. + + @return The index of the cellview created. + + This method has been introduced in version 0.30.7. + """ + ... def stop(self) -> None: r""" @brief Stops redraw thread and close any browsers @@ -10012,6 +10263,19 @@ class Marker: @brief Sets the line width of the marker This is the width of the line drawn for the outline of the marker. """ + text_frame_enabled: bool + r""" + Getter: + @brief Gets a value indicating whether label frames are enabled + See \text_frame_enabled= for a description of this attribute. + This attribute has been introduced in version 0.30.7. + Setter: + @brief Enables or disables the label frame + With the value set to true (the default), texts (labels) are drawn with a frame indicating the label dimension. + To turn off that frame, set this attribute to false. + + This attribute has been introduced in version 0.30.7. + """ vertex_size: int r""" Getter: diff --git a/src/pymod/distutils_src/klayout/rdbcore.pyi b/src/pymod/distutils_src/klayout/rdbcore.pyi index 73e6d9688..1d547f277 100644 --- a/src/pymod/distutils_src/klayout/rdbcore.pyi +++ b/src/pymod/distutils_src/klayout/rdbcore.pyi @@ -1925,6 +1925,17 @@ class ReportDatabase: The reader recognizes the format automatically and will choose the appropriate decoder. 'gzip' compressed files are uncompressed automatically. """ ... + def merge(self, other: ReportDatabase) -> None: + r""" + @brief Merges the other database with this one + This method will merge the other database with this one. The other database needs to have the same top cell than + this database. In the merge step, identical cells and categories will be identified and missing cells or categories + will be created in this database. After that, all items will be transferred from the other database into this one + and will be associated with cells and categories from this database. + + This method has been added in version 0.30.7. + """ + ... def name(self) -> str: r""" @brief Gets the database name From 1985f5663c5c37f3b92dcaf200fec7b8aa7786e2 Mon Sep 17 00:00:00 2001 From: Matthias Koefferlein Date: Sat, 7 Mar 2026 13:28:35 +0100 Subject: [PATCH 031/212] Fixing issue #2293 --- src/layui/layui/layLayerControlPanel.cc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/layui/layui/layLayerControlPanel.cc b/src/layui/layui/layLayerControlPanel.cc index dab52fa44..b7a2ba70c 100644 --- a/src/layui/layui/layLayerControlPanel.cc +++ b/src/layui/layui/layLayerControlPanel.cc @@ -1951,7 +1951,9 @@ LayerControlPanel::do_update_content () mp_layer_list->doItemsLayout (); // establishes the current layer in case it was changed during the "in update" phase - mp_layer_list->set_current (lay::LayerPropertiesConstIterator (mp_view->get_properties (), m_current_layer)); + if (m_current_layer != 0) { + mp_layer_list->set_current (lay::LayerPropertiesConstIterator (mp_view->get_properties (), m_current_layer)); + } m_needs_update = false; From 6dd3e6b10ffc01df4e071e0b4300a545b77fa152 Mon Sep 17 00:00:00 2001 From: Matthias Koefferlein Date: Sat, 7 Mar 2026 13:30:25 +0100 Subject: [PATCH 032/212] Updating change log --- Changelog | 3 ++- Changelog.Debian | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Changelog b/Changelog index 493e3b21e..f4dcd515f 100644 --- a/Changelog +++ b/Changelog @@ -1,10 +1,11 @@ -0.30.7 (2026-03-05): +0.30.7 (2026-03-07): * Enhancement: %GITHUB%/issues/2248 Switch layouts but without losing the handle * Bugfix: %GITHUB%/issues/2273 Potential use-after-free bug due to Ruby GC * Bugfix: %GITHUB%/issues/2277 Poor netlister performance in some cases * Enhancement: %GITHUB%/issues/2278 Option to hide markers frames * Bugfix: %GITHUB%/issues/2284 klayoutrc parse issue silently replaces config file * Bugfix: %GITHUB%/issues/2286 CLI arguments, '--help' / '--version' should be implemented +* Bugfix: %GITHUB%/issues/2293 Layers window: changing the layer order with the arrow buttons deselects the layer to be moved * Enhancement: ReportDatabase#merge - a method to merge two report databases * Bugfix: double clicking an edge in partial mode opened the properties dialog, not setting a point * Bugfix: Python did not support downcasting of PolygonWithProperties to Polygon on Shapes#polygon for example diff --git a/Changelog.Debian b/Changelog.Debian index 3cb5cee9f..8a8183ca6 100644 --- a/Changelog.Debian +++ b/Changelog.Debian @@ -3,7 +3,7 @@ klayout (0.30.7-1) unstable; urgency=low * New features and bugfixes - See changelog - -- Matthias Köfferlein Wed, 04 Mar 2026 18:58:50 +0100 + -- Matthias Köfferlein Sat, 07 Mar 2026 13:30:05 +0100 klayout (0.30.6-1) unstable; urgency=low From ebf315e799fdf3cdcef53ccbc8dbf24047de2026 Mon Sep 17 00:00:00 2001 From: Joaquin Matres <4514346+joamatab@users.noreply.github.com> Date: Sun, 8 Mar 2026 17:52:44 -0400 Subject: [PATCH 033/212] skip 3.9 and 3.10 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index a488932ff..0e9df3d70 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -13,7 +13,7 @@ test-command = [ "TESTSRC={package} python {package}/testdata/pymod/pya_tests.py" ] # Disable building PyPy wheels on all platforms -skip = "pp* cp36-* cp37-*" +skip = "pp* cp36-* cp37-* cp38-* cp39-*" [tool.cibuildwheel.linux] # beware: the before-all script does not persist environment variables! From fb2559bf7507bbda668dd7ed7bc397ccec86724e Mon Sep 17 00:00:00 2001 From: Matthias Koefferlein Date: Sat, 14 Mar 2026 18:47:28 +0100 Subject: [PATCH 034/212] Fixing a performance regression in the merged layer computation Problem was that while properly implementing the reverse cluster connection during cluster merges, cluster connection propagation suffered a complexity explosion during generation of the cluster interactions. Solution is to postpone the cluster joining step until a cell is finished connecting the clusters. To mitigate the performance effect of that, some optimizations are introduced (e.g. using a more efficient unordered_map). --- src/db/db/dbHierNetworkProcessor.cc | 54 ++++++++++++++--------------- 1 file changed, 26 insertions(+), 28 deletions(-) diff --git a/src/db/db/dbHierNetworkProcessor.cc b/src/db/db/dbHierNetworkProcessor.cc index f187468fd..9ff05a5ff 100644 --- a/src/db/db/dbHierNetworkProcessor.cc +++ b/src/db/db/dbHierNetworkProcessor.cc @@ -20,7 +20,6 @@ */ - #include "dbHierNetworkProcessor.h" #include "dbShape.h" #include "dbShapes.h" @@ -1794,7 +1793,7 @@ public: cell_clusters_box_converter (const db::Layout &layout, const hier_clusters &tree) : mp_layout (&layout), mp_tree (&tree) { - // .. nothing yet .. + m_cache.resize (layout.cells (), 0); } const box_type &operator() (const db::CellInst &cell_inst) const @@ -1804,10 +1803,10 @@ public: const box_type &operator() (db::cell_index_type cell_index) const { - typename std::map::const_iterator b = m_cache.find (cell_index); - if (b != m_cache.end ()) { + const box_type *b = m_cache [cell_index]; + if (b) { - return b->second; + return *b; } else { @@ -1820,13 +1819,17 @@ public: box += inst_array.bbox (*this); } - return m_cache.insert (std::make_pair (cell_index, box)).first->second; + m_cached_boxes.push_front (box); + b = m_cached_boxes.begin ().operator-> (); + m_cache [cell_index] = b; + return *b; } } private: - mutable std::map m_cache; + mutable std::vector m_cache; + mutable tl::slist m_cached_boxes; const db::Layout *mp_layout; const hier_clusters *mp_tree; }; @@ -1993,10 +1996,10 @@ public: } /** - * @brief Finally join the clusters in the join set + * @brief Finally generate cluster-to-instance interactions and join the clusters in the join set * * This step is postponed because doing this while the iteration happens would - * invalidate the box trees. + * invalidate the box trees and disturb the propagation mechanism. */ void finish_cluster_to_instance_interactions () { @@ -2081,7 +2084,7 @@ private: const db::Connectivity *mp_conn; const std::set *mp_breakout_cells; typedef std::list > join_set_list; - std::map m_cm2join_map; + std::unordered_map m_cm2join_map; join_set_list m_cm2join_sets; std::map, int> m_soft_connections; std::list m_ci_interactions; @@ -2551,8 +2554,8 @@ private: return; } - typename std::map::const_iterator x = m_cm2join_map.find (a); - typename std::map::const_iterator y = m_cm2join_map.find (b); + typename std::unordered_map::const_iterator x = m_cm2join_map.find (a); + typename std::unordered_map::const_iterator y = m_cm2join_map.find (b); if (x == m_cm2join_map.end ()) { @@ -2579,6 +2582,11 @@ private: } else if (x->second != y->second) { + // the y set should be the smaller one for better efficiency + if (x->second->size () < y->second->size ()) { + std::swap (x, y); + } + // join two superclusters typename join_set_list::iterator yset = y->second; x->second->insert (yset->begin (), yset->end ()); @@ -2591,12 +2599,12 @@ private: #if defined(DEBUG_HIER_NETWORK_PROCESSOR) // concistency check for debugging - for (typename std::map::const_iterator j = m_cm2join_map.begin (); j != m_cm2join_map.end (); ++j) { + for (auto j = m_cm2join_map.begin (); j != m_cm2join_map.end (); ++j) { tl_assert (j->second->find (j->first) != j->second->end ()); } - for (typename std::list >::const_iterator i = m_cm2join_sets.begin (); i != m_cm2join_sets.end (); ++i) { - for (typename std::set::const_iterator j = i->begin(); j != i->end(); ++j) { + for (auto i = m_cm2join_sets.begin (); i != m_cm2join_sets.end (); ++i) { + for (auto j = i->begin(); j != i->end(); ++j) { tl_assert(m_cm2join_map.find (*j) != m_cm2join_map.end ()); tl_assert(m_cm2join_map[*j] == i); } @@ -2604,8 +2612,8 @@ private: // the sets must be disjunct std::set all; - for (typename std::list >::const_iterator i = m_cm2join_sets.begin (); i != m_cm2join_sets.end (); ++i) { - for (typename std::set::const_iterator j = i->begin(); j != i->end(); ++j) { + for (auto i = m_cm2join_sets.begin (); i != m_cm2join_sets.end (); ++i) { + for (auto j = i->begin(); j != i->end(); ++j) { tl_assert(all.find (*j) == all.end()); all.insert(*j); } @@ -2700,23 +2708,13 @@ private: } else if (x1 != x2) { int soft = ic->soft; - - // for instance-to-instance interactions the number of connections is more important for the - // cost of the join operation: make the one with more connections the target - // TODO: this will be SLOW for STL's not providing a fast size() - if (mp_cell_clusters->connections_for_cluster (x1).size () < mp_cell_clusters->connections_for_cluster (x2).size ()) { - std::swap (x1, x2); - soft = -soft; - } - if (soft != 0) { register_soft_connection (x1, x2, soft); } else { - mp_cell_clusters->join_cluster_with (x1, x2); - mp_cell_clusters->remove_cluster (x2); + mark_to_join (x1, x2); } From 4af2662a08cab47e6c834e7a5882719e88fea105 Mon Sep 17 00:00:00 2001 From: Matthias Koefferlein Date: Sun, 15 Mar 2026 10:03:51 +0100 Subject: [PATCH 035/212] Fixing unit tests --- src/db/unit_tests/dbLayoutToNetlistTests.cc | 6 +- src/lvs/unit_tests/lvsTests.cc | 4 +- .../algo/device_extract_au13_circuits.gds | Bin 48482 -> 48506 bytes .../algo/device_extract_au14_circuits.gds | Bin 48594 -> 48598 bytes ...ice_extract_au1_dup_inst_with_rec_nets.gds | Bin 54738 -> 54742 bytes .../algo/device_extract_au1_joined_nets.gds | Bin 11114 -> 11114 bytes .../algo/device_extract_au1_rebuild_nr.gds | Bin 9458 -> 9458 bytes .../algo/device_extract_au1_rebuild_pf.gds | Bin 49364 -> 49364 bytes .../algo/device_extract_au1_rebuild_pr.gds | Bin 29092 -> 29092 bytes .../algo/device_extract_au1_with_rec_nets.gds | Bin 50630 -> 50662 bytes .../algo/device_extract_au2_with_rec_nets.gds | Bin 38242 -> 38246 bytes .../algo/device_extract_au3_with_rec_nets.gds | Bin 46974 -> 46978 bytes .../algo/device_extract_au4_with_rec_nets.gds | Bin 49534 -> 49538 bytes .../device_extract_au5_flattened_circuits.gds | Bin 114206 -> 114210 bytes .../algo/device_extract_au5_with_rec_nets.gds | Bin 70678 -> 70682 bytes testdata/algo/hc_test_au11.gds | Bin 16666 -> 16666 bytes testdata/algo/l2n_writer_au.txt | 124 +- testdata/algo/l2n_writer_au_2.gds | Bin 13330 -> 13330 bytes testdata/algo/l2n_writer_au_2b.txt | 30 +- testdata/algo/l2n_writer_au_2s.txt | 30 +- testdata/algo/l2n_writer_au_p.txt | 124 +- testdata/algo/l2n_writer_au_s.txt | 124 +- testdata/algo/lvs_test1_au.lvsdb.1 | 26 +- testdata/algo/lvs_test1_au.lvsdb.2 | 646 ---------- testdata/algo/lvs_test1b_au.lvsdb.1 | 26 +- testdata/algo/lvs_test1b_au.lvsdb.2 | 646 ---------- testdata/algo/lvs_test2_au.lvsdb.1 | 26 +- testdata/algo/lvs_test2_au.lvsdb.2 | 677 ---------- testdata/algo/lvs_test2b_au.lvsdb.1 | 26 +- testdata/algo/lvs_test2b_au.lvsdb.2 | 677 ---------- testdata/algo/net_proc_au3.gds | Bin 1062198 -> 1062198 bytes testdata/lvs/ringo_device_subcircuits.lvsdb.1 | 52 +- testdata/lvs/ringo_device_subcircuits.lvsdb.2 | 908 -------------- testdata/lvs/ringo_layout_var.lvsdb.1 | 42 +- testdata/lvs/ringo_layout_var.lvsdb.2 | 1013 --------------- testdata/lvs/ringo_mixed_hierarchy.cir | 32 +- testdata/lvs/ringo_mixed_hierarchy.lvsdb | 118 +- testdata/lvs/ringo_simple.lvsdb.1 | 52 +- testdata/lvs/ringo_simple.lvsdb.2 | 908 -------------- testdata/lvs/ringo_simple_blackboxing.lvsdb | 32 +- .../lvs/ringo_simple_blackboxing_netter.lvsdb | 32 +- testdata/lvs/ringo_simple_compare2.lvsdb.1 | 52 +- testdata/lvs/ringo_simple_compare2.lvsdb.2 | 908 -------------- .../lvs/ringo_simple_device_scaling.lvsdb.1 | 52 +- .../lvs/ringo_simple_device_scaling.lvsdb.2 | 908 -------------- testdata/lvs/ringo_simple_dmos.lvsdb.1 | 42 +- testdata/lvs/ringo_simple_dmos.lvsdb.2 | 889 ------------- testdata/lvs/ringo_simple_dmos_fixed.lvsdb.1 | 42 +- testdata/lvs/ringo_simple_dmos_fixed.lvsdb.2 | 918 -------------- .../lvs/ringo_simple_dummy_device.lvsdb.1 | 72 +- .../lvs/ringo_simple_dummy_device.lvsdb.2 | 965 --------------- .../ringo_simple_implicit_connections.lvsdb.1 | 22 +- .../ringo_simple_implicit_connections.lvsdb.2 | 930 -------------- testdata/lvs/ringo_simple_io.cir.1 | 4 +- testdata/lvs/ringo_simple_io.cir.2 | 31 - testdata/lvs/ringo_simple_io.lvsdb.1 | 52 +- testdata/lvs/ringo_simple_io.lvsdb.2 | 832 ------------- testdata/lvs/ringo_simple_io2.cir.1 | 4 +- testdata/lvs/ringo_simple_io2.cir.2 | 32 - testdata/lvs/ringo_simple_io2.l2n.1 | 52 +- testdata/lvs/ringo_simple_io2.l2n.2 | 519 -------- testdata/lvs/ringo_simple_io2.lvsdb.1 | 52 +- testdata/lvs/ringo_simple_io2.lvsdb.2 | 908 -------------- ...simple_net_and_circuit_equivalence.lvsdb.1 | 52 +- ...simple_net_and_circuit_equivalence.lvsdb.2 | 908 -------------- .../lvs/ringo_simple_pin_swapping.lvsdb.1 | 52 +- .../lvs/ringo_simple_pin_swapping.lvsdb.2 | 908 -------------- .../ringo_simple_same_device_classes.cir.1 | 4 +- .../ringo_simple_same_device_classes.cir.2 | 31 - .../ringo_simple_same_device_classes.lvsdb.1 | 52 +- .../ringo_simple_same_device_classes.lvsdb.2 | 910 -------------- .../lvs/ringo_simple_simplification.lvsdb.1 | 50 +- .../lvs/ringo_simple_simplification.lvsdb.2 | 1095 ----------------- ...ringo_simple_simplification_with_align.cir | 20 +- ...o_simple_simplification_with_align.lvsdb.1 | 70 +- ...o_simple_simplification_with_align.lvsdb.2 | 1095 ----------------- testdata/lvs/ringo_simple_with_tol.lvsdb.1 | 52 +- testdata/lvs/ringo_simple_with_tol.lvsdb.2 | 908 -------------- .../lvs/ringo_simple_with_tol_early.lvsdb.1 | 52 +- .../lvs/ringo_simple_with_tol_early.lvsdb.2 | 908 -------------- testdata/lvs/soft_connect1.l2n | 4 +- testdata/lvs/soft_connect1a.l2n | 4 +- testdata/lvs/soft_connect3.l2n | 4 +- 83 files changed, 884 insertions(+), 20962 deletions(-) delete mode 100644 testdata/algo/lvs_test1_au.lvsdb.2 delete mode 100644 testdata/algo/lvs_test1b_au.lvsdb.2 delete mode 100644 testdata/algo/lvs_test2_au.lvsdb.2 delete mode 100644 testdata/algo/lvs_test2b_au.lvsdb.2 delete mode 100644 testdata/lvs/ringo_device_subcircuits.lvsdb.2 delete mode 100644 testdata/lvs/ringo_layout_var.lvsdb.2 delete mode 100644 testdata/lvs/ringo_simple.lvsdb.2 delete mode 100644 testdata/lvs/ringo_simple_compare2.lvsdb.2 delete mode 100644 testdata/lvs/ringo_simple_device_scaling.lvsdb.2 delete mode 100644 testdata/lvs/ringo_simple_dmos.lvsdb.2 delete mode 100644 testdata/lvs/ringo_simple_dmos_fixed.lvsdb.2 delete mode 100644 testdata/lvs/ringo_simple_dummy_device.lvsdb.2 delete mode 100644 testdata/lvs/ringo_simple_implicit_connections.lvsdb.2 delete mode 100644 testdata/lvs/ringo_simple_io.cir.2 delete mode 100644 testdata/lvs/ringo_simple_io.lvsdb.2 delete mode 100644 testdata/lvs/ringo_simple_io2.cir.2 delete mode 100644 testdata/lvs/ringo_simple_io2.l2n.2 delete mode 100644 testdata/lvs/ringo_simple_io2.lvsdb.2 delete mode 100644 testdata/lvs/ringo_simple_net_and_circuit_equivalence.lvsdb.2 delete mode 100644 testdata/lvs/ringo_simple_pin_swapping.lvsdb.2 delete mode 100644 testdata/lvs/ringo_simple_same_device_classes.cir.2 delete mode 100644 testdata/lvs/ringo_simple_same_device_classes.lvsdb.2 delete mode 100644 testdata/lvs/ringo_simple_simplification.lvsdb.2 delete mode 100644 testdata/lvs/ringo_simple_simplification_with_align.lvsdb.2 delete mode 100644 testdata/lvs/ringo_simple_with_tol.lvsdb.2 delete mode 100644 testdata/lvs/ringo_simple_with_tol_early.lvsdb.2 diff --git a/src/db/unit_tests/dbLayoutToNetlistTests.cc b/src/db/unit_tests/dbLayoutToNetlistTests.cc index 8967d2063..b250040ce 100644 --- a/src/db/unit_tests/dbLayoutToNetlistTests.cc +++ b/src/db/unit_tests/dbLayoutToNetlistTests.cc @@ -375,7 +375,7 @@ TEST(1_BasicExtraction) EXPECT_EQ (qnet_name (l2n.probe_net (*rmetal1, db::DPoint (5.3, 0.0))), "RINGO:VSS"); EXPECT_EQ (qnet_name (l2n.probe_net (*rmetal1, db::DPoint (2.6, 1.0))), "RINGO:$I39"); - EXPECT_EQ (qnet_name (l2n.probe_net (*rmetal1, db::DPoint (6.4, 1.0))), "RINGO:$I2"); + EXPECT_EQ (qnet_name (l2n.probe_net (*rmetal1, db::DPoint (6.4, 1.0))), "RINGO:$I12"); // test build_all_nets @@ -576,7 +576,7 @@ TEST(1_BasicExtraction) EXPECT_EQ (qnet_name (l2n.probe_net (*rmetal1, db::DPoint (5.3, 0.0))), "RINGO:VSS"); EXPECT_EQ (qnet_name (l2n.probe_net (*rmetal1, db::DPoint (2.6, 1.0))), "RINGO:$I39"); - EXPECT_EQ (qnet_name (l2n.probe_net (*rmetal1, db::DPoint (6.4, 1.0))), "RINGO:$I2"); + EXPECT_EQ (qnet_name (l2n.probe_net (*rmetal1, db::DPoint (6.4, 1.0))), "RINGO:$I12"); // use this opportunity to check joining of nets with cluster joining db::Circuit *top = l2n.netlist ()->circuit_by_name ("RINGO"); @@ -616,7 +616,7 @@ TEST(1_BasicExtraction) EXPECT_EQ (qnet_name (l2n.probe_net (*rmetal1, db::DPoint (5.3, 0.0))), "RINGO:VDD,VSS"); EXPECT_EQ (qnet_name (l2n.probe_net (*rmetal1, db::DPoint (2.6, 1.0))), "RINGO:$I39"); - EXPECT_EQ (qnet_name (l2n.probe_net (*rmetal1, db::DPoint (6.4, 1.0))), "RINGO:$I2"); + EXPECT_EQ (qnet_name (l2n.probe_net (*rmetal1, db::DPoint (6.4, 1.0))), "RINGO:$I12"); // compare the collected test data diff --git a/src/lvs/unit_tests/lvsTests.cc b/src/lvs/unit_tests/lvsTests.cc index d5f8a4dc6..7e82ce590 100644 --- a/src/lvs/unit_tests/lvsTests.cc +++ b/src/lvs/unit_tests/lvsTests.cc @@ -154,7 +154,7 @@ TEST(16_private) TEST(17_private) { test_is_long_runner (); - run_test (_this, "test_17.lylvs", "test_17b.cir.gz", "test_17.gds.gz", true, "test_17b_6.lvsdb"); + run_test (_this, "test_17.lylvs", "test_17b.cir.gz", "test_17.gds.gz", true, "test_17b_7.lvsdb"); } TEST(18_private) @@ -172,7 +172,7 @@ TEST(19_private) TEST(20_private) { // test_is_long_runner (); - run_test (_this, "test_20.lylvs", "test_20.cir.gz", "test_20.gds.gz", true, "test_20_5.lvsdb"); + run_test (_this, "test_20.lylvs", "test_20.cir.gz", "test_20.gds.gz", true, "test_20_6.lvsdb"); } TEST(21_private) diff --git a/testdata/algo/device_extract_au13_circuits.gds b/testdata/algo/device_extract_au13_circuits.gds index 131540011e1a5a74914c08d1bae38a23626f9c00..b396d222d843c34bb48a70830460168dc1180fb1 100644 GIT binary patch delta 1751 zcmb7^TSyd97{|}d?v9GB9Yt7>!a!caQ*S(!h>Czf#b zPjV&6(|E9{!&BFI_-IE_UAYYJit?CiQ`q|dnQ|kuIXjh1g^~HWC6!F2k@=LLN~X%l zENo9DQ;nH=cv);`Uy8b{+;{0IUgFDY*H^wQsW6d+drYKbpNW**CNh4=M6NZM$dzM! z37?ytu->ABf&@yug%mF#+B>G1eUf?NSgFM7xMJL62%U?J~}~W6&D0gXYCKqV-}$v>v2SHJs9i zvnw%}iDbgwemAVEwV)vZL`mQ)h1LEh2=sRsrV+Cn1O|Lgpx1SXUeiHFyjOLgKIA4# zd?yg~>&$xtciDAoNdkI52r@$NVMXX&tO&h>6`{AWB6L`V-cmcr!`Khu450%7a18|E z#b6LzgFa)!@+i(n&?EE#)&yfJeA{UU`VeQM8;3zBaE{P%tOy-LCN~a4p2Qh!9ENMk z4bexnKoKt@CzvjUiHHN%(0Ql+bs)??{lfyk3vKXgaTnA(v!FBN1;?z){aI#bhb>&G z%!Sf;5~30AT??n4g?KsUcy4mly5~P+a+5n2o>*Y!O}0=C-{-d)T~)HHOm-E?t~}Yv L*yXUNi@Nv+gtycj delta 1737 zcmb7^T}V@57{|}fKGfAxObb6)H-j|7rTNjv)Fp}R7)!)VEt0Y?YU=E`KE@L1!*pwY z^w$MVNZ5tug$4&g#|ch1K_ly0Cb84ij@#F08C3`TW^X8H#88g$5HJHB6fQa0uj4KNyNIT-%Wj&hz)lpKD!4XxT)Vuo{05O-ic$Q zk6a(QJ`oQ^6NG*{j6_Vd!%ql=(c?nXTLXOJ9>mD``wyGbIJI*Flb#~T_Z1}XDX_5LLQ_d_EA&6e0XfesuCZk$M z*WLB_@!&whJSaZ&(1ku0f(b%m!51F_VGF4@UlfF1%;>m;1aXIa_;b%Wzw^K6Ubr(W z+uY}EuA8wj9CwWoSp({ee2Tvrtj?A+PT^8 zPDZp+eX;JYe9D%w#3~IzoTW0d$d#}(BU!U#P~j`9jWtwaw=PLuJ7e}-7?;h~(SEKo(9zO<;bNe?#oGX}#(eU# zT2J#(-qF7vU&^y4@53W|Q=X6Y`|-#m))-H7|L?hEh&C3GvF81Zs7oE|?s+|p_Qr^( zb(s#cFMXjy?y?E|(PaYHubaTHH%#ElEfctO+XTk%(ILF-s{yg!fSv~iN%rCQlN==A z7+i*)0Ryy$1|<72SHhq@Qgm&I1#LJ8j$zCnD1`?+R}xlv>*iwYYRvPwp#vdNW>K5PXL34R3jY9!3!5JGzNdDtf&zN zTd5yE2h65P4=5K1lMvEq(vvYwyclD`L4sVocp&jYLTLP2F2-aw>EW4g_I>A_*~5JE z{ZRONC=3%L5rjLWMkknl5i@ZRLfpjs@0=71#_PS82&vE;F80j$`#-JhcU|5(mslPS zk{Say7atySaJGzRws{t$bXW@X@nbOx6Stj-tWL( z$r(m1iViZRX%KVR8ANPR=(7cYmZc$MMa|0K$ZlbM6}XU=qi9E}@*;>;Y3OsLfmWh+ z0yXC>Ogj}Qu2o>V2CH)l=t%`cgjQp%3&WAy1~K;ph;Gzes3G(eR)k7e5n3B&k$Q^` z#CrUwLmI>IvCaZwBhF9bB7`=C*^vhqQ4b0^TEfunu>ftxIYOJTHes*@gR%mdmH^Nk zUK!4NgCKeXkdg6QmVG9oby0}jXdE245*!)q9k_O5q@lM9*8P<%>rEClb1o36_%G7x zgEhZ{?X?w>X=7{tQ~_tS=g(NZP{*kW6PjGj=su#JgQg?*GC!%WnSQn?<)Y z%!45f^LI$Y+`X$|ejC*=Ki|_ZKaBBBSRX&jLJzTX)CXzU8Al=vYP&5UMbZ$ONQ3$q zwMUG_C-EXnlM1L$kf|`(rlO!eRX{>i1>44HWv&-lT~d0EJj2Dae<0$rf{SL8(hO?T zsJ%q39<^u|)K?hJF?ZZL>T8@MY7A=(H}qH`5zm4YM{N$7KkgoB9_N5-5cSP*_oxdB zgcbrIJpPTvJXgn|LPdtZ<)i7D&VVKR3%+Vl%84T00?{^5{D9V|#vV%a1;=Y&Gcdp3jf=1A$7C}s#V7exxrZZwE zvBo=QO;BmM@OMN<8m|y7D#uC?3WM6Ts7+99qfg6d^Isb{bM8OqJ0IV7?ho^3Oj#aN znwg!+auZV}Iq@@7SUTIxY|Q!ZGfR@~?wV@GvK3p^f$s9!XZOE44^5Yh3^jY0Y7_eU zn@?^PwCsQWRwN-R2{k?{Z<9nu{!XzFQ*6m%=RW&ep@_UB@jNNXjY1>8n9?8?KcreX z-3|-qRC+`%66DG@+3oe(VNYwdyY66ZYe7vp+A4GSXjVAkzbzGOmfoCjf-vbL+uw`D z%H0-XaiN8{XPXgCU5C*$uO>%SZO!WqMI--$MDVb*Kd68ZqJTIY4KE(ML=$dWi`}4>7^$CMFnN#9clFJ9XrBdaN@B}Mu-Y;7o%&~ zgO!jA#xQL&?1D-#=-d*jLSCqNr}gE-r`vncdq0B38V3UROlWsa9=Jyd#lt4j34uE% z;v+GnjYO~`+W~Fj+bV~(aVe~g5yq9U_L%q)VN`xH-(CSH=38fatFmnLGev8jZv zBek_g#l*Sx|IBh_HQLy~*h@bDdn@+5yY|oH zbG09gF7EGb-oQ%zLSJ|DMQoSh@5y};x zCqHka(8#~cUoRH#6?izK0T1U$(XjlsAXoN+s;<*lZfI?YHod>LwY+f&KB+6_nFRyN zGh1rrE&GZG6k*b&iUDMQ?eCTBV0ry!g$6r}nU}QD5Ekxb4c-&(QWGi`#Z# z^f@d`=aZT0>`$S$Q9Cl>713s+chI%*OqyP}Da~i?^xy)Fal4 z&ppJ@7an5KRu56$)|V$bEk@!M*!0~n>Z1W9zs=(It|_#b7Q(wMw0vXn@Xm;g*BEHW>&A}(vpCElV%@b<7+fX0MMe8L$!aXsx8Pw?E zI7$z9A`BDBLngw9OrC@(A$gF?131gLq7F znC+v;iHG~D!a2>VyWc{vpX0C1 z0T@FMaJQZC+(WLPm8AhAL*opM(=-Ns1I9@S#)$`*ez^ep=r*Ljrpg!M&@XhtIB&up zF=33D+&)h+*_;S>W3ne=^YIuHaa=s`{+_eKppQNJDGL}=yswSt+xKN0m>5fTk>Bcl(q=Nd2f@`VpaYtKqWqH?INTADe4 zl&m(dV+aZiDua&!GB46h-TH5?Th+FhtZN}PO<(LSygdg2;*om32o{`~mOopYHAI%BZtD&~NY*mCaNk6)i&{R!WO3SdO z%1}}LXtJ)?iq`fT(L~ts<&}eV&4g|0^;VN%UK7w`$H#A?>|Q*NvJDRwPvE*a5BAA} zNlCnB*@M0DV1GQAojL-|bOP2=0=!Ba@PI~{MvjJa&YbT*QU)|=ETqO^H!Z-VF48?$ zz|f7yx&d1m1D0t#qA^RuxeB}KJiLpezoULf7g%i1>raec{Bc!WU5DUd7w1kM1ZNpu zJSdw_yoj)aD2V8xA|gXQ?Kpe#FeW<+W8hADQSnQ3rI(lX@E(u+-tYH&N#2)iPHaw8 zi9mS%B2hS=ej`B=BZTBhZ+lHdUN|>8Oi0uh7%JY)on3jpT`0Xfy7ahOAxZ${Emo&u zh~#2(5`&<`p)`2U;k-T`=RNhnWZzeGmarf9oAxhG*g@ej51+)rzCAy2 z*;CO(0F#B;{d;dCdqsK#p=8=)=f{bk60hYXA*Zv1xha8H)tget>~9D=e&4eSnEwEq7z3ZZxi77PhCn8ZT7 z3u@M--irTotTFm_H;%_!j=vb?Q%Zu*OroxI;W*$@uPG9!?w}NGg$x}YJm*90mQoZ*H1oaBKv2$tx#a2Bq zRl|8R9@qyDES$tOYaZAu5A2TzX6r}bg)ssjbqaS33u-L#EWX4w_u7_j!3v8d7B_Vb zG_wFrQ-bdXePCL!ma^bXx)+|LVsM|;(=1jL&4EElS%)q+*$;~ywn)bV*SKL)9(xUq phgJmt94#Ms!*h9v9Mrg+n+M%Iz;e>9vTp8obB1L}VB6yNlfNjcNG|{Y diff --git a/testdata/algo/device_extract_au1_rebuild_nr.gds b/testdata/algo/device_extract_au1_rebuild_nr.gds index 3432e15c6b439fb3a5f4653b8b427859053790c4..e4b741123a93870c28709530812b77f0a91b389a 100644 GIT binary patch literal 9458 zcmcgy-;2~$6u&z&J2N|uvaYKSA`voDftj;2Y9ficyWwE1;%-YV8|xoXAQTc|A*4`7 zAk>rfAVv0IPeCBqQ$!E?(nD`a_|!uX2tH}K-#+J_d**xYckcJcjwmvGh5)?Y2sceLN&171gOj_*(ZNl;gRws~b8B_X3Q0Rqi>XXh5oOIn2IH|R&PO5A^ z?vu7-|7Kgg==^)}k^Jj2Nm*5y6gcbfR*^~5y_3_g^%hnZP9C0{*V$W%V~SI4$BAw- zMpuEW$Y6&;2ioj)*`JWdzL!WIzr7?MqtJm`zN+n;+pvEgI&MSmEHZgUQ0NwisvcFb z<=7@wD0HG?xl+mRu!$<-s*?3JSFFwBCt!0zbqTT=%whDSGknU2XXtctS~;Dp7doZ3 zNI4u^RQW3!2_Mn(lQTc}xmhijD7+nSai4!^$dV2nn9OW`(J%4f5 zpCEId5OQZ>yCo=e!a`ow-Jd&g?B^$uzucW3zfEM5*PAjd{&$D-w)`|#DPt5dov@H+ zmBrrN;#8|^Dh4ES@MuM#*rPFC3)C)D0FkolTSnz_78GoM}FqWG76oL<<}V5snp1(*Q}02JbU#c zkyG6Xy%IO%jn?ZTjLhll6;2mnbw^^pSx>dgNVQwp3PFcLPt>l;5R!ujcd$HV2FWuD z-C}6oTBfdMJLn`M&0FQ~A@8ud0KIRa2|65m7wf-czYc4-<3=Zq5j6O_(^q6ZOV(=J zMsy<4g{>cP26R>NBUh?ldnpy2q0NtWUz^Pftxfn`^t_w*;XTww6}SC8W9l?@piUWu zPUzK#Cx3sLycChM6G#uu@sxXvLMQZcM&%rMH`$!DcS-#wcMe9O zXXPwTb{kdRWvqM!dA!gBg$_)~S=iqW`S%$si$J^(1%(dO^6G_XXFS+v6uW{#PuTb6 zcfvo*kl#t24F3BA8q%kyRpV}yLxwp z?eeskJc&E+bBBu9)w?Tfm){>Lb~~4f*wwo$Y*M@2;@jy;*jT?k-|i z@2;@jeOY!-o-1Nk@2;@j7qjdx|5n7V-d$n4`-65}Wm>E0_3N@=nELJTdB@{P&Q26| z8qijYo}8K^7SuOP{dT!u1@#S6 zmtF2dL4Cv2TbKJwP~Y0?XmN%HoWM=fWT`=a<+j#Rj6gp79AJjJ~$UO`B zLyR@ty{E22-l5QeRzBy3!c0w*^2YH< z1j=XlKJYpDjInkBa-WgU7=@njnUXi=jSl;qkbJ%Le2nCCx1Qp2*gZ-s=rb({{zXvkn{im literal 9458 zcmcgy-HTOK6yNvGopbM8uchPYgGhv2p}@?UJC2GZ>db_fsZpG1s9|FK0}6yfA}oXy z$_RvdvL2+!9_%Ry1bd3;L0@|4EeRp$Ef9Rta!$Xs*IxImeeT)koU7==_#4({54nc6FwG{MBO%?eX@6F|~#<(fX=sn&_!2tnJ(|6vq$VjN`Q(gvM0< zh~xMpL7@|x+D6FNO|I3kwAD_gO<4ZG>I9N4W2)Z>3ca*VebV{9ldgLLC$(19NtMmV zebVv7zxh@#IR9RFB>%chQdU(aWt{clts;}AyCn^S?o;WjPVuVpE#jIp@;LAB&j`^T7(&DbZfbrbxX5)}H#X5PP(ulxNE@>kij&2QPWfjc2RX8ppE>;ou^n`bk>;(T?;-CnT7=%WaBzns?_<?8{*tciixpF@graJAGy5vvjSF+lY>) zy0G;l&VU{)e&qQ0wWoWv;>*$Icl4e%n-^M}@VV%DH}8YHsEr7>{as@kG)d$nT_12LF8_D0IS7HPgb&tL+lA=vz)xcniP!Sgo#vN@=yJT!PcS z{Ne0^n-=!xXBSu7UF1E@#j0ZMv^>E#Tk|+_02~{$xyG4m>~g|Y)-Jklj$N%WV|UK( zGj|5J+sU=7HHPgze`s*KD5jkAYK>vLor{Cp#i*WRS8EL0ed+e#cJWy#$F9~GwtIB< z;CA=s+SMAvc2Arg-0r?yyINz|?#ge2+a2GZ=Vz-AJIk+MUFBu#x3kaM-H=RjcA~I1 zx3*eZAD<&r-^1*0a(8%ty1SI!-y~12nfudSqqIJrzB2XcZcthuzk)OM=_)U+kH42> z>eJO*THl^m`;zNHx&a55@$veZ53xOCo!b?NL2bLpH4bLmV8bLsep zxpY*+Tsl@^E**g|*WmqbX#o>>R-8Je;^epr;^epr;^epr;^epr;^epr;^epr;^epr z;^epr;^epnkJGV*>FhYUxl(I%?rm)G{eDp2q#*Yk z)sZ>t%f5 z6%=|&pEshY_kE%{8o4(OW(&O9PFX+7M3b?qUiryt`1?bU$JfJu5VF4dfnSh`G|nI=u+r{*+4tR}AUENs#bd|0(i)@ev%U!o8R@O*X)3*z>Uo}A zs?&LEss84zrMjB8mg;5RTB?J2YpK5Ft);3F-gotzIqU82 zo`Uu48N=-#`dzQqT?Wxj)?Mcfu4i;9Pkwj){yO^$*7xPF;~kUhKfJGU*YWPl mU7spg$2&P!9`EkJNJgUD|GyenmXm$_) diff --git a/testdata/algo/device_extract_au1_rebuild_pf.gds b/testdata/algo/device_extract_au1_rebuild_pf.gds index 72911a17f451258f1d387ebe7b1e3803db577824..05aa0b9805ca490820b95b833ec070c54182e90b 100644 GIT binary patch delta 3133 zcmai$aZr=z9mhj>i5*3ntx7dvN;|IC)-DYR1f=K)Wf;QiLk!kY7OA46h#k!+Qgl?K ztu|r{%9qg?pRzbBSmrP-)VYqjbhqP=p66kY<95BR3`keXTA#MZYAjOVwrS9@H(@J+_#2_vsCC zWtmR5EH!Pt^Jrn!#L)cO@=H%ePStJJWvAUcFT-Fc&t)5{YjX2+(h}YOjm=9;s7u#^ z?-`niJP}>K`(AIV4C0{~ziSXN-Da!SB!=O%xzX9BZi7Cr2(eTX?mlP}7+5Cj^9r>_ zbU2n%heL^3ggIH{7AWo_Y{{~vv_hx|${R(GTO8%#LH$OocFoVKgz^HqDJXexxqY zxY7jnIL%sw$;XuiCK}OkE#J>s!>;W4@p7MNI|8t2HX}Xmm5#>nPH^ahsq|o;Kq%#S=8XN%PXZ8s)5AAPKE& z#f&00-LClgM8z82s?w-J)~GhwJD8-HTS9T38*?s(i4qR+-0lv+SS}$*esrA&KPV65 z?z#bVT3je8lM(m{)o6oDX(uaW@b!Wj?$SP;FQ+42!qBjeAy~=q*Jo(otPK4>Wtd$b z26uT-On#WWHtM@dc?KsP?{bctX(RF12sbQQ)+lPMmTgkig=Q=Zj~%}!AXLBcn z%~G@-`X~PN>;t3o0Y?fV0R|~Rm)~9q8P73Xt`!Pl@@HQ7Yu(gJiIyR>#S6BDkwVz^ zthaZIn;J=N=o;PZ#TPY<6hdj8gm0b;;p!_K-E|y>y&O;coa6I-923;KU!|MLC!x_N z3gK*7iETau#{TE2Y~MnkgzkOTMC2V`zW8)vQ~`Ob@=*zF|8)}orea{LOc^O1X58E= ziZ5uSQ=>aca?}g&lR7hAPtxqGnwP&{Bdec|$~J~fMg1t&oh zMp{A$zR2L&txB+Q4@0C?mEbFW88a_Q2>5Ax{2_ES44~^}j;tLVxA*Ygof0nY2w`A1 z2iqCO)Qfa-cXDL34B*HwI4WKW)0EO^_OECMbDsAi_Pm=~Dbb2~C7geOp-4+EoYjjfEr5pcWbhzE9rt_ z?}_wly=wZ+W0X$Cqa5qoY8?rE!$~v@$uOP?!!qE(S0|YwQ;0!mm@|}|rXNyTMH4-@ z{f?@2obDBhvmQ^w`)4ZQdY39hUWB~;0~}Y5%P0=hkM?glR-9m%BA$y>DQlUh>aRXk zgDx6Vj2$~A!+(k)gL9gnsv4HzIVs`u(_us+#1RinG)~hAdR=uxFRCcE`G(kLyRx*3 zcPK!`+h-IM0S#|afK4r(2vD*AT?IwJ%v(FCRH8Q5-w}sLknOCX$q^Gwf0#w*D96kP z9Oa~Q@6(4$@<%zQE^riG;2(?>rJ(OmJ@`*_DQ;b&za6C5A31VK!HXPoA98p;1cr^7??ko2UnKQlCvKBbtxSTO>zWvGZT-1-ZZi{v9^l46$` NT1nF%2XQrK_%8${fcgLc delta 3088 zcmai$e^6A{702JMZ&ypul7tuv%Ziq9j7gVefrX$VP>irVFAFMFO9(+@3?LF~2pWoL zeiR52*e{Zo^@gm5;*U~FS!*4tl<7D&%{bI{9Hx`WSUT-6nH|PqG8xBlm`=}qZ})Ad zQzw5M?&qF&_ug~Q_q_ACb7IMz6HAUuR>^GMCD}~orT>&-rSD3Tv_f+HH%rURR;8p+ zlH!+G@(Mb$OK+ZEc)sXrTHwr{9g@xR=-BMi_L>#xHqJV9ezHMdDX?ooB^dk-o?lRYzQ4{M&Tr9)G*m7lh393qSTw9uM*=w5|e^=6EaO0TkS{9 zY6j1md9FuTcy8ylVGEPX-yW*PoGhdEQ9uHWV|XGmx-v%_5GFuNoy zl-qE}n;s7D$+S}BW^(jryCO%l*szYm3uCj6Vo^0MireH8fzNJI^uZ2=Vh>+s*2(a%JXho@)0+*n<%cl| ze{_^$zl$SZk#WCNMe_>`)&h43||y-tfQDFJRFNOA0nM^Mq`L)+M!~WE0U2=0&QnIohjb zeDxxOUo#aWRTWTP^q{(mT3(fmmLD^$*Gxs;%hW9P$~ac5VstOZ?N?-k_NlP%7agNu zXA&9=s(e-S4&fUzsONy_9m4meK{sC$y+ioo>ja%WxC-muBBhTBQ=!yXV7|T>W3O9{ z(M$8&4Rn5k6}b%qP!12G>4=Q3pQxBT!ZF({+#aEOL@v#@@kE5yp43+z5o2pIE;RbF=M9c; z8ok5{e9e9|y(OdRpo-7l9K;my)Io*j3d~3SbS*iU@H#c_+YNFsaMW$W-9sFSbh;kV z0fRz^IVy};0vbKuRFBz1R47I~e=}$eCE^d^=;Gd{PeoNSiYxv2f<)}E^b#w0f<#=g zlVie=Z5fHBOX=Ci@wFjcJ_#n|tVi5V1?x#PUC0)LPQJoXt4S!bHfB&B6=3rYHF$4# zjtPO?4D#+!u!;tbZ!!U&-#=8{KJDg$V zS$$*_+luoF-l6yghrGeApHnT)UXU^Qv4UJ5P#9*FJs{X$f~ptcd=`5vZ*8EVfC zqW=Q-owMNVxzo6Rp5w2dmg3MU3u5TZdqWIW4(^!xXz_nhWnXA}e|Kk7hv;{gw49jwl5yjd zf;lZO;hFDDBsEq__u5m`B7GcP-SlzkFTnNSawPt8E;u_*6OkCNJRba>z5`@cWGl#~Ch0#NvQ)B}>$#Yovi=91=3Jiu diff --git a/testdata/algo/device_extract_au1_rebuild_pr.gds b/testdata/algo/device_extract_au1_rebuild_pr.gds index ef85fab2d912f31249693a241c14a51d66150547..9725c79bf9ac313709eb8ba92e6f167bab4fd40f 100644 GIT binary patch literal 29092 zcmcg#U5j2<72flaGn2`*#OZibiinKh$5=D(OeP7%k~UEqqDe_&&=6>UKnsE*A}R%2 zP>N8{tLjA%tQYl45DN85#EbUE3-4N_S6&E(K(CV8ygvKvz0TQdf1LBKvo;e*SJ`L1 z&)H`^>)B_2o|wigFMr28wzRzVU$bH!HjkKX(}e$T)|Z=aUV7S??UiFsKK08pm;dp{ zyXP*x_0>DSy>-JpcC7rn?WVbK>Dq;FU%K(!jcZR`xxRBSGpp;yG!HGCRnt7YY>e4G zxnj)H=jQVV?>IYu1NOmuPL|4Hn=db$FPZh-X6Mr0o>~2rDWL)PmPNzgLyOj1Du*qj zHDTS%`>5N?Kztu4KQU(cB3UYLZ3b=42&02%^3hr8Yk)}nd_Mo*2i6+1@>$g6r(~(z z+T8PqYjCQoftDXIU6CJ-rsc<@Nu#rWu8WSApQ$xC+tonJ&wf>YIGUCpk0$2lOcxz3 zKT~UP*wsMG&p}mwIGUCpk0$2lbQc{hKT~Uf-&K15;8`lRZyZg_k4F>pgRHOg{+U_> zw2PJaff6h7!_l<-cr-CT_4)@>Yf!I$fVR3KKO9ZVk4Ka8GppA>m|BB+{R1FX3_-+}0-*I;S z2JFA>_|#b{=i}3Tp7B9%(4yGrIJ}q{P29!^25=z{7lW>YW)K{(w)@0WcvqG_&ESl{{3Uo zr22`_l>88yR6l!&YMs`9at+WbrS0`3ev0#Nllb9iT7Ep5n4fC>gM+Cx==%pzi-f3( z-amGxwW5AFnwB4rCg!K_yC~-mC_3UARO=rc_!*|W8pZ7!N7M4-(ZtcI)<2-=h-*-- ze{kSum@4tZ(X{+{G;ws$Dph*_Oszq^{(+xis>BaR)AHldr2L%g*R!=4 zX^$r5=X5qY^4@J<;1Md$kUV(!TM{x@SZU35A$X>|6p(V3vE zt_ErDOi)&g7DQ))vN|+rbY_*JbM^X#V(!SJlc1@h)1yhFvzLvIu-$2Pn{PZ_YLkV! zO0j~-2-}5w)>&B zowd8OR{n%`#M|Zu?(zb*n|XWu2e|$(Jd3w$m@z-LZ46oLdn3He-K9*ODlxTZIl?o3 z4>9*q&vF#_5tlxmOi!PDggO5Ps{Y8BbvsA&Az3Q7c7Pp*cJH>0*L-g6nq65yEy+?j z;+ct$uiLSnYoPodXszP(rq#v7XxlMsHri(;y1;r}q@v2Y z;PaPSU2wFc)`h>jv<0(c`z%vu7Su)HS6LT4o?2aSG_5WsM%&I6WTSl;XFA1lG4IN{ z;Pb{>U2wFc)`fV^*u5_fN=%(zP#1w8aapM!#p9{f1xM5BVq&!IJV-Xv4@A01yesR1 z&(~{p!O@Od7vi~krwcnLlVxguL0trXm36`6snrEX)9PYkv`gde{h3G?iFajP@O2Wc zE;!mz>q5Ln;&f3OcVp^gvGGOVS6LT4o?2aSG_5YCMH^e13awBwlBQT@+pNU9vM&67 zYX9EX>Vl&kwJ!YKh2x98(zqK_CkyE!^dl}S^`m$^wYuPFT3t+xc4^#=>5ph6O|i`B zBK5AU3%*NPs|${H)VlC@m+GQ4?w$qXX^MK5qri{2tfUJbPpvLEnpPJRqg@(z&kh%C zg#y3I(dK)&wbABi+GvaSW4C>wz0%luc3RX5CElb5pXb_HaULseE5y-`x)qwpRB7Bj z+ZQpFcoS3Emg}I`9BFCHkML6F=kt&MW7i3t-F(-rNRg#-zD`KzKs;K&yhX9=fDUcx zJ%{Ejm0KIG9Ytt?g0Uv}NV^IKYgfnI>Z7w%9LM3%}2>&DS`5#`%J+qLVa zVBt4psodIJ-K6i~(tO5jPo#jvn=&?=*|P-|5cm;ZB?a)-N~-{lrd7ZI+5`n~G_3+S z8qZm|0*27!3h-!B1(fEPFvu2+8B%Y`*sKChEvSINkMQa!fX*`2c?U#jN(Bs|$rTWx zDHRZ*DHSk?CRPBUNfl6Qb6KO8Jkl8CPupXkD*>r=tp>!6yQ&bRZ;*)(<)#9 zZGr+gnpOcEO{;(*G`Rvi+K2*zJ(KN-4R4NYjwU0p!AwoODPObLnGyAvAK_KXf4);j z*$1MteZFqm{O5IJXcO|EqiOS>qiOSh2u+^<9!;44m{rQ=UNWv7%>Trj@->US;3ycA zDcyU5@G9j$-w~tDe~!j7Rz3=*lbAU*O~`*^#qY3jLs}0#4O-8kY z`JZ@GzGkt5vF#vg;753s@}KW~(dIu#)8_vG+JyY)XxjYeXxjWALX+peM-%2hR-tn_ zidAO82srhoe9d9+1tZ(R{15yHuTuW=9WL7Z=V;peA3&Rs{~S%5{~S%5|3hf<{P$?W z{Kv0yIf~U}LH?)Sl&?8#><8SsWCF5u(o^WWJczlaSmdZ~&F@Uxn*6sc;P`Af%{t9;U z&p7q=qux^a@yBy$LjKU}&GCoT&5jXjJ92(lQj2&dZy#~iHaz$c++l^#@@G#FTK=4+ za%+R9>drss`Gfb{HsbjE7aQ^3Qu%|o7e@oaWyjyr*DV_A<}H<*%L8Z;f2iA&j=!b9 zIsTlba%*#FLjEvn&+&q_xrmpcH%00lv8dWF(4W&zbHc9cA`*hrr3o6fqDOMNw7*D|a9(8tUc{o0Wbm%E>+Q(iMbDK6=d^QJqEn?QR`8w_o+%BmMk0K&KfP{e zVhiytt00YXIwDW>2m3KQZQY>mScE$TI#;_#)t^jK!*Vmh-%khmZ`W8W# zfs|Ruz|7SkKl`iYTrc`?oQpf{mlL`=1Xnk=@MQ=84F+5XTd%RN8{iJ^%MZPVf+uKy z?Y|4r{hF?i$LYq^XR#RvkyzhyF>5jKd;6#TVnTdv13xHT+rCr2_L;loYhOHHzP68O z;7_(LU;ChZ?U_^MYu8>XU%UNJcI{;U4r+6%jZfqgw2kd5S9`*uMX~>(n#W%4e4{ZV zSnVmMMZKcuitp&LqR14yqSzL^B6bR15x)hmC_@TfQH~Y7qAV?Vd5%g9wJRc{vG-mh zvG-mhvG-mhvG-mhvG-mhvG-mhvG-mhvG-mhvG-mhv2Rbc8Z#2rc5T;~k*Kyi*o_&9 zYP(Oun31Tqr%8;7q8fa!#GifiKMdPex*&7C$Ll!=KS#vCnP6x+nljYNHH z`?e?X!$>sO(kFfxnlE(UL+=;0W(gkV?pnNv*Tm1w#wGkGewYhy@uCcf{bt0+m>=;G ziU7;xgt(e2nC&{i;bD=P^IxVv^ z--~Cx(s%@R|L^X*KGr7R^$B{C9*fO%-TO6u^D0JSuxqbiR^nH^rSj%gKN~TKWz2Vx z0PtEEtbFD?W68T-~K7toXfpufOZ~F3A=_q s&n?WEk)`tHeDNs*EZq4E7RyMJAD!hVQ2+n{ literal 29092 zcmcg#&x<8j6~6ttr(SnYkB)7-2|{l4AbqPVIcVf3U4jGzcY%SdW;Fdgr|$i#?ysu*PTflnOis9U z-dCs2ch0SQ?vEN(snO`W>fxo)_}^+neOf7XPEG9pSF5AyTZd06wY7Zai6?)tf9>yo zym$HFt*_nv?K8*f;WOR8+p4OohqtbN=kWO1<6BQ&Kib}%s+Coxs&gZ?tg26q=w3VL zm*?~O&*t<0eaKR&QS}2Q*9qklv?=={T(Zz1(U{tmDU2KmcB5b zpZr71`5Pop$QmQjPBLPFc^(gqp5YlrqrZEM)=IRK>_)3>+tdeS+be|l0inF8)aU>b z?X`@ciM?~7@lGZ`(}DcVE;kl<9+mO~3(D~0p=I&|G$}u`OO1Cj`I!ynXTPx^lOI@6 zh93_tlOLdo`Ppl{lgZESP<}2p7G&}R3(D~0p=I&|G%-KBjdwEnxj2-cSz|#aKd_(- zKOR~pKR^@nQ*3-dFWo`ogITfh0W2uPkB64Y575N?6dNDx59DWBYO<`6)I&fCXjv@z65)0h*YfV&j7e<-w5pXIgB001L|SKblXvKs zudw8*knGxqL_15n)&!c^JMGvdbM!RWf_8k6%a6&QLj1UBx%>>x?RM;v%g;~?+VMdq zKf8ofE`L0 z)KeDZ$3@HK$DoP%X~!E9_-MTtocx|^ulX{2OOv2}(y9?(wZXX?$j2$1%@{W9NqqR-y9bWMZy)z(o z{O7U8@r)*n9Usl|&Vbly(4^ks_39Gdxp8#0Gj`zW(hSN82>YO<1}P-K1uXdQ*VPx=B>J zf4v`yJe081+Cg=A{q}U5mM7K9I_<>T40l#-@J_0e7pPw#9Ugn7^w#e=@#e7f$;UL4 zTv4oitkf!3P9H&{ouxgi%$D(8O+VqF-M>SdzK-W}mSdi;CMzM)ULE(KooV+&5z6lg z?R723Kbp@U{FKm)M0@pm3{C3o3te8EsOq7mmz5%)Q@`~qrQpk`&jW2RWPG*WJ{|4u zI;Ygy=d|2-mkfA_Zet|cNk(>i8ML!58hQJR8g1!)jix2qYuSy4p5qQb>GC6F`IeTv z6K(lV^z=p&e`@r7=2^?NAJX-I(z6&jen+V@Tg^YL(9wyph>;Wbz;nmw0lpG7oj#7Dw7v@x-xm;p`CJG;O zQl@yWAj;HU8}IOXO0R5Q?2={W#!((xW?leI>TUjA)QcBIc@b!Xp)&6aJYAW*@X$^< zFK~A$Q=Csxrgj(13rnwTUSLmYnfHZQQgcM0pWtm(2@2U75V_&`voo zaCa$FT-`>Qnl6|ZmR{Msz+T=mdEudD<^|BC-tMZqY5GG_Uj*7^^8!y-CNDg+Q_c(A zUC0z|Y3j%etDc6}qxoa$mCXz6p)Qjb9$IEz08Q%cuDYA1KLmLZYJ(x;tIYW*JYAW* z@X$^ z^1cYP%jN~1u1sEdXs4VPxVx08uDW{~)OLvaXch(9U@EE|snt_@z%yJ~BZc|=zyINt zD=jzP)oX{4Xm?kxa1JD7o>6#ZN~0~kuhFzbyT5Yfp;;@Cv`Y2adcBe)uVd=AoF4_)x`3|A&@Jb%B@Eb_9vy9m$&48}CkZDlG^=3ezjfjm#cBCp# z=>e}$2Dm4OthL)g8Q`MjWK_y7hgXgQU&y(4Tyi&w%qu4(Q@Oz z4^1Bb22B|MbUry6dqG{>8~=ee;x&rBU==*E^nh0={@v4?x$*C!<@WzQXanNkMazwU z7cDpb`_Sa^Z_tGCPbbi$F&b30z40GtBVMD}3)a9BOAmO3;@>?Tn;ZWwT5kOJpbdzB z7cDpbU9{Zz??aQvzd;kmKb?z=#VD;Z3o77H8}S;$o-9}a+j_t&6#wq&$7yJ)%b@1o_#e;=AW{tcQi{^?h-7^T%@LHvi>h}Rf4t>iT;(tU3gTMu}J;@>^p zog4oyT5kOJpbdzB7cDpbU9{Zz??aQvzd;kmKfN_#F-oh(3&kky1L(+;SfuiqHeQ!v z$tSFMZ3q(W_Ig!&_S&G0+mlwbdPLtYUwc!_^*>OC&^OE>(Z2R(yHb)yJNvjs+n~p1 zG)T0ceY^*4)wb=y&&jsO=%gIUjX%@*s~@)#?Q4(4(1iTas5izRt!_5_q3?+4(UO|S zAGD3foxb7ZBjS!$2$?@V)5iR1iFTIOQ#I$GI&3U}^y(vO%k40TJK6; zZ>Q*8^aQYVPCJGr+CLLwS?@{V>0b*g;o2;oo?eK4R7KC2*bddwG{Gye=rhfz{ zDLvpBe_J`F_e@~N1$JOSqP@u}%ST~G30I**EGwqChvt~lJ#}&yMgmJT`UdRyVcJY7F{4|G`%loNMd!gRW~^ce}5B{$BUBFJI}tHY0D)pQtTg|FHYo(-*q0 z-FmtE+MV~DYv@$lZ>(3jCd^cg!vBHgzE(Zos8j-Lrm;M)`&dTH+_USB zM$2QV1Iy#9L(5~XL(Ai^L(5~cL(Ai}L(5~hLo4C?dPRgfiJP@wyS!?&623QD3Evy7 zgzt@3!uLii;d`T%@V(JW_}*wGd~dW8zQ3sBK7m!Q?JAY9YhPm}p0VC1p;W?Omo=8> zd+U2Ox(A@nr|tthCIdY^GNO-;+;w6s(4(58#`9t^(9@NuiN&_>3G}EEjrCE1o}QTq zav;##Gk6|ffga7>)%W$-5A^hGT)=FgM|0sdUgEw}@ZrUPk4Kv^HJ%qyfgbqqq9xD+ zAF2C-k3?M2#&&IA>b~G35r0$gk-9JVNW>|Br>5p3ao-vENW?RL530tq?`uZ!&ZyL{ zz#jZfe}Rc*@C7DoBx$gmnXdc4rr*3ql^DtKt28U|%T}VjddySt z`ezZo%2-;WeNn7uf1t5gGRAYyx012U^=2P+TYa0Sbmm;{KTT*?=qX8#-y@4?&I}Um l)s@btw6N&TUt%mR8RNOPG!{#=H(2!V8@86w2z6ye{U4lvB>4aU diff --git a/testdata/algo/device_extract_au1_with_rec_nets.gds b/testdata/algo/device_extract_au1_with_rec_nets.gds index 9768f35d580b9b12a167b58ea84160347d7f6ef4..7539914d75af2cb4c82069333bceb1cea6a42bc1 100644 GIT binary patch delta 2032 zcmb7_TSyd99L8sNb=B1oE%TOC#1^uF<#=1eY?VqZvoeb^u%PKh&1zTeVwde=YFcUk zZf2Ran}G!B84PK~28$j7L3%R^dKh}>#Zc(AKF1AuIaB-a<980<`3`dqGrR9QEZ;gT zRf1J8oA(K6CUeAh!6L*8i-klX=kKu)X||S?77IdxCA_exJ#X9l=Rfi{jjrwQt*R8# z!nwWfs{KivExSKV^CEg};%3UAImN^)DxWL{p)EX$-*i}~xgn)S@}I{RwTD|&nryrI z;n!$`W|?Tvd=)!lc5v=hNU&Nf$~RXYtSBun*>TWbnwd$a>?CC{-WT@&9ZBzWCWg|< z(mVA_L+NDeot-N}>E!4gX;mnlT)mUv2&I#!cYbDs(s81*mEI(ZN^Kvmhc(3pVReZ?SW#vWZrNoJuHS1AW*jgGR~|A56OZsivel&1>~UrODoHx7lKYrS ztX`$rqbfyf>^uzEIT*0Bpm~ng3}bDJM>o5I46w^EV3%OP zE&}fy)ec9~kJb#5hZoUMYcaW7T_l0ot1e=|4W#*TOWm>v!RQB;3fj`iep8{1Ng~NN zRPtX}N$XU}4&)BZuVLPxY5%81(%)d>E}Ba0D+PjJ`c9 zB>yuP$-oXYzl;1p2Ac0*m!Q-SbXd6GTHIi71TUnC;a*;*G%$ld6Tea)K^1{QiVL`? zD^N`Kc8RK^VrVLmL(5}D8gokYZmft}##~eyEmA?gM14`Q`nq|43}n%An@FQCByz;Z uP~7+k_enmF_gHBAM7-H4(3HB$l9?BDZqPYFX9t}Xv=nrvpme>>HU9<_DJ3HS delta 2056 zcmb7_TWAzl9L8s6Hyby}tVYrlFX&RzqCpThn;W)a9TZu+BzUQ4d{_~DNo{(`#5Rd0 z+if&zyd-{Vu`w}b8w=t?^}VX{^xw> z`*Zj+mlyrM`~ALVC7@{94rQsT75<}?DDxFXS)i!7wK7i&B;tmml=%u8)*Y?={QhsR z>(}30Jv!99O<7tX%?&p1{7}+z@ZmF=h1;ssv#w~1R9Vn^?(;B<3WD-vW#F0A#Nv7K z`xFJgkOr;&MO)?Obg@S=p?f56gsy8VC39641_E0eH*8C8i8pR+N>;?zVBm7Ob+t6( z|KE{_8yP6iBU0r?%q4k5qHbhIIFCrR8~OC(JR&u2BwU$Cq}Gl2SLYF_b0aUSGJff^ zIac>bZXW*ZFS*%ic$lplJ>BjLvS@9Vx`R+L0_PhTX}!BMtFG3I-A1Q;FD5 zC8C{5gh?f$jY`CKR3g4@Lsx|k(KCbj5C$9HbI)fJ#JH8`e(nZ10S#Mlbh% zqDMrUO2m&;B2w%-!Ta^K;_N8;U#h?*!IEFMah(^SrRm%z$uMaB{M^;$o zNzN*{P)GKJ4d=LxC^7qOWRG!ulxt!hvGBH0x1676RNQUSGtN0RFMXb^y-U>;TL$?p>lsoKY%qE>ejzGB*G}-i){4 z_dbj*t Mn>E(&_iD6%0kU@}D*ylh diff --git a/testdata/algo/device_extract_au2_with_rec_nets.gds b/testdata/algo/device_extract_au2_with_rec_nets.gds index a92ab674427c406b3518e33a225d34b70170aab9..0a0d7faa30a9341069d6603f8808ab1b4b1a353b 100644 GIT binary patch delta 1351 zcma)+Ur19?9LLW&+wT0sVwTO4ZM}>!g$UO*Q9_)kG1U2|$=fn5M_s6;SZe>|6 z%i=^KjExdEW%jScLiUh-#70{G+>;8X^o2VKskPYJL-$&G-#puC?Rs(KNhTg8ZkyDX zj-RfRv`oLnRUos_!>QmZJ#k?v?> zI2<`Kknn|@R7gAP#K~20SS<3fi zJ_&qY2d@7spV&#>w@AO4<%Nu02BB*yBV*#{lKjsA{?ucsaWlmjJq9%{7tAi#(B|Je M6`s24MK^fZFXf{~L;wH) delta 1355 zcmb7^Ur19?9LLW+(>rxt+r%8%Ts;g~LbT<$VlBz2)v#@~mVXwtP_Yw8hGu`r$yG>* zXt;in(1?T^1$zlPafu$Hryhc+r$Q-&g4ly#cnNw5`nkPia27rM&hN+hobQkCk8{uc zmZx9xG)ZJaX)kd})cTcdAa%q+oMc^1s;GP z<+`(f_Q)ptoPw6wHwz*JFC-!3dAeB=3HhR>46LcF7Asri1tEmSDzTrM>TxRcbJzB+ zLI@}9OJX>>X;p@Yt`4{u3BU(e6b74G!P&GA=9(h7-wGeG?r}$o`*ZGgpOuum2vR4@ z@#w)sDjtp=ilsc^c9;(}@ZPO@MT_8qNc~?DzYnr@Cl7l5N8>MQwr$tNqb}}vD~2z3 zeHO!~ZDru2U>SI?Qw$*!@^ZDyq%h)9xDnPQt{%q42#rbbq*(zYp@E8FoWP7>bWcK{ zTZ3mkf4jo_3CduPzez%tmk$Pk>V1$6+s^<%gGVR!kD0bUJyIXi~~ zuHb-$vp5?Y!lf{X1IBhMoQ;|m*tkd0*#)Yz^OUn;G_YooT`d(lyCUiAvIOjs2_v^` zd}#7V$s$W5m_Tr?WU(-{4DTCD7TJ^r1x*8{{mUX>oxW)izMMNVIjaalD3cR0{xc)~ jKY(}kzEJpSmQu+Nj)n$E-*!m8Vzrd5wctzQK2YgzRq{ZH diff --git a/testdata/algo/device_extract_au3_with_rec_nets.gds b/testdata/algo/device_extract_au3_with_rec_nets.gds index 8e5c0cd09a6a71b2d2ff9d5464e0d4dc3a691aca..969f005948c5478edd40ca2b0042e781d09fed14 100644 GIT binary patch delta 1661 zcmb7^TSyd97=UMHXLr4@D!O8V#O}J0EP=_Y=|i%uiAcI`gADDa?P^3Nx~5^6x29dY zs7c!2-Hf4ONz_U>FCq41`Vd{Vc@XUCb4UgQJ(+aIF$m%;^m4xcpKty%|Ndt=o8Ou6 zI^(Ad6vG^$a%jf*jnYvmR0gG|O8<_j1jbNZ<)$dJPG5FlaNnV&$3IFBKF=4&{dH81 zo>({L_hk{b9DB7wQZPr8-4ruUszdd&qv2owF^7p_!yk zhS+O~=^aayJJY|Cr8#Rp5z?$>@Ydo2kJSw^s}mwt7wBv?Fluu`xy=O&IQHf`L6_@- zNNx?J*`2U}<8pfq#O!I6CqW*M+<8!(GegaKl`ux^yTEEcOUc(K7;aw*c~a1uFUlSnL}Cu1^52 zS5bcp1RGgc7J4BVV1ZZJfb$EOKFt0N%@5)nzsIX=!q11=v|1eVL--l4UB04`R~f|l zRgJt#b~5^fY^Wl-hoba?8rMDWYXeqWFmGZuvuOFo`k&Ee4j%&V-*c6U1Jpo_H9#7~VhIO&4vg Uh0y*q1H>Ih_?Tltq1iO!ZwY0<0{{R3 delta 1670 zcmb7^T}V_x6vywqyY6awMP=0_5xs68BIvpg=|i^pfk?WhT*8k`%f2W}b1}%&wlytn zHT4vkOCoz&+Wg3HUP255K_j;EVTkO59(t+=751fvijI1N3}&N;|NPI)Z)Q064EH$J zgrBQI6{q6_p@NI&1^s6(jEmwTxma#n%moX&;-XxRGiZWx_V?^Lu=rp-JO4@gn5#)c#m4h!mXplTnPdTtR00E%8S*3xEMR;v z*$kRw3v?!zK!ni@3mE4aOJLcU2Iuv9=rm?$=(#|T%SGvQ<<8!V@X)L!Y;w0`6U~UXMJSD(Y*oSP;LO&UC4&e zTAV_pGQR-x=^}BL+Ib>bac~#gcoHp(K}4$cYhbNFRHPa~k*WnERr-1O5gker>m34d zpWd8_iu)9=xKHxnKH-O59=z)u0t^&)1A?;%&iJ9)6AFnJRzdbe!B~?6q$WGK8ygY= zKPIF#rx1D(liY_%$}N~5wc#K)+jyn$G7n3weIU2mfnKsHOYJ-qw)X*TvxD4bgQo^j zk?lOtD>z5d4%BswQS=5niuQCs-BBG>^t3|VF&(_^ZG?GK=w@8ei)%Hw*3|}b7w+xG zGbq}Lj-uDlQS>T0iaO98wv7rwV!amny&3R5Ivjl7%uNq_xaGyFJ5~3o9yYFW)t##Q z#?#mchrK@+Xw)`(C>n4;n2OWYSFduX1D|7Va)XI zzY0%|jNH_){`Hwrm!8GQjK{_9AjiFI2r(1v9{PNO-6rANOS$h!dug@VE40&F%!dS%gY=LW8gJKM+OfaTbcP$cyvBn3e;3F85(Nc zSWR^r<;bzuYcvH5EZxm=0a_iY<t z1^V{_RqjpxMwf=P#aKu(6~Q~B9h@cygiJQ*H`#$VSHP&*2E}GOEMe@*v;m)KhyKh8 zNV3>q3FBf*1%xaI;H#j6eoJAFj*0eh8G}~qc9vAtyUU!VmGzdgoLoq>rV+35YHJq2a-2} zLN80_SXnxYhcshpdQcBidqkluwV`N5(So8n7!M&?fa%U=a0ipYg|WG_7o-j!Nar_T zN~5Fw&%oN1Mch5ubq{tOzK9LGyOpIY!ojl72PHl~gfIIb+#4Y!*U&6q^`jn8_FTa| z_|md3{UufI03H6`scD<1K0}#^N|W!`js`m7>B^nBP(< zDpbzAsZvyU67x}&qC(|eLn=ju^_UN<6cu_f_jiNK?}N~Y4_qT1%IJw}qK|`cKpl7Z zE-Q!cuq1qYciijkSS4-ljDEch%j(i1?t#I z?ZY9S_D#t4On_ebBp9GyDGg8Q5)5ip=@< z2v(-qy+R_!U_VV0!9dUmD<3YA{h^1R>Y;?a^ia`pF38}w=;8dn=lA=Z^W)s};~uw% z|LNwd88yRkRg974G#{B5CZ5qV24;uPL~?3-X#v9|@DX_jy7nGid9ayVG@ms-QY|vZ zh#j$i-Z4;p#6Y=n;MoQZ!2(NXQ``tGj~wHZSt|6Z!obCdD0=2Q^#&EfS|q*J#V9Hx z)6uOQwbmTnOBEHS#DAc}1jAw!#HHrJ3sXKgQVU=`)drr_eBgyL=of5IDCEO3`iIhN zz^CPdC#?+P%r;m?ztCI;>*h>2qtSrJoNLiA;U1TXSF0->#bRw`siUO4)?AtkEfYzk zXpgMQpgcO0@K=h}Li8C6{}FEmeTIR=WXbdvtk|B@;Z)9hIvm><1`Za4f!9mu5ZdkO zM5qXGu#}}EQn`yIf&&-H?qo@#sEZ~-Lx6{`#X4E2=VYOdBSKApg&&DpVrq1AL^>VZ z>13&im8DZGNGAiZ+lP0ZLx7Gfokh@spg90XeOfSG_yVFY9>!bUAhfzbI^UEM{xKo5 zEuAQru*m&bq}Y!2DHm}O+nlUi;$mU7vj@aZ7bqQ0dG#7kO0M=`hRiKtxk+pbemprVOH@DbN9R$JI~;?NE0@4X=lqVaciu`c*@CR*z?WmqF~q*nZ4G zQ+iO*lwMRcr5hDZ@uGU2TTKE}qY8Tc7WkeR3v2%DpvI7GwTILj(zTGr%!GJIy&+wj z$%H4v2}HSrt!=jHWaTz1E4T2&hPQjJ+za(w8AC9N;O_69tKhKwIn;L*yplRVl(5qK z|LQ%dnds(ezq@~OL_=f5?;D{Hkp@2M}*tSpwDVK7y%^H1i z(-5PPrr2XRW*sV0?V^x~40H?+N`2sg)KMOcvMeONNH9JShYkrL#P7_^mjLT-*N4vk zH|PJI|GDhh?HRcjJbo{jkb;sdZ z&{h{^m#@!bVW*z8)I?a!*9YE*Ya{HCXhxlUM6rE%QG|u>pp6bo)eVjF|NL5^DTL0?I|@*qbo`JhqYqY&naCWzu$dIXHd z{gIhmdj;x;mqvIeDr-T|1*8yi0xlqwQu3;wg6gFRa8m@hDJ7Jw^HWg06aj9E05_$C zl9&AyR4+wz+>{bZ*7_-^UWx!WMSz=9LdhyW1=ULt;HC(0 zQ%WdV?Wdr6DFWOS0d7hOC2f8Rs+S_bO%dRxOji=->Kcd+FU13iiYZ~97LY>73b=qU zO-Za8OEzI`tQrsRCLCITPLLze628?*pcCW>v<|8v(6`_!>oCt(t=oGi)i?XTuNu`+ zzb@bRRiirUhXc9!zG|I*zOVX2iYx8H{i^eng{N@8cHq(lWC_%reoKNNO^_u}cTo*N zdOPJ1s6A9ekS53ys5EGTAia%p2-G(yhagRmB~WS51VOr+atPGdD2E_TkR?!Gry7DZ zL6$(>N;Mwfhr1O&_V5(`(h+Fe{FY7uhr~YjVlM&NUU-_lH#M89)RG`b@1`1pwAfy^ z7lGd2*0BU#FP!m2K=i zgU-#hcKfhkj!#_cOpKKv%jqt36g;atX~!Kq4i``TWyBdq`00CRFU z)YZSIS(%Z#-ceETy714RS0lBB?kux|!H4cp{PQI+&j>q4#iCNXH1N~&;W6X>{r}OY z(d}d23V~5@;^z5TaJ8^|>WO0R$oyjN;U&e~foKtz_pb!^w$sO}nqiRZO_1VvwXn^q z7EsDf{I6~Y%&K*ulx4JbC^NNHV28}AO)w~n-#yzL+6)S0^ezBX?*JS4P&X*1z5~%5 z+761G(YJwY>fIQ`hjxL&^jwygLpHLjMA^ CNF1R6 delta 1880 zcmb7_QEU`N7{~Y9yWW+Sz4l0@AvqhZ1WruwuBpNiTB(I2r_e49587Hw)Bxc)tgO~e zP4IFW5@L$9gNz2ct=)JRi=Z;JOH5;gCi`HpU1N;ViacnJ2O6TTG)qFF-(34(P4+4e zGduJB|KH5_+nvdd-1TX9eeHrz5XEPN5QzR?h2_EuAt+P}i^f8!=-ZKaQV^;viYb)pDdn-3Z{6euBgcUwtTg$fHU2Tb$?X6v_ z6ESitx{`&1tZbc2X+qV1Qlb$O3|6yH=w5Q7g`CQ@tjzTl{1m3MOB3{{EL>zA` zB93;ti$vQWX7Q9QlGghrW+v0X;s>xZ_bb3+-BKBgAGQ5t`awyLXS{m+h?m8CZ4Vjz zt(AC^Rc4e{LI6W zpZ1~U9JhR;0GWP3($z5_&c!rQu{kWw)GM5=7KJapy84BespAW5Jzpc6GmRCuBAYV> zy7LX@UbRWZ?Q%Bv!|i!C=X+6izC-7?3vBAOS#m00MVy~;7i`YVQd}(aOGl~edHE|p z69~H!9eAXe`gVO0mG(41nASW2Htl*0B&sz+n%3}6YXHRvZUL!;%01vEPaR!v$h+XO zpLT6TqxBk(WiYlAraV+GOpo9+!Kc=%To_9vl_)+Bjl2VkiaM8he>vJN5E z^?IyUK7@Hz3OhLkO0M}8+;p-V7nHlX@G{0G6^u127_$y@-(gT_YCV>T^uTd3#ydny z8}eIVJ*WliS&Ti1pmZNbM9_m# z{bZ6>Ixm#SJR^V942=Fk57tA}Lx?&-B5YX`&Qst+$Mq7#8T4>|_jiAv-}iTazk4_* zJ?og5b@UMzVXTJ)DAS8XBemoJagxyAK5;YGxo8I=UdNM~9@3Ps zXP?&tSzj3XeGw@7I$*#bghqb^ruq`Br3p5{b~sDp=PwM3{otOj8e3QQ_>6xh9%4J;BH!ISh{04?A@CV+`TSz zEKQ6uurdOZ(+0JzDVcs>P)N=gXw3^3~m zb=B_ySFRb&CxaAzgbm~y|;)~aCs9;1^?Nn_3m yH0`F!dm_K!rs@+tzF9@1%8zzeh_;p=<2%*V3x)l9{#Olc(0>D7!&!a+ delta 1415 zcmb7^QAkr!7{|{!cW!fTl_HMm%m;lKJ=7U{h)JwvlNzOkNT>ya9!2tDEGptMdMF|! z>XSxVD&43N6R(|URu*bdU_viJn3hsLq&=A2C&8p|vmk?WqnE?~p5Oob?)T^1b9>U3 z8)-`$u@c5wh?g?k7vdx(q?owLCQar z_s<^J+FIR`mcx^+RK`RtlS6o*^hyg)SZ>O@I;|#f)HW@z%oKX05M~|I(s`ze5{eYI zY%O&_#uI{ePZ*Xwbv}^;}>=9WW>i9dv1GKh@Me3hHemWn&cErwt{q zH1!_S)Vt`tgWi?FRcIgVhV@Jm)J(^A^OFVpkWc6$H*v@%_(L34*Ky%PajI31P|&hn zz_UrvAICNAxgx4ZyU_A9XL%B*(7E5G@d=7il9&Q*V@bi^8knyh!5fRlUt0u!X>26g z`5qJLvpD54Ceml9rhmZN>0gQTh2M$v&rH+j(fbL#)k~{zYq1;nBKH6KuSBBu+i|<} zi^&)>TVycX$7nB;(xU|?G{x*x`cKI|vQzo(Pc0PEsPwH72W@23pYj*cvQ(>+7E_+n RHA?OhPHppKe>iES?I(JLSTg_s diff --git a/testdata/algo/hc_test_au11.gds b/testdata/algo/hc_test_au11.gds index 51611f9e7cd97476bcde9f71bdaeef56c8aa1d05..00228470007c270f8d3384797b74069025a9ddcb 100644 GIT binary patch delta 1348 zcmZ|OT}V@L7{~FmGhe1V|6^fk)A_Pi>Pnf;YMZs4ZIlq&B9cfWC~p!WiXgj)3`_zG z3w(aK+C(RL}Oq1?c9-p)TpgIze}8lV;D>dYk#Xc3Djq zbHX=mqmO<;T~%?KX%rONY*=$YT!8K>?o&{$<~a#da0v!#c;5@>V3Ch|Cp_)t`7v~C z;<*iu!WHR!mM{}pHCdGJGU%v7&>`tyo=&%2QEUE&o+#%1HTWJ@ZQyMt{oX-$J^lf*pb%;JHff&tQRv=Ob_&{({Cv-d~09 zpx4X2p^Uu%U&8fxj^pqy^i?KkpRSQV8nZkPU%*0x`w96uq|ce~FKmf$zX3l<=Zgh( zJLF4}PFXsK^WxT+%;TJbOE8eny%)~GBBw!hC4xHP1YCv9ntbhUok)vX=N9FhKEFk< uJ#ZH4xD=-!lKA4*-c-d z)l*(*Q6waK5!o&(0|!RC%DgBFl%njSB5G0OMObupp8rK&c=bE~=l{MB@99q%`V)q@ zWRZ-<-BPK+nDaqWB&Xz%T+)JXDc5M(+8mRlr6zMEdOo}*J@ma{<3s1ijR?(TZSH&&Ptm{Z;r5*3_#s1@}2M)oXP+iCU zMfjRcRx|`Gv@a;=O1Y~07FJhqJ_RSBy^`k#%GkT`H{7J%Pt^*#u!?;J%d0pahhxy< z=6PJ(o4t1j{(uqf{*W)KeDd%1AHv9%#T-^7;S?DX|`FufC-`9nl zhR!1HJKzYMgRx@nd*C#z(%$8Fie%lg#|HgFaRdxBp1(c0-ucBynF2v`c2zf)$M(Q! zSe4K7PWar)x!A@YhWBB&HA)*?g8m}6D15FD&O)Eyc^6DWC*IQmM>OBK6?%}{q-$Ej zw!#7U5!PC>y`W1n-!@aH jSfP}UwfWh0I0!SaF~EJVmz{xb+&`gtQx(bm>X_jlc?P;m diff --git a/testdata/algo/l2n_writer_au.txt b/testdata/algo/l2n_writer_au.txt index 23b74e85a..cad572677 100644 --- a/testdata/algo/l2n_writer_au.txt +++ b/testdata/algo/l2n_writer_au.txt @@ -140,11 +140,11 @@ circuit(INV2 rect(nsd (-1675 -925) (550 950)) ) net(5 name($5) - rect(diff_cont (-110 2490) (220 220)) - rect(diff_cont (-220 180) (220 220)) - rect(diff_cont (-220 -220) (220 220)) + rect(diff_cont (-110 2890) (220 220)) rect(diff_cont (-220 -620) (220 220)) - rect(metal1 (-290 -290) (360 760)) + rect(diff_cont (-220 -220) (220 220)) + rect(diff_cont (-220 180) (220 220)) + rect(metal1 (-290 -690) (360 760)) rect(metal1 (-360 -760) (360 760)) rect(via1 (-305 -705) (250 250)) rect(via1 (-250 150) (250 250)) @@ -244,14 +244,14 @@ circuit(RINGO net(12 name($I39)) net(13 name($I38)) net(14 name($I19)) - net(15 name($I8)) - net(16 name($I7)) - net(17 name($I6)) - net(18 name($I5)) - net(19 name($I4)) - net(20 name($I3)) - net(21 name($I2)) - net(22 name($I1)) + net(15 name($I18)) + net(16 name($I17)) + net(17 name($I16)) + net(18 name($I15)) + net(19 name($I14)) + net(20 name($I13)) + net(21 name($I12)) + net(22 name($I11)) # Outgoing pins and their connections to nets pin(1 name(FB)) @@ -274,61 +274,61 @@ circuit(RINGO pin(3 3) pin(4 4) ) - circuit(3 INV2 location(2640 0) - pin(0 14) - pin(1 12) - pin(2 22) - pin(3 3) - pin(4 4) - ) - circuit(4 INV2 location(5280 0) - pin(0 22) - pin(1 11) - pin(2 21) - pin(3 3) - pin(4 4) - ) - circuit(5 INV2 location(7920 0) - pin(0 21) - pin(1 10) - pin(2 20) - pin(3 3) - pin(4 4) - ) - circuit(6 INV2 location(10560 0) - pin(0 20) - pin(1 9) - pin(2 19) - pin(3 3) - pin(4 4) - ) - circuit(7 INV2 location(13200 0) - pin(0 19) - pin(1 8) - pin(2 18) - pin(3 3) - pin(4 4) - ) - circuit(8 INV2 location(15840 0) - pin(0 18) - pin(1 7) - pin(2 17) - pin(3 3) - pin(4 4) - ) - circuit(9 INV2 location(18480 0) - pin(0 17) - pin(1 6) - pin(2 16) - pin(3 3) - pin(4 4) - ) - circuit(10 INV2 location(21120 0) + circuit(3 INV2 location(21120 0) pin(0 16) pin(1 5) pin(2 15) pin(3 3) pin(4 4) ) + circuit(4 INV2 location(18480 0) + pin(0 17) + pin(1 6) + pin(2 16) + pin(3 3) + pin(4 4) + ) + circuit(5 INV2 location(15840 0) + pin(0 18) + pin(1 7) + pin(2 17) + pin(3 3) + pin(4 4) + ) + circuit(6 INV2 location(13200 0) + pin(0 19) + pin(1 8) + pin(2 18) + pin(3 3) + pin(4 4) + ) + circuit(7 INV2 location(10560 0) + pin(0 20) + pin(1 9) + pin(2 19) + pin(3 3) + pin(4 4) + ) + circuit(8 INV2 location(7920 0) + pin(0 21) + pin(1 10) + pin(2 20) + pin(3 3) + pin(4 4) + ) + circuit(9 INV2 location(5280 0) + pin(0 22) + pin(1 11) + pin(2 21) + pin(3 3) + pin(4 4) + ) + circuit(10 INV2 location(2640 0) + pin(0 14) + pin(1 12) + pin(2 22) + pin(3 3) + pin(4 4) + ) ) diff --git a/testdata/algo/l2n_writer_au_2.gds b/testdata/algo/l2n_writer_au_2.gds index 37ba8147196b2a5aafc2120c7d75912fb4988554..a4f45414f44f08586ca908c78f7bb4ac242cf63b 100644 GIT binary patch delta 1981 zcmb7^O=uHA6vy9wWH$-x=Bu`$)HE?`8?vj(N?a*^rcEi;G>Q$OL_@tORS^X*-cmdW z%^}i0=s|l3DtHkotcTKr;>Clf9!1cD$AHC~J(S|Kq0-Bn;KHy2|M&a9|IE(p(%jNq z6%-J~85j^mwG9&J5P>jw56;0WD#giBfF8+nKEH7K^5-|dM+$41){ANx20SFUSe@-7 zEEhLwl!OI=#Bg1pxf3GIy%uRMD$!h1qB&8fxyKxBQ~pk_{ilcSS5au~i*lXxJgd^$ zJC)Az(o6U2_0d|xNA`2KePa?Cv~uVdsa5q97X4vtMs-}#b$p`t;|iO9)t7NI@BnLp zdAAn4C{PCO`_OS(+zOu|W4V`l|Ip-2^oXZU9CFYUrC^k%u1p&?$SUye3i$VHyH@VG zUOnJir>|hgcDJ~zEelY-mM=|1*Gd+kG+v%HCUdOT4}jx?L98WIY{W*W{l{+{Z8d%v zFAP>lc31z@MIVdv_Z(W4f@%<3BJ5TMXOlW<+BAZrC>NP^-hc$Ig-32aXmVqPg1~ZGC75Z>BUB zJ%&yyjT#$k!wxpHJ??z!kw}K|n-=~slbA78TsAuIhM7jkoWi=L;;N-#+l=8;D~&hU z@LCbG;C1tr*joE#iP>Y`h~;-*6pe=$_LykGF(_#J%T=lkCK{oe0ZW>#iw zP(T!?AR&nAH_#viLFfbX;5WEMr8+SRa9DDkDbJt0`0mAzQe~sC_QbA3!bNh+_H>l6 zT>j9cB&-M|hMNM-9TREpxkz&{iRKn1niFN3d%)3l3`@n z1Lp(^c3uaM(&DesDY7KzLgXh+PQ{M6TEu{ZrYIG?cIon@Zh@=<@1B5nKelJ&U)L)K zTwC<@>)LjLd)l%B>Q~FPN$45L3aE|Or}c>wEY=HvmZ<&5&m3(%)rV*M z8zkG&w|nSgDIR}^>wP|53kO3*MIn*Ig?q27jW+Ii#Dn*$kZ5yV zC|6W)LZgj)FBB0QZ{ox~aQ|NKlNP;Rd;R|Y=+n>h8Sl?{KF@PbPSW)Lk81D#sP^1; zo_3}=uU&t`Z2wWaigsPvZP(7-Zqo1Rb{$O5%-uun+V!k(?-IOt!k+nmem-f&ni0$Y zanRg${oQTbZR_#O8!}}2xFO@(wR5#^_ouoGS{%09syw!B<^R$h^Ow3;zw?~+tFfPT z)qv^NXGZsH_N%tPpVl>CedcmoGhK767os)RA%pr_(<-`KBdezKdy(~-d#<&i<6LXf zt~J&&}_g)*&5htP!2&TIYJpN+ZUVf8Sxu zwcc+(*E(c=i_y8A+}1A`oU>zJ>xFF=S+-}cb!CTJt;_fMokF*v)2%_Bx?3yfS6eGO z)mZ-^lzn!ZVI8+^cWde1)z)(r!>lPC=2)MNm|e@AK-8Hw`I;LNZb?Lwv*4^C~SqrN5ySvq8a<$!lk*lvWSva}c+T5+idf?z1 zYif@gtLx&Lvhdd)-K}oZTQq;|vBo;fH^bW0x4Sj`$QEYTuHCG2YbjCh8td0#WZkQ~ zwQWyIisEOz7Fl=n+RwUV8ZlQ6vmQOV#b}?NB+_q=)w}zC*781ctet9G{0Vv{jL-Vc zweH@2t~G7c3~QgBajS2r+S;jCjdkvkHP$gB`#N6U2KDlxeUW#!st&5QHufB5-IS=d z2K245j_Zbf%?xW=KV%V@?OUo0DZ(f8Ox2;h@28Yh7TD)pffW7<9KDJh+w*RQp2e4bnAsN zi>!0lIghk2M_g{#atUht&tdnJZPY6c;N8`3Yu}ybSoYpE)_@T;)}F)nYgyTH3L8l6 z@}V`>9W&XE9m^@6cO?Bgl9l(eySAm@Nqgn?)2-vY<<4|~uN*bcnoR!Zj*eTOkC;RA z&$Vt$;H0mBy)9};+E+4IizJ(jvL~3TD2VW;ufx| zab7JuxA%7T@yEH^pWD_!*>Z-B88YfG&!yJ$ZuI|$?zkbN9o)#Do}{gZW5@ET``1UK zb``>qTF+ea7f+W#(t>@pEzfD`&zZ zyHs1lYiC&tde&G!))GvOk{N3C3C-rb2wBI~(kY9BPQcx^tF{hc5pPN;(QekB1l)O% zbYj-BaKknG1+785b+<0t^&4x$5g};y)qomnZDgpm%*8=`P^H6bKXW$Qsm9vu%)49r zR#aO*?>3aJ6SD5!qq|kxzS??dL8U|gEhsGcd#2Tu%`kuif93o##^w9WwiXcXg4x}z9miK=Ka|Zfn+-MF zdZ9B1@V=}88|#_9D2>5UN!**p$j?x&G@NGmnY8O{>zP@zxxR79I;PUWy1~u4Gp9_C z99L~EJ4!Srtn%Uvbqd&-0PmPtwm)S4?3SL9 z9t&4lO@o(h{&6S?JH;!{FP>KRRW3-ib^Pq0b?yP(txxu!*!`v}EZ)~ANe zP>#FY)YaC)p4IeZ8ShFK{0Xj4T^7x<+7nOLgLINn>|oiZc2qSRhM2djvEGU99I~}R!nC)z4*_RuZ-{EqNewi6`YO{8a zvhVY@t)|H;oj5KzVitR4HV0?f_hxEwIk>9z%9?88slLYKAf~)s4~kg_%qWZA9aHV3 zG&3=aeLtHU749GCm2+z++wXqdzWvc{osliaQ~4zOzZ_(LeU@719lL$-FZ}(FThNw+ z(|Y~beR{WnVof=2p8;*i+Ic*l>7(sk9`4-Bdi1z4Z9;T7zHRtp|A*|=wq>h!J|S+j z>2T%QkF+IQb^nRCdD;}7dd6XGqrQF4ku%$>M9cMW)Tkj7+q~g#y-c<0T5C`2v#Q5g z7q;zjS5n`ylW@h_HYQc z@mlc@o<@%uGS*(+w`(u^qmx`yW!dMti@J8P?!36xdUilhe(&1WLapj}N!uG|)jOAV zHU1AJ8T)@tlVuq5f7Kl|iJLr1V*PZ(iZ-KnT|UcfOK2^=vTD`L>n?6{ds{nRSGDT0 zEB}YWx*Lyd6TS8(ua(YJSQSQ{k2x(eO@cWZ}a{I4jsFXxK{IXU#*qAkN#kuUK6yEYscH``;$>|b*)vu zc7T;zQ)~Giz`?pfR`Ua1EB63_Jut|shZlc#|qv$mY3h*9PS^Z2Jj1n;U~OoBcUmT2U%T(22LHijo7%?_5afp zeCUTB8`Orc8CFA6f2;9v`nrjq$7`+N6O`d`_E5__-K0#aoNVgz3s=SShGAu&=x=47 ztg>QHu+UG?I!{nb=nOx(CuzHtV#HyD zP?B*7(A-nd`u+3}EAdQ!e$TKX7#0CD;icde&?&q?m%KoQo~MJJ!{&MH`5k+9h!uEl zv_0=AqYFfpReFJFVP;W`J&V%w7(LtHN4^%Q446@G(ddlL+PVs8$%!f$%5(guo#j=5gE{f#l!f$OWS*oMJYe1q5WAW3bQ zX1Ovro*ebm@*=lU&I`b~qp91H+==Y{sjRn7zE!0}6 ze}h@X<~;&=kKcuUR&yb075+^C%~e*UnT3D1)=K<)w6iAuB9$qEk35fU=sn_Tu}gzf zkIX3XyF}Ia9VvnL0VfAPbszYxQmM+ymj+qx_gRmR*ymrcw?AY}v5l9!=nt~|*k(SU zM}DW@AiOVF%P+wDFld<{(=Q)!$snH0NBG%Hbw4DpA~}9MRI#^yk#-lgU=}(?wRp$MoZ;Q&xFD zt1_&*PdQXRKfqp7&FNSCgp=*_Ips;y=TodYpn@NsX3y)5)L&vle2!oIE5_(%&Y~~L z|4XhJU(!uq4O!*+a*$yazu=MuBlP9|_Qawtj9*i!uUTb&l3&xC%*}6z47v$A^EGYs zH7kMKgbsYeK_nfArk%ux=iS1!^E>+W+w-i#w;W(wrdpvbr&_1~)WwQ?H^uU8VYl#O z{=mxrKsS9)e}9kf?`h9(iICqRWZ5lr40M^#Dqs_49+ob2=m&T|PPGa@5aW;F@gq9K zZ{Lr#%*Q)E13%BVLO<17p`UB5q<;UjzrA!D?Tw%ME%6$`B|Zb=UkK)x{!4NON&Z6H zF%SGotNwz)uK@Cs`33M_YnLRATFY1FJGOjp3 z!Z7;VA=Bt(FTJaxvt93!ipv;ppKcg6w$CWrPPgN-&25E>y9{m?R$$?-FuZoeGzN(p zU?)vuhNeA`pJ5u+cFZ(Rbrx}}(<(dZ60EB=q+|uwjc%d|dyJ`e(rwh*Ne?QS4)C%b zr11_4*khE-W2f2^wXZ#T1rI1q?NRn?D7FV6BPz5F(u|}HZpGyRD&N7FZBP7)sN>t9 z(&Ryq*#;H&HU>9C9gHq^Xcr^nWrnfn5alsR8pE2x2tr%GXno_E5e(4clHn%jj$udm)HyZ}hY4 zgxtJ6ww~UA;*y^EPj7z3(yHvWGkwT6+sEKmVK1QKm8`a}5|m7D1cAP-f`&@``uk#= z=nZJS^pd@aKHLXo21+6-*Mdi<3kAWPGIF>d7G^(|JKvwsGX3PEublUVN{AN{ui)@R zdHTU~rm6n4imyLBvp-?P`WoY{^`CaO!~Joa>u*f6>jn^6ZlDT2knrjTF^!3eikBWh zMM?vyVQ?TI>48WK1CV+L8WZe!12_-neMItJ_<<@k5*qT(FbMmsmuYGcLrFY_ezqaX z>jgOBWg4x5ib&wCDu+^K$Gp@hK7_nOLsZNmcq|Sksk(r|^C`T+pfqY~`ccXIkmd#> zFam6m!VaQ#Q1Ah$h5%CUV5a#Y3PS+(qQZk!TTw~b200LIL(}E}piKd&Hf@Vu*~(Gf zV3gy6ipjQ(nAueF>-H1#AHoe)W0oAsU=BkiU9FN-8wcA)wH5)v>c(ngxnUbS8Vl{_ zp&;aj8SmP;9gSb@s56zZuf}-YUOF6V-bjwuq^OvN1y?ZJCiEGy?q0 z2ztvik`n!95gI9}22%sdy*P5;9BvG?8%G&YJ2VEv!Wd4>$}ya4*)b@UoMALnel%dQ z(VX+naabH>oMVSZW04#~1L`0Pj{y!-t_fqc%oDN7jU|rkM4GK`90f>?2gDqYAUR%F zj9Q(aV+A~(Y$6j7cx0BCpaXNf5}81CK%o*+X_cN>b`&2=*&-7G@X5?KPTr*K8KO?AWuV~G1T|IrEXa;^iWmqfs*r*VA<(&aPFav&OhLEPy0OB`AwCoXB zJ`JH=RchzjIYZkjtmwj=0u9rd`ef?ZCwJA!5D{jCozf7dnDDsrNF}=~&EwTH9>$Cy zI0g13@A4wfM8&-aL;dbZ3%lVXv^&$>ZVa(KTd9nA8S%!t+bObiD3YcISS@HxuiU4D-7KQ8)m~+>0TzFE&L**fbMC^DI*I z?M?jAS)6B~y(OImSY{Ty#yQ3W=iqJH2ZM%v&`s@ym2aLg-FEMI00h57-&?`V z6y{zCGJ6wBR(k$@u}#m^2G|$8l2n{1qC$?z2YB4!Nzd31o^LMG`dJ9Vv*AVO0Og+x zd_h!p4gmEMG)pyij>IK!H8v4X@yy1i8H~_tj zW2P{oQZ6d#HmXYvR3_sUpa3-WN@|L7R6+-~O1%e@R^vfPV+YIm zL8v4SGM3w^gE?M&^Nn8CymvY24pA^~Ve8)1F8VbiTgf!%ipz86Xum~Nc>Cp_ClkkyUEVH8}U99+yh8Gdfw;0N^ zm>`>vMA>^3J|ag;a12vW*oH@GWsVTm4^wDEMArC5~Y4fo(PWX8AlE<=^q2p05o*?BDREQ(cb4$;EBq})K z06LtF>)57`Ag#EfN*qhzF--#}Qq#&BYKj@RqsMc2g-=AqqnesW3g8$;ptOj2n%#IL zW(}%~|70b76w~}s#1auNdm;_;A1YPl+Q&{&TIVUMv#=5 zJcA)~I(V5=v1m9Az39nA5IYw^>TIaODZ)EPw>OWodE}z; zTs6)aP@z*1`c7vkoTkP(Rau?KG$~%_Tr%~Zry8CtWjP}hcK)dpH*_Xf()BNM4{{z> zXz*g?G=#-dm5;KBoh6X7h}bX6eHwZJ#gtLDPMicrqo`(70B6cJE!*hXxDA{FXye~d zu0IFc$T`H=^fv&!r@(WImy!hn?#)hNTCV6R;F)J5NS*;`@U&J?@?)9KKb7qD)aC z4L%KyG$sMI3(Gu5FDaD&&}02B;bptd(xwYBC|*K5nTwz@7s{=8g$s2|)$2A`0{=zq zgU}^VrljV@M4P{a3KTC?E*C4%i^@D!_hOyY?>eSbQ1)PQS-x16xrn``w_EJ+g%qSr zDS+H1sQ3lvyHtyIg%P$rm+Q#ALY;7h4xUT7Gmc-X^}iC2!OOwRT?TySGJK~lQ&V1{ zI$o~Gu0Y_v0-pCW>0PccE)(+Qs371b;0gqp%T=E%)%}91yA)~t70OBgjz!~DP~NLi z<_&KOd<~I?uSKPB6?o~ZWFeLKRe%~-X}?^_v}7TzzXr3!)d+IepcfHkUW2r7HPign zs5FQdy%t`hd=xA-pT+cl*#aORnX6S;0kj55Zkh&{D7R}lxf-rzYAA4rm%A3fiEHuO zW(vXUu?<}(##NcA-tu=xpwp)OzW0{;=Ueaug$bsD(UO>`b*P-R0^Up8gkd+ z&ASvT`gfW;W-~QzKsk3kJfCcHOIZcq4Jz#Q6gDHC=|G9f{9O&EY3T3VvIYM^iBtbj z3fB>V6HxRzRHDlWGI=9U-sat8>~1$|n!A}!o_7lk=gxqfT!vY6xpwQ##yWe=d=tTP zvP>^CPO~cyX4-T!dcNf(=($-J0`c6p;@rJV0BMDhQE_fjq&IreGgcn#wkmikC=@Mz8ns+2o z6>lJd*m6~EIRKuU*d*y2*d*>7<@_e0ECV2Z15*SCv?O>F(`H#@vPhHimK86P2CCsk z1lb$$v0gsh%D2H8ZZx*r%A=*Sm-alL6Gq;dd@HVD}+kp4q z4pq7pZ?W6(8@Ub2cRLh3cI|CsWZuD&InLv^aYjtsi@T-p9du6Wc2wMVpi;Pdt@K?==5Bm6tswAu%XEIqN90c0A}oN^ zofNj*b@xg|C62G+G3>;!g+KhshanYhZ8~lJu+Jfa`Im|YF>pS&%Y?UcNJxC zzDIp8mCQ;~NUSt^Y&9EGb`-z26(F+;mHa)*@?M>+_mZU(LDNc#0|5PZAMmOBQ1RRk za_L^-X$OSw2PJSnPidT$@!!WZdmqUxy`MElZ;G9{A9#lftp=cQzj2#%E1Q!NIoFF)w;iW0B^>G+@)Zw-a0 zdq^kET6ud=6@M6%(4+KyQs+oeT<?b+UL2(8N0Oh&?8hbxZ?|tXvk-3}g0@rE*gO;Dm5-q6Wf!RotT zr>TF#bH4#zO2~mX0L6mi`gK;px6#;|d{OSfIuAx^5}b(mMp1d>5W?6Uh*e zr_76OGzQx5zQr^vmCPnolJC$5iA_ddySCW~*r`q2R(oWddWUM{Ht~qr0Zlc-%WlLh z_Kr{ln%HQZxs}?vj2w6umE6YG%>A3#u<&Z_yj&LE110othL|XysF0|#pa5k$f&vyk zXJ}F8a;IgiFR-9nwufqx!2O;I>zHZy4b(wNmWbXl^OvMtMAka*etvcfp;>Bd@Sc`{`g0%k&}#DDKu;@$KtaKACmsU z&qyZlG0orfIRJ^TX}H8!t+wIMRlhHZAn-Xnl-U|B18w^m@#ViJs?ZmxM81GBzeFYT zg`)ogDyHENJm2T7egS9+GW<1;GGA$b2w?f=YJMjS)vx%KR_iN#WWQ9IK10t5ysV-u z-Cq&C6J&XLz5>Pbxs<r2`kPANJ6TAO`vx;CsDY@|H-_GgfAd?8)ivL8kK&Q5z!qXi2!bi^kT@scw`@g^ zAhKInk>F3<7Oilk%K#RowM4A-O_k+wF0NLh$ z0x$M65oCU3aWg+j`XfV3RPIOPFx&kTc#a_Sv#tVMzLvPnDt_jaCw`MN{}-cbNrTyc zNzgpc_A)6C%|Am0o$0T-fBl7B)9|ZW=@<6Y7ER;7a27)CZhL<dA#~IP3~|_lb0BVxzLW9rsIP5*i7OpncOG-Ld`JcHIpbux6Uxb!laIF zlY9p2isLfbRxZ#p9+Qsnm@K>pvo%i>Vw2mX(c7Cd?7XX$=XRT9;R2 z0M*=yTIV}KHFQGSw5`bt)DGa)cfe7b%JGgS_qGc64=Loj6L>>+Y(w46!|bN+=8b%G z!aUbbcf+NxD{YkPMqNtX%=wxww0%9OA1cdiqo*0SJ>AV8ZErUO!EUU(bDe4E1zv1> z^8!A6Ksn7`SmZSLdYi3RmtI=8-sahoQj+cE!%^NIJ+luP<@>60*0T!XN|RSCx+`#3 zD$;(cOQp;z(aTnvEk}4mAKE7)UaBwBNPn$mU#1R~6ECL0*T-}&$8J8`K#M2(QpAGv zJblT-(;pRQ$oBmm^5pVqmgs{t+t1v&d~o{}M*RSK-#OsjKB)5snE~4~06|F+#0Hry z_cY;wcnb`Km-EtL^9GPA122-KoEXS}wB;tofm%1v297LU+(DGIC=F>hBa-u(akwK_{*8)HU z9M@I2T-P6ftdcRSNTz%h4p!&>;BaFk)F)V{%8JsLCrkjMP)on>W&|;bRZlLnD;`D3crV5h%xoD>u0ej}Xde zqRNd{u|^Tgd1K6wozb*3S`iFqmGh$j%@1d~e6$vQ6qIv|Qj~3cRCyIlQ%C4I_yqGm?`BQ1;6hT;kkk=SIP+AB~j254Ec% zQk>{GTE{n*AoJsu+c@wFV;GX-bmopVw=4Ifdn}=qZ*#?4Iv!AG>Ykv?C;U;FB^#&A z$I@cu9vzEbL5>m=THCW}e3{4Pd;*OM3g^u@PT%-Ab35)5t{-bw+nKRMLxj9Yn@+&F z=}coGWj9^c6Xkg#R49bNoFrvY$q*67CPHO2#3qZX)i4E%hH121bgHhbQ_a!bt~?OL z)gQoo0{aco3=v)+NO<+~7uy+Wa*BppT!nU4AadZIN+HwJh}9QV47vvb_NCzCJIim7Mhr}amzv7SYPKZC%I>18kfyOI zM4AdAr2tN$xEiP^k;ybfv(jpugi3>``boGObOOMEvjf$7~% zTMxE)G#MeZT$qwH$WeV*x$Py;y+}VD0i|hAf$j=biXa8~f5*o|F+rvG((qpZR8lD3 znfP^5s8a+n>HQ&(kW(;01@|!P?94t;xjh)5*4p0PFiY;njYH!s!VMg(aA!l6WFG>d7&AxsN%>AJ{4>|E!;B|KJZKbnv*2yGtQ(-0M#rQBvIs(DOJ!RO|QHxCP+ zsQkfDg#+*woXxcUAmDQc8<^nrC zS2fs=X<`)ikTTBs-`F%5s1O_FF-kT1OPc9hZKt`DtCB!%BsdN3nfhF6H763CqCMt z1zLza8pmIFk^Ci~0*BEAe#M_X9F<0a)kPIylp68$n#~w0W?dK8gs^$HFsDK*f8EVmX!l<2(s& zI97N^f!BC4g4l^rzEc$VDNuFC3u>_@2;#>{a2$f@@l2aeVwyWy$S1SH`4a&M$#2~WNd0nNe;m$B$00}_ z!!&lRdQm8aV^lEZ5jX~m;z>x0ixK=5UxUK%9gDz8I(RA+DNqAZ=E(pwoI=H&2kY?@ z5kyWkC)+_{F%xz6MOX6@y-B5^%3jaBr`oyTb~qDIw@Q*wC8+^Ho+_oqP)@4UnN~lV zjSyeV9fnh!28C8QMQeFHYw4sPJ|133Ym_<>sPJN4MNeiLIF+gUG(gkmnT>YrH1G=I zMNfxntm6f7!E4mQc=A)y{-!I1^q; zD8aw6s!2zBwxnlEdN$J3*+`AE38;7$)BITk6g!hJnl+96jZM-l>3>_$T=J0T6l!&nJ?}#9iG3GfYg~YG<^q&`7c%5TB`-t}ynqPm z&nJTBl=`$D%9m2DQY4eP6lp4@;>e1BeXF-b!gn>X9xD>&l)7lN0&7yyqP zB`-#ryn^dXvwVO|oi9|D3W#vo;umO#iWjp^}pxsZLj_bkl{bR`dD5 z$1eunxQJ?a6h`uLbGZ{5_quOhV(xB-E}}cU7whTLMO^%R{{XweRz3cKKi{>46uk<> zn1#T76#~-&wsf_?u2FE;AP8TBNXLg2IWH_xs`6p}ovJlni%R+*Z2a8y9JS6T5B%4n z=l#3Nxs>_^ZK%fU!OJZ*-?fwCWn|_Qw)yW&n{U+G+=w)Fv-yy1EJGT-35(1!)oK|k z-eppepmY=K+PGZOo0R!Y#FCRBxs1R|%dsdfEAv>!W$1a*NFy1d3JK4a$ox|2j+jauTU7=FLC_ZZ+?*w`BCnR4$#EQn^QM zv4YJTU&*TnV+9e^-;IU)UmSytckAx_F7l}R7tiNPcM?_lZdAhenCIBJm0Vi#cVmVM z=cvMHzDpO16(oZNWxtba&X$61hVH?+Pg#;L7bvCLAnL#KK<>2ka+(y1^-FuY2 z>e6%v%IVt`_@5+QT0zXw`-rM=AE}zFahbc1V=#Fi7vJoC+~Zg3@qEL5;3Xvu-QPO+ zRs)(^t*VI%h;jhRdQ#5Z$B5~iuOSHaSLy5KG6CAr1XG%JOV&$4L42mMp8P@LyF)bcs>oLhL}KO@)3C0JhKd6 z{~#&k9#&cp5JvJr9(y=`{f)}4ky=4_gaI6Wl%wzE4d6qx_7#7&(U!|;mpBEW$cQ8r&f&wRcG zJ*AvHauIt$8qc*p%#1(J)?WC%n&xFK+{;Sk71_V6{(6OlE4z4A{q8t>l`^b*8NB7M z@QBd&^46!YuW|#De;M24D@x-vl}31pS2(d6UM8#9YnbIUWM0yPP`wFRe2EDDK>6iu z-uJpZyoPQ3B^B=F)<>tsSJ*J?@tt{tGdH{*p>I7N>)+rhj?-rK>lJN91vhW6lc{q! zgpb>KzODj0Zz{en07tN%$lSs!yrw&XyY-2b4f6dKQ3N-z5QR5UDZHhF zV-x4Kx1gi?-+&f3p_kbp>ffj|H49YA=DR#xao$byZvr6kmWulpmjk27{ju|2UvY!p zGt?Vy#b(ZW$8Wv-h6E7W#E|(nE;H|F`nJyhx1ky}q%|0uD6{_^MX-@+;T@*=cjQP@ z(=ih-CFO)OY(yG+k7?*VV)nnMCVLNFP8LZCe4=6nr1kGnI-gMf0Pnm3((C_0ZsFtB2B-qEH^8o&&(U_f+$oRGp_WX^XRYnQ&cjaBFKJ9 zkd5z~O?K%MjzcWYw#^UZ=zYQ-!bY4g+85#1NJG znk%2P^W5Lk2j;h0t*>#E`UVT6&M>>YB?DhFO?;`Ee%*RqaDSr?lOXwx%tU3sK?O%N zurqvva{2QmTL{-VG3vi1)yQ|c1$b2*_5;eLZ!t@55!8Tuc9Mul?+S%v(2qoUeQR$vu#ffUkE za8=B(J#MJH3qjU}p(FKaYD&c!3Kf7Q+!a&!@PVlIP%%%%1$IDG&Vyd2Jy2OqeWFtB z1?8#Wy)Bi?)3IDQK1Z_+f>7s*MSPnARIampYy)VZlVaUQmzEY4ZV+Xg?SM*208VSh zJ5==B3QGHT0Hx58ij*&+ohmrpw^dr(O3+E6by70hLOIi%cu8mIfZzN!OtT$P_I0Xg zxpdZdsF-T!6jiB%Qte*BBSPoHdR>6e^Z+l^1+!caR6JdhGML**&uOFXtqqm!R>AdD_W|zhwkFuUf{)&9hlK;xAgEk7)v9Z&S*i!l zbBZO|g&M5sTEUI8kOSRRFi|P_&399f-CF&6dQ{BkvkeGB+mVb1y>^3Mg-;Y3c$-W>jgfcY0wAd@SJJ73TdE9@IIgl zUd3F6ZNQ5U=N75xMUW8B<7G(s7!pFsdX-TCi-cdi!7BD(DBobDrUcmlyjXx~NCHzs z%%OHb>X9_$7v+cY4S@;_fyzlGJgoCyE5+r3&lDCW>K%sE(eu`@WQl52JQ_+v8S*kq4#OfLQ3yOcK_y18pqU+nr})x4;5<20 zHQf<2LzSdBM5U7ChJq3srfH2buaWZ_rp-Gsr7omDTtV)Pa$y$)(J4^oG+B(R=*`LT z{RB>q?6iu5ZSO8pnkuEKxN4k=wJ{A|Xcye4cLA}q3l3sqmBd)6r&zT zNya#xRO97fXQZI85u}`(fL?wa(HJ|!%T9vllS*MSg1`g`6oENK5lkWi??m(hlhJbm zPLG8b9ml?P{`jV8DuTMnvJkRoyz-o+6vhLZoD7OF1qw4NGX>?$1g0?wytVK=ldx!> z+KLySh>BM#RI9gLxeM1lN5u)lvkQXA6f7DYA7d2r&H|l;AftR6#{pUrKuQ9i(n?Ik z!aH6OjE5JKvJ+ou5*FzRihdk=4suk18)F%oCt#5p$Mt8;&K1MURcoF|q(sFB(iK{2 zntarP60M~JV?p-HmRgjvwWy?mNDHD0L55t2Arzuna++p>3au8ET&*tCdxMvdN?t=M zr1Lfia^0@Pmx(|HBM2IIC8|VNbq<#WK#C>ZTL3^PYHE7Ac_w zq!*ikUVb{$Yy{<~1kTXtSm-a~nx>=2lok+FUX^Gf68s z6Cbg?sXeVso9)dM0mELcLqb$myvSY^Cu)sYcr8>)g3?~9+P+%&eVB&!Whm@J3sjy- zr2g4TRf525hWx$+nVqFP4wg45NA@KQ-z+U&iyp1KukzieRWCmaz0^Lc5@hcd-8=U`TvOVZ|Cc%l6?oue%0Fm;B^T(#a@1cCkJS5#zwsffx7)EP>%B^6%E z34FFXaepb#!I3j04uC2hB#Q$XJO?o3=V_`TZ~y@2K?0bE%hG`W_zq@@9>@nm0YLrc zF^x$N6n2V|DF`6r*dB7tN1B&PX@13MY$na;_A$MX zCSJOLR||Cu5E%<`=3T(RG-#U(fn_?unz)+l>Y)`U{YL1Iyc-r)jB)<-xhcvOt`G$w z6T>)n7*tGDQoPV%Pz=0*uRpPFIt=AxjFvh*TCs;z&f}8|sQ8Z9suIVn;cyZt#VJ!R zUNPOSkF!aVixBt{6}=p{{zS!g<-e(JSX6PNZ62;gh*PSt?CTTQdlJ|u6S#;a6iPxn zBVKV79~og9lSMwR?Y5X#DGiHxJvQ+us*yg5HLg1n72{|IXPVYDcoajks5((dPqQlT zU}G%S7Cw@C8AsyQx47akyLfafukmR7G%c>+dE8M{p#B&Hg=4hekH?SqSPduWK&#in zo}!db06lXGLqU{zYQ-`;eG(}3n)**wEl#Z90nmw1Iq79iXULt%5ITusW==#ob*xf5 zmVlDS;w^eI$3*H3;9H#^V6Q)dfcz(ck~s!j^H@P01G2+2PlAe{OcO;dmLP3rQ_v z63TxT-a>VX?;PcF9u|Od@+iLW`3hI@dCvqsqyi;Xg5X(5<8m1|i$;#rVe7j9URD_; zoubt%G+8tWC3!w&F0Yu9sjKIN(bsjjRgvW1v<9l4(+~0U(QrIc0-{w735rft&Q1W$ zXW=_`fkHW7k=5bM@l&Xy?*v>t50L1E7^G8ZAbC;p)xdL?aQmDWcSmZAS zU0*!WaG5rMOyklmTp^9ixWy}fqlMs1*=H}sneQ@83yLmzIWC-Ur0_c~G@W+^FT)(E z?^0BJmowxprS%-WhRcDViyC4Zdp_3RkjP>1)WseJxVsT6hes$2AgI zphU0Hot32{*h1=E!q9jPD!yxRS(HVCGgt%^x)!}UISbF(v+a82~4>4}7` z6}}#uI=gjhEX94%#=5XnQ7;EJz8nYHrNj_l!o_IfjacwSl(fzDDz*g1^{8M$#sAy_ z;p=z#zytC5 z{;suD7?JDABWzLO4gPzs*MTW1FM_V3SQsWSieP#*W@7QN=#K7?wZi$RN zA{|lzFonUteom%&>FHUrKiiUJ5rOEu;xEa0|+2raYzHGdy-3Z9kAvdo(DD zhKl{2FHkHts9gWVB$bs(7HH@D^THCC4G0nqIuztMmSqSvXvlKm%Kj6|F$;;xG!S-7 z(&X(7=A9(!zf~x=F^y?R-U^=QHXNZ+%f~t3`EHfj?X7;@x5?txG5}_xLb5H~p;&H} z?QKw5Q3XlMC{hXC$`<6CiMa|3<+o{Add1t=(ayKuN|;e7i91*pbXod4)ed)~X5KBq zUGSLV=T4~1UF70kfm!ZORD3I#7DYAP#n7;VRVaTcfC@ZL(V*voYBl!FZ z@RBQ(uD%g6d>0nUJCT;|VhfzUm6yA_?1NjbJ1NkbJ2}{5s{jc7OG)Z$kmIZHTY0Zu zMEy(Q-XoW*6z)Cf`TnIrlw;v|bKgUj*;U*>^Nf9!I_nZLX!>fN-kqW^75K%=RC5+so2+T)h@hF1uTB!IVESj@I69Oc}RJOR&}(^BLG z{}k}wwjS*s+UBFM;N2;4b9o1a9_ zY+~wt3bV$?8KSC^p@Ktkdo56>d=9Vfac-)WxPKj(rbp)ERbL(L*Ba*Jzwjaksh2P{UuNoigCX`3Hw@8d2`Bq1k2IT~ z!&&S(c#W@%_Z-{Ad_x}JV8J~vP}|_ks(@^B&z4cR>NuC^mk@Yf*D}4P1$$20{W&#@ zrg=?`=LGsZ5rm#6$mZvn1_WC7BDTrbz$-kbrhfsK5eXV!YE?m*!pS245)`q3@;Z8f z^-#VS;h9qLy{0UkNMGdjah)QIzm}FYD6vyn=j{Y4Fvu zUycenioHry=8MGaRr*vC3+d&aQ?Y-a7Bzi?`Zd3ySHDUo`clh%iTediQ;Gr&>|dhq zoZ4hxFUP~Cc^j3`2Bet{3VDO7sY`nOn`*STbpYy&FTROh_D%F6Z(|#J3+3!vP(G=Y zzYhJa3VjRmfp6(N7h+2C+*`=GoUlG`g6)9SzXf(iV6nI5RP{`X^57nbJ{y1typ237 zXEAA-Z;^L&BT<;|farWlZ~R?wVjGbr-(e_hL{R>Q=6BG`zr(B8P_qKvB$Q2Z@GewF zyu_x8(au%a|1P?vcd<`wWDh#_O&b;9yQr1k!5}Boyg*FxBI1SK5s1tJnr0LLq4d%h z<8%1D%h72TSd7qn2r}>K1(d$<{yk3JvPPj|yYih+L6v<^kW$5{S2?ctI86ct_Cp9( zIbpYS6VilSsAMS3qnT4fv1pLI87&N1?soZ(4lV;6uu+I zh^Xwh^o`R-@$U#SwFO?_I|;sL$ZMLCiUSb-R%QMMUhI1S&}%tpir;Cgd@G*JQs0n5 z@>^$FzyF3uh&kc-WRv&~k@=nCcmDgvw|b$d;F{z!0Vw$!9TK%L_7bU#diM;NbZN0TZQ@`n3+Ed z;b#y6KX8gie}YQ?tf!AZvjF-JFLw9`LUgX`O+Nu$`d$hANQiYm5n@VahA7WZiv3rG z_$w%>Us>+Lubk&T!^KYJVz;E|3i7EJgo$4mO23eubGKFerDEz5pR3l+{en4`wBfI+ zt#gI^6|eaU7gi<%6zyTSD7APgLsJPDIN(gCK1~aFU9yEI2)|k7WRR0uNmM|(NkgWN zz@aqc3>VpXTr7Z_Y1V~a!6oz#E|P7JAmE0Vb0N)0CDa~i)`K+aa`o2oc=%6+c@Lt5 zG<_X}*q*83c1>uhrpv{}$&Fz^f>L|(&q_Jt5m=j);bL`AxwSL#gIv2L#M<+lQ)mg)*C z)a5r8S$D=L(#XhsXFC$-x?x-;E8R9N3 zJ|@te=K4)9(-oD{cCOKm|6+IiM|!xX*k%vxecNGL=)n*Y6%#MHodVN$Yxi`uJUA=% zz+tWjK-r$I$#&y*fFye|P02LXQyKQw!ffy29m3xD(nJ4ZFWf|Xt2cV74|<~;-JZqP z|M|1)x5tX9Bc-Lb2iV(7z}o}t>5Xlym$r$N{k>2Q_K~zw!48nh0J-gh+o(?{eeq#P z+Su3C+j*W|tim85R$vf=r&3Y$k;VW7xqg@ihk(@3$Hji`&(6qJx_Xo!i8`kJ@n8))EAIOFL0RwP|bZ&Hhe<&LB;wpga(T0QwHEbCV=weT%{AK zLYUGJaY7ude(qb2giWGgV}mhGIa&0>V^XzlZV*$a#yRD}@I_D1@;^KBG03$E1X9rQ5dNd?tT^d5I zc@u;e`a_upswEgoNqjYgk=Ow$Co|trrh#F~d?*$ZWs#NCtVZCehALDeP1c|s5=v+o zf`|mkVN6X8NV%2L+grsNwiPHm_K;p)P%)`E-eLm43_O8mMlggl#70Q4BSUB>%(6Rb zzw4{s-8)f_k_4%p6pNr@!x=Keap{Cx(lj!hdYU`6N^?R9_1>(Ls1-snlTEYF@|-^kK`n9-e4F_h}n_w6B3q2 z!`GLEyGIjJ<49CJ4&Tuj%|Q@t!Qg&x9H)`qLGVv-jVTl3Ffzu1m>I8d$0&kvz((cM zGoGn2o`OZk!V6A-7a0!~(2$tGfCbl;F@%~KtK4Lpcc${?yj?jKp;z|N@ibOxJk!E> z9T($tt(wT%6?VonFj*}$k%q`mQgJ82OH9Hnt06KGv)s-&Gbb`FOi;Zhm3gd=0J0L4 zCNp>@0p+|S5ueCb^-U@t;@tdA0U$3tkMJBHo}J}QW=R1!RACau$ksB=Pmzylm}RCg zElgEZQ`q%Rq=BjMQd3(4_e^!oE`R&?E>twK3&O~>)=(OzskNAL{XTFC`8x=nTJS-o zH)??ffx>F=IM!2<`lc~WPD2`za%>96klu?4*V6k=mJMF5S#s4rOS zVhE$=87y5kDDx0#u^@vPR4y~15cFvI*9p@>^2`7U3$E2tZVqA_2xFTJ5wwJ^+DI5@-<4H(n0!H@8O3-lpY@}bO?)rEPOL4B+du5_iT8xUAy^9?9an!b-JPR zkkuE5T`T*w^>2SycRS1#Z}VSbufA-N>uRITe|+8YkE}WO}{Z96thr9YX z|IK>!?FrY2wt+uC+%>Ds|8%^1-chcGwrzVZcJbZJZT*MrmjA{*W{f@Z{r0`>-3N3D ztnPQLYku2!`$oZQt3dV@$GO`4r^$Ag<6Uk3&v5&)<6ZITZH3uVyD_8x`k!jA9(#hT zlTpTyvU{~v4T9bQ$nwfjfSP6F9L zM5QDl2|?*)s~|0qSm|Ng=p;GEhJcV`MQZGHVj&Z0i3L$g67{G^jg=0uf|L-^BQ1pJ zIZ6-rH^y3X?*!2AeD~fzSkEkDyyG2Xj#*X-TZCIlFCwZDn=M-Tlc*(1X|`b25{W0I z)PDjOdSlH|DV-Jc!B28&Glt7YPjGoss^3ZJoT$AoYF|ii=W&4c9M3+qU35W?GbQ7( zu~>R@GP%$ZXMAI53qq;M2L%e0I5S4@3MV4cV?4{X8s8^0EJ~dDr-+n~3mGV$D*HsE z09}OIb0XYFOnxBMxWGlL+VPpFX>58)iO9v8$0lG+b=7mA;!K6Gr=zY(o)O|T&7Th8 zZ%bx`gqYH2LVVdz(^U2p?rwdCRkUOp?S)T=JYo7j6*9)ue+EoS9UXkA6L#{Q2&xJHIo1X)D{PWn2%nOMyho0let|dCIFj*!f+@Ue^1#A>7!`j5j zA+@vXFj4zVLsjkgrqTJ~)cX8cs>q)vqn7nf|xw2%(j(vD`GN(QD+ z3Gq3WN54Q&f~Ev=1g5M~g1Nw4v?HEA86z5-WiPOcsizN3fuw?+*K1vi75@^S z0rOF2-?WfMX7~(fcAX9=W9kmf6Ej1uU|=K6KwDTeBV@3NorzTQ8F)HiI!ZFu*)v08 z`KQf6<-w+WW=IFqU7!(7aE!b)1366)1uB~k5Y+^+9&6@I=X8`aE5u{AynPg;&o;cw{zhZL&kUn8_k% ztI4KgR!CoyyNHqNl!e?|b3)o0e=_+pVy+}ZD@vPR0SX4>OFOFhFClks4u*c8et1-`b){4gXu`&FFGd&RApin+MacMcvvo;7I>ahR0_ zT;YqLr@xN7-WTbJ5&g&A>CE#uq{c%`|uK-hd*V7 zGZ#=(XQHzpsipf~#F|Fa2DiQw*MgTgt^B`5n4y!%MYtwHO!b%HQ|}dG&4tBAs^k)X z1H}U=6O$t$Xyx&m%r{x1QWh~pdvinjo8;LN@Ym?o9O*L8#_;}J1~8}_8A|+*ye6(m z>2xk~NpF$`bzZ|7C65`jz@iME=Y+s(*1nFX+pqO_%<%b?_W3B~zK(9e0{9W;SZAQK z-k{C@230O0=1eY7IOsKd0sy@QAnkPwRV=iin5^&Q)?WcID}5doVX=0eakW;mP>jFg z1fqf2x6m0jjSKAOg?O?TAd$O}G=F{}?rvO!e{SZ7m}QF~tNFP-hjuM3f5Vnq%||t2 zKBiqDH`1LKAfYkOe~pZDCia^lFPe4N5u6e1O9Gu0-)H5>6wSfC1`8O{*#9ry%Ahl5 zK4(`Q`3|>+*ycszQs28G~1sp%Wn&Z>ByTBDV4un$+XK0GW){w>>^gK zP`kYZt8gjibfa#)6u{)?2|%Qj{-lF>C1(WXW{n2mT)Mf-NrkdJKqkKHIO8=H%iR;h z)&jf&qp``#!&XtA+n!$_Y#K3=&GXTmSwJMUdPb@lQq9aqp?kjTP((fo+T_irvpAmx zXHx;&Vqrc3(XAaKY!)b7w3_}dYLG}YYnMAgU@OTdfgdfvqBRy}4(B1Ko>)+p9#>Z# zh&7$^WHQB)vTNUk2B{HZPP`9tz4!DC$Z6|c*!unnQu6zB=DkN}?z>LPdZk3{-=|k| z`Bb1|i^$#e9=(d$_s5#bVIN>+#5ZPE&5DP8^NBJ9v>*eeEnj2d_i%&awN zj9h_9e;=}auyn+IOjvSP1DY%FT|Wj-tHol+*P+`)daD)6hzqqng|szWi?D)D zUI}PPspO>)(zeJz+oF|tG<+q#?OVZ#E_M}XvQ>x`tO9BN2ehwS2|5>#Nm)V3w*vHD zD-p?GMH_B_o(biTKLBas2XvIIKsQlPidT~CTB0rCzeA4|I)7>++LS`k4F8Zz|tD&enxG^XSAn& z%8k?9Pnodk>q+`wkT3;b5rWm9;!qX2wvNaKK}rs2fLXZ;08x^QT12>x@wb6R+UHoC z^EoG-d7rbx7Hwc8{9kb5YxM=fwdC@`7u@w(;cHEKH4cDDU*dD;FX@f@++NO!@a!)U zhO^hCe#sC~iZJ6u?!aegT&#E67c#tG;pOBnV3qYb8of5!w#Y9aG;%%ZyLTff+c%J^ zzV$%Clq0*iFn9yi{7nuGk7>OTySZP(AbtaC$G!|{=Ttuwxv~w!?}7D@tRhm^vD-$F zaoUqDaEY7HuUv~YZ?6a3TIFaW_WP_qpRD@r6@9nVb%Rr4X_3%qhsLqiM&?>?@l0vk zwkXqa106aV^wu{Aw!v7_CVGptmbsPCc(;PA(F;^HmGZZ7->VtZax>`twsFx?)Ha7o zxXIc=8+j5U9e_wuZWnY-xr5tm@~z&ATs;xalZ&eD5m41FhJdx`X7<_5bolx1%qqh6s3PI27jbs=SJv!u z={>JQeOHZNiX6(}CVe{q8s1zjeZ@Y32P~nVf!B09Yq;%Y^N}`exK1t5)^>hFhl*r; zO|CExJ!YAdrhLs#FzQ?AMt+Mknyv4A3#bBUvRNpv$klcxH`FuI4CY`-{D+5X6|<&m+b&bJsSEQ{;DCRG44B@QGRW{54kq` z6oLHyJ5*PQR`E_&15CsQ%+^*3I=QC_SeW`fvbnn?A7qj=+atpyr53wv>6|!__ye&> z{sR+5yCq0fg%OE1O?P3e&G2u=tW`I+FmPlR6PV&%CgfQcBO6Lxsv7;E5*A#Z1oh^^%q1+{zY&3&&ZYTr5gDg zCI3&9=9Um@KqE|>e^IR=a=#aoVtTIXd=M1f*dq^MQcqZGiz!W7i}CsUvF04=#9GE) zbh&UVB~bXrUG9&FDAc&0$p^gTZe0A;4vj&%Rf)!nuYnBl zhX1qsPDrv30`gbhb1Nh6wmLvG%a2gnU2IF6_hGx%Z_pbhv5EW%vweSp_r(2x{=Oe7 zz8~>w=YH4@`32YX?4@x~Uz{VY41yli-uVf+X+NQ+2gm*M0ZlG(+;z{ElS*id+mFfg z{lrE~I*JvuW-13VyBY%XXo(+>F2eo6CK=s`R ztKkQ1+xmbr9L<-`oC~LPL`A8 zi$v00p6Zw4(OriL;thwH9??=ddx$p8H;lW9y-(WWe^;5B|3ncPEIdrm;B*yT0SA%y!MrbFi@cy1CFYUx+_ z{Rx9OGqc>9yqIyF3hji3mL52SurpN!^tPk8`d^4JH=CKhzroMC5G!e+zC{?qNm56X zS7(H-mWm}p>yDtI8%OUyFr-`OvEyvmvW3n09j(GYV4?fi5UG|Pue53MH0KZ6*giwD zk0aLd1T{q)`#WfMmklvJ108B6*fHoh8Zp0Z- z=A8wZR;d#A^_VH$U-r_1bgPokNAiQAHNsVB~iqUL05W zTv&1$Ch1@ZrIdOpB05sRYWih3BS=O{vnRSBm~|fzfEFSG9cFhGSUH;>5NCA`(3xPy zU+RgP9gkFOsHcNt>Fvv^Sekkn6k83!Y@126)@!zE~V@{Ux}yK9yeeELp{-!g*(Aod5B?a52Ok`KzKbkHdgSV z7Zs?oW&Dpeb;OTh!6a8m7FYAQBVJg|<8y8)`iEnzES!#lB$`Rp$i8xML`Uf9 zFb}VODoB);VFZKZ;Vq?z)C@yJ=kWG$m}#ndt9kA=2dcw%qg*zJbD2@y)5yd~sd@w& zn&#CaJUoS#Cncw=QBp$>hcnWexjn-W##*d!<`6FVs@7CDLNxSFX_goETfA^ySOei* zHSlAdFN~D-Qrg#=(&`$xs)lkRJdc`r5y4G9s>8mX}`eSctC+D^5{zydVNYD;_+%PQ? zq!Bgg99fh0QITM#*FwxE)nzr&*UYBMxjayfujQcgtXoaUGysbITnV^U_x3KW7VuDU zg)JU;(sCGUQ3ti6csw0)1=cw1u$n|mR?R|aw)YDNxmG7Yw8hewbtbdhD}RxQqsGH52U2eYzJQfmpyd|X-*y7uTh5% z-o5eevmQ`WYExxn=2c@9plMO?+g2Zwxpjy}fs~SCC>7VEbmmG>^aycEgde#IRu#1w z9W``LmfuhwRM5o6J-ryQV$p;teiJ0>QGIJAvpW$AQB8y z72;}=$tZT!5XRkON|n&Lx1GzQf!Y_xSkAp1bW5Prc?(2UKrf z6(#K`A$hwt)<_?{AN5wvA=dslat%Wq^2J)A3>0T{9@92}fv+|lkqr za(ZBnl(7VgkDw9&NR@=sQdTr=jAfKLb~&Nj5J`vL44@Hfde-66`bsC|Bg{}CWYt)0 z>Y>~BJ)FsCfZVbM!leN*m?_l@+em>KjP$fPPjq&?r>%Z*@(>m04bsF|!1Yzms5sOQ zHW0@0-f5Gd&6i%SE{tI{P`T^k$hnoV|2tuFN#0k9H6an8-$x-{JEX2%7z|CN_Yt?Fe0zCCapsyiv3eezcrb=WUbMh^av#&;?C;|WFBcKNx zVK6ZsgIMKl%hfn1ZwW7uauE`*234`N#2ZVm8Ipkd$cDh``#~kB9Vrdzu)VQ{YLJ^- zg3(`lrXbWfk zdSYK&+BUaiUC|FR+F)m-k9qoC8`}BaB-SjrflmEu<(<}4pSWJKQ@(rJ(Ta)L#?#QW z5wVW#Xcr6<*&6*OZAD8yL1}&iz1|xjagM{6pld1NB5JYOU9rEj6%wk?w@MLaQVaAS zYRzEyTZ?KJK*n4Te@J-E!In~zPcg1)iAeeN&@Q+h0y%AEp-u#EQ%lt1S}|Q(h_ih= z0+7*?lCLGmDl)N^gW@&wrNne)9$(K?laEHSuSZ|M3hC6&DaAQaB%TdStLqS3cmt)h z4gmMQ4t?dlKzI`)-fgwP_P91whqi%KavMY1WMYeP(JDDgrP~DfM?u2Ca)tM$GVb{`u*OtF5=7|p&_RA zjdaX9jz-sHO0~{Wn%S9>#wA|b@~;PAY%&AIz8PVrBmw$Dm&)^{@CKTqZer|8lGp@v zD3iKkBJ%_$Qj!1}-5!wni89)fs(rgaSxXx`ql>Xv(-iY5A zOE3Vt(^1@xHQ=`C2Zi_5C-MC2!oB>2$awB)4=VBE4>88JMhN)fu_?R>%>; z_9iZoJRu2qLfAR5e04@+X=ik2NV1I34p)O?T^B;FSzHR zLo!iQyz@}#Ww(}I-MI=yL#qk}yvyK1P&Tq#D;W>EB_F48E*BPQ-DGylr`o#5ukD7y zpH?$_xJQw#w|Sh8x9WB$Zh9u!-HpKKc7vu$$)T%SH`{r#8^fii86=#ej%e!9?1;sx zA|7W-Z-bs5Eq3()bv3pF%s2(#=HVH0cPp}`J0g38ydHQERt@*7@a5exuLqtiky|KG z9PW4{aFGrGI6cU*3A^0#$~W)->TNyQ*b_IG^>m$>M!TN1CiKEWWN*nSiKV}kIh4^8 zc3PU=+m>jHHNQwT<1iwl0;MH^Qq{KXKIFzsu_s4B%ycyI$Iwjg1x9=?G7n9k22#j4 zW3jZS8`~YdD9ATn1;3y(+>bxW|6;Z2?MJ()FDt;fJ`n1Y0{iklfUW352PO9?7T?#C z;(QWW%THTeUo7Ysl7suAQIbO2d1}G7u6?bw@qH+%S{pH>T!!>TR|o~^(WIn!8Ycus zrc|oBIi8ZjWbfOb$-ZjJlUq`PB64uAys^GRiC?qj<_-Ssb&!20hphxIp_C0R4JhT@ywQm z?uhU%{dNGfEw`UQT@@N(Rt+F^GP+P&I?$G8ix=wbTYgVJ>nv|B?xMXiW1kG!E!iU= zyybo<<^GM*@HG6jC7xiW(c!;e!k6Yr$WF)2=4k}@l~kIFQptzR2arg90M!onLQAt? z&);l5oY#SFL(@*+dZodJ-bA$@nMP8XR8H{1CNbSJRiey``1=subT4hhKvpvr zc03bJ*8Qk#?&9Ub(-dk{Gz(aZZgB@Ge;+^|*&Fn_4_Fr*4c zAs0DZLMXiZ|AV%ohiJ1G9(Vo21|)J6gtm)_RpXF4vQqe&c%#wf!t6vB)Cegqu7mq(7M$!0}&m`J|h`Z zO#sy`7vppca#DG?`X)(6FNcMH0AG?}O-_7}(hdKRg!+w+*wOIQsMQn^E9?^n-t5tM z-y#DRv)$zIGQ02f)L0M(_6yKrGcq63bs1Q%16-FdN?c42vmCyXJ&o; zAm|k%X-_|mR>m-pg4JciSUe%%>Ouy96}9>AG{PXOhA%#-2n`%mJ>x(RF<;nz6*PG5H-NDmKNgL16X;zr)*8Y~MtT6cNn?qw?+FK#$1!qXDV2m}-*(R> z8q?Mj7=1fX!8q&TgvZolN$lYwvRz_euZ8PUyzM)G^$Wj%}BVW}1_p&FA( zRZH8RwxzYtP|A4PbB9TPn?O7_2`=$3AUtv^TuPoMbbFp5pDBeqx>kcZ{4{dSp8_EH zIaZ7*Qze}5p|RYh(P!Tt#!SV1)IPGY`N5H8N<^&+3UQo?u0kE1gqM8ImlJf@k6RV;7gH>rw7YK&8H74Xt?z4P`ay6~`l2ZqG{?Km0Pnc%%_` zK^MLvgCgwfy(|+q5GzGq^0M`ET^6~t?L~x%q(;qavRu3nL5?+z1!{w6WPMFcx4vk( zpv!|Hi7EX0JN_2D=){ze1ROjganWcLyAcX8nF6Y9Xt4IYh#{rhK}xG%aZq@H{xT)C zyEltuD4L5$qYN5aTA58RhP>vNKpVZ9SM1z@61{x%BFVLMHk`>iuURn%6wS%;a|A_l z5 z0ZO^cTu)yoUL#+%Zp6(ct_qqWZ5mDOwYqNPKAQ)q#?Z{Aq#nI650BK3A#>5yxT4F+ zavqn-a`}879afE_ybPdEjZ3Ho3zSvUBfPwQ_ae6MmbD6%`^C{@` zM}h~`^PTi%qAhTOrZd5v%+U+61EyE>`Gh5qn>7X9R^1H84oB*R4xVbbt4qg)gijOx z>;eZ*t#MwJ<)nN*Cx>P^%%_4}cH#KXXgibR_`)AY=c2(B_L|}x!cv$6=ZsuLiWXAJ z%(3iCzN9Vhb=v%|Q_2dII^+VS#_J0d&al4aSQ@If=QY&QUqh`l*D0|l2wv`Mm;}@f zBwTnZBps@8p&=%Q%RWd=t&zXdfeSiB>`Jc#1%SKu;0KRHgsBdoHSUI3dz*{ric%#8 z{Oy{kIZKT2OJ4`n!Z*YZDP>B@Ur1^78_1D<{Ncu1Os~a`ZT8hS35ISc^A=HJP_>Q6 zfNxsWI#LS4CBMPF&SD@ZE&`H#k1(SJMAJ2G5hNntqSybHr-Kz^628SD03hXXi}8Jm z#1e=&rRi^3r0d^ge_hPsG<^}lpRX2#(tS8HPLZsy~gmafs1-YSla0w^{E9t0Mh7Ar)x0uX4s>7FvNjb9gS|VJe zG;}e-dH_jYEW%T0Yq5+rj;W03dmwjTLP$X2sfU~yG5-0zPKev z;n=0tL1N%K_$RKiAmjn600sHjO)mgXX^dY?HC)18WdPi;A6`xeCo|TT_qgaGJ8}sc zI;tPOLn+vi^)6L$CR<$7bK_W%2!;hM9kvjIDi6lqvBA(mRk@huXs8{98!u*KM6Jpg z^CW3GKI<7fdO0YTnPz~V-rYppEm@|neJ`GBsi&JM?kV5*Hh~1HnOX22pbWkXuNk1h z)i%u(%?}-z4H~|c zgH^H$lhZ!{h2BIH`GJKBx{&e_8cv#iY<-LW5vYv!QPWI@8ph?|p7f!FU8ZmPKk3!d z*cFuG|A`+hRykbw#`S&VVn4)qrxjc(;YrkdVp4~3`)bEzgz2&Z4I<>;L#l9p z$JoeR1HaZEqfyI^hT5nS2wBG%h4aE546z#LnV2jB$sgJ<{dK@d0j8>qzK(g}#}Ln2 zO-z@*k0D(|KmMmJjrhoxj;&;!C|$|h10u;+j&9VTwjbZBcob!ZePrW@ZybkYjn)K- zk%arxOstY?aoLh|8- zWzo{@GsJ9To+;4GPo2{k58&5v3-Kom6HM+pRN1)QTSTb4l$4y>7h8&%`H3Yms}PrT zyU!B;wNzb@IDY884iEaj#8*84P5cZsJzph#ftns&rhiVGp0vKJ+{QP&U(lgvm9)>S z@O%N#wl-fvPfLrxq*vibere$+d`7;Me*uGZF|P1K1zt~XDM~0{w~qiseoh3xKvoZo zK0#9S^`FzJM=8+tCXb!=3vBCwR!>`aaGtxBPijzR%E&=b$yZTxgE2yUv0>2@Ec^Nf z#wzj~)FL-HcEgSDE2=}*gIBN-*Wkx3{(6}DHnJ`jt*3YR26_uOQ0nT+u^Df4oMBhp zNUx%dm0mPlrf9IV2h=Q-4vcHpYOv5;NF#eAr|~_T95{|0o4AW;z6G;73!*pUpPm|z zZDa>1*@UsO%@D}g3ejMxViOuV3u3`fHS zbv@d>&H4r*H?XUUP*VqkgdoWP$SoimY-bW|oY6>f0^CCNj084)TNRJ+Bg*`-jR@`9 z;>3k#XObGrz5-A0ImiHxI+AZQrA)R_1+z5Z|LATN0)`!%_t0GmWu+mgS< zh60SQTw;TkCrk&v!YwTwFR~?V)5&9@SRn$sO2b;ynaiEaH&tk;N#zF({%e;ama=cF z__y+F=rO5uy>PQ$DO>;CNgoV`T1@>GH5(T9UU=NMGDLC*til$VKdJwkz3$2Htyg`% zBWNYxK||era0k@^-@{?p# zsREA+Uei?obX9`^4;6L*+FEoGuFL>J%<=(zCQ-f<4bAE3T{67VR`UmGlO*oEQ@oVq z?C}F7&0pG>Zo3eP|AE2pDZ<*(aTil7_XiHpJF!SXm!1gIKonwkk|P$KkHCL`fT{x0 z+{ElcBgls}#cSUDfwm4ikt^7V8;J0MW>5KUZyz1;Jt0bo{MS>=ZpiBat4NsXj(%j1 z41%0+D}I)s$-UpCed1&fbhC;<;iwQ|PVKcC`J$nCn~UL``V%LFq@O4y|0ITb!78H! zH9ep%*-w7`g#N@I>C_vvoW1B{C!BWvrewcu-z)5jQm|UM8+9%9{zZC))1hL^QymEX z5s}DV2+u4Lt8)Iq)&=(G1~{o){Oz#YBd%!aOu!H(6(z#VDi-JEXcis_9FDRz?w9z; zE#^D>t5j?KLRGz0Yq=$iRrlRQ<+ONI(+#V*TR9B4%W}O2-m7J(()ZF^eXmn$XtwTQ zNQ05?^D|kKxf=p{_?`Eo6Ab>s{%1Fs&M5i!WA>y3_(D(FQ(S9!`T=%zNVP5KX_yXu z3C4?7Kghg%zdWn3tjl<5ba?q)YkPYUqo{cYZ}fOOG95B5e4T zUS6g0Jm*&;S$YI6*OVdRd_yEJOEb&ZCH0-?G|_cF;W>a>QW*#7#${-Pm7%-!h|}BH z_>WS}I>fq(jac(>c@?$%E1C0AN0|N2Yr2Do)I5l*L6a-Xsp`Ak->7 zy3iykAYVnLSI6JgW#|U!>igNEL(pA)n5c=3?B6J8`j z0ZMj&8X9Yn2LbY?xzi!yqi^N={)!yw zpfp9aN)lAA(#tp9{~(yLf1shCghc*sOXbqWrz7r%7#XLamUl*a<$H-!r-9;QA>NPv zn?RiVok7&^Oji6xhkhV)ITLxA3I4IMD~ z`1J((lf>$Gzagi+DS_SvXK7153wpPcWQP(fhM4n#&JWTHvdfr`%Klg{*zZFL`nFT_ zmR~|?*I8KQOBjkSqZ)I<;+;J%^W`{rHd0#U1uyy75rigQsL_Yo; zrNlpMAfrzptRL|di9^28EZ(;1rfZ_dmde5?Wi-J|Mg`fDCLSrCQc{3kAu!w% z8k%5+g(9p|!W$0gnefmC#&M49%f1AO$Pmn`zOra33d|fgXC*dfs~Y#W-S zOEB^LrC^qNLY=W0e+l5@E;%o(?)o#dO1nVnZpF=t%pUbKvoW?#NWw{6O>`I*R)^am z(UGefO4EWdl+Qe8_eE4gGP8ozsuCQ&APouS59mW+ZU>m>n6e@eaX0pO?Jl6}!r^bj z;f%1FsWkM;vyK=duXqf3iPha6=Fl;(UJ}ZqLl40r^c-|#Wp+EcJ;9bs+D)xMZ0vwU znT4+3tPqk=Is(BwV0`pLSJu%mj9^Z}pwRAUGtdJ~{c41zlD}svMC>irR#+;7Vw2sD*BMU6}YT zr!6@;G$i}VP~LRaVm`m|4*{);F(^8 zgKAlIXiK>qYYO_R(9qH^wK<59gjc)@ViyqpCBxA-qIYRiz-Bq1IYynUCGDd9Q_ z^8I4IB#AO5evFK?^|{=}N~5N6u@Q%JLy}~EO%awOE91*2iB~|wdd?`s5U@cK1FOq) zyb87W+O!3ukt>`vrt50~K$>wvtA(z@tD)6i{5=*)uYyKOCfZ?)<0sP;!+c?D|%5 zl|{K2awoAt3=$l8je$QZl>g$UHqPYMClFdXB_$@rjYdoFM3H~GY;3KE$)H?mJ=kl8 z?XFLP1WQ&p%6wd(LR5Y~?TdeG1;wuU^WP7Hn&)WfcJ?22|ujm*O6(DqKS ztJg^CJgQAWymlfBmr_+foB_AO<{@ zi;QL5lH-_p@5EZSmIiu@lITruU=7j1{vKmJIv4}|7t)q<6E-qpDjDZitpT8I;t@U; z$0*oRvYFT5eB&fTEW!`O6MLC6*}|t*EWp}i9pX<9;;^_q31drQ0S?mB*mxSCfomEJ z7C507*8t(r29zvE-c*TyIyWJDkh#M3<^GJ&+JB^sdI5fJX^Ou@I~Q3J)z6mE~jw4Q6q8zGu|wcCzpw8^^$E4pQNx<(=+TV}=8v<;Bzmh&+x zpOQe+Ka_E|Y_wec64B=pW!6dw5MJC>wu4J@;0bFEflW;qYQXrZQ%776QsWN98w>C<|S^ZbdjpNh!W1rSz7R5aA(<1d%rO zUm>|tI&7(dS=F2a++=~$%b3<|d`nvZAKRKXUkfgSTC+fLxx<+P{tlpIv|z%CTy|@W zCAS7s9hxZ$bVkuW)J$q_BQT+*6ITB7fkf0JuN8JuiuW-UT3s93#dP&aMB9WmGkw|s z!i7*@i^v=wwiZj<6lohKCGGIF5wn#=Tn##SS>MK*B)2*JS2n5nN~*R2zV)?avrZh} zCsY@91hmc#*vM>$TI_W=&xOY?U(g%VmeQ%~=?!leI>;2Rr>$Ii-%4cIVb4dKiH;xq zZy49pks(mkub1tyHN6>~1WN2yZ*NPZM577=H>GEE3cdCspxow()1@~65cwIU0m6zl zo$u-3f7W z7oc<#D!5Vj-9~gz-o$oWaTCHt{DiT|>PD%&3%&ks4qZTRqpj}EnB00J$cwu|P4RYh zw;R*i+hjj$$QBje9o-VaQ+RCyw7tpynBG0N(Yvrac1LuTQ;DeU`;ZP_S2|XAN3A3t z8jYn?xPnri68eDB_%5{N-b4vG{^VUYMC|H+CdT}g{Xg+WM07JPxD{k}Uj7@UfYT~c zdG?I#v+QsTtL5VfnZnXdxqYDl8L^;A-XviH(Du$~d#?h3yJBCK(V7f>6VMnQX)afJ#KsU*GzbOPByJ5xkHUJ$uB^4f&9`-<#AdE}$7hfq?9Y(GPO%+I1X z+mB+4+gYykLpZ8D9eN7y%l)DK1Rqh(IeuDt-cBj^c1k6;qaJ++nw|YbP~XG#zk^k$ z;~l6Yl58qOWZ&(Mv%DI(16>{A;yc-{o7^pdm)C90?nI%YNk=_s zyy%Y5eqzmi(*{58Fz&WcP48y+iGKo=g1f313bqAp=!;O*)mNw6#F{2^w>xEC$XoY= z18CD%^b-bRL*BZZWzxp0^TyeOv7NPxruhRY`3GT9s}rTVtG^@W4JeTK@)tyt`h%{R zKWIr_`#&@Y^!S1B4jo9!s@#J9r0l}}fa;6+O#>+DyZi9|I61yQHmD|;4CzRgs$PP^ zsr`wPepTQZh)MkrC#=7OO1?grsji9fw1F71F1X(f%@}|j0IZSv#l%o-Jex|o%pJ@v zkA7p3G#ItWR66*~AtXDELi1D<3RB5euau;{l0vIgFb55m$s~W_Q#2Hj7`c=T5u);u z2fh3+`azL^ZT-X|We7GZh9FWda;mE++B;Hu=@=wL)dqh-Jp_((gnY(5_}u;PRZ6PX zGM%=}zjI_#ua5qWQ0b=~{r?8tJ?W(Cu{26qf5RjfZk^Jdq~K4i(r7D4!$NJlO= z-I1#-tiAiBS3`nHwix;Qq#7cOA>P_an-iCj*eDdHL4HNjR{VFF%)&~mh;$IQh{kYw zdjod1K@E9F?Ak*kmk(s`)&5* z+-pnu_fXRBM>6ksqQPH{NSh}1azWOqkaZt;rS~9`E67~Drs=)-Hd3m|_mjVC@1<8i zZ@UTx+2YHV`&j*?fT%nFfONm}S}Hsbir;$Kc`v1OxoGBZy9aQs(!mGJ4}wx~5ALa2 zP(b``R@&7wE#KV3>gM9ogkWkDI-uT z8A0sgN5Vz3tJOnT(^9R6(5M(80ZD^*>xU50WE(L8kzk7T4s^tgM1!1Sjh0!`btLdw z<-$V_kqaVMVPL13AZvI2Sj+KKAMBbfDBmm7x=*FK$Mrr^5(6BlyYZa zr}SYthsbx#)gD1sXF=YhsJ4F?Dk~qcdAIi;ROdf}n&$1o$0(io2T&Ux#o}(!B}X_W zKI*i&Uso=8%pt&E%LL%F9+kuuWSx=d^5>}Xt=W->MOfDTNus7)5XRGog@%w+R?y%h zqK9F?#ZBL0;S!{~PUtGr>W|oI0$q1@(96@v$64Drrf@?l-`sC}9Fw}ocAUh7donaO zdouAEJ5KD&`Cy2Y^e_?n1SQ?9n`cte4SeR~0MF*w?tn(wBuYwS!x&2GPm_QXC=`yzgv!o; zLe3##akX4Z#&Y2_L+U)m#qx1Im^v2S$QJ+}DW!txlr}w1Nj(U9+C3A>dfMtGhFVO7 zZ53bm`wuztWr%Lc6iNdoStl2dMHm_h25Uq~PQB;GTX)rlvVu5&;Uz)S!&gm-gSw@T zr%Es)$4DlOA<>A4dlrj&iVg+v3Q3LT(MiNr&u4MtWL)J?to-~EdI0!e_vIAIz_6f< z!)`F7wnP2puOH=L=^M*5QTJbc65_t+XsZx@s-`2RayCq=<{m6b9G)nTtwhK@t(H%K zi{5}-sOugg#ab{A%bz5MMUnuP0B>U6BaQk8++7z)s0I@t8vi^*TaT|2s$k{@BciUg z8V^T3-fA}6(XJdmhLOGdkA08lO(zHLu&tCo?6NXBz`bpko%o%=Lnt$dglI)6g4r&E~z zf|!}eWui>?hd&&!^} zH}ZjXNhZ=k3IBy{n&tf8IsZ4~>|`J#$zR|+&253E+zyGH%r}OaPY`GE@~mVAOmrhG znh9CmhVGjM+3;BmXXY%}70*J1Qmm*)y`yF?%Gl4p<8Z@qI(KAsyH3Q?LUSezF1i*h4kVV_X7eS%TJ=f6Y9;!CKL@84K z`+$6r+u(|Xi-s#)_a!=JW`U7{zK9E|27r6kp^b?oYI>+zF38Hj0=P##0PyHV zJj#0sjp;8jxqhE*X{>q~Yh!1NNG>9oFC&urGF3gWEPR>N&s<2y%vWGg^djM0l1)hu zJ1MUqcQIY7;U0Ue27ibl)_kv6&KqBWhI$zfgKPsc&uk=;0|bJqKfG*ZH6s3O_D#_e zVZL8-nUN`C!iofmx=~V#rrF88(OB-1&qc zWe$#O(!DSjkrM6TSe88xF=}qQO`Su`vKF8a|0-(}DcIcfo+}48Nx^Z3Wo^8Xuu8tp zHRwXXJux+yhp~?go@#!Ln1h|>b8Rmj(LyxQ6upX^UV^>oa{7K7(8+U|F>$ZT4a6cm zjah&V?I>D+2YNeDW4;K#ig3BGFPI0YI@w7?teRV*jhP@GwVaRLn)3y(vM#4GIq!8` z5c-&7sARs40U88Nj)@TqEkAmrOuYp_?OMo%0p$D7T*fmaM+QM|;2BwNUKb)4ELl08 zQi#T$T#z*nNjFVjR;X9#D9FLMX7jcjI-2H!q8(O)$(I9{Ds3#mlIEp32&2my=~lV1 zlXQs^sA4fhN$p0M8E-I_;jdFwk-XQ0?wh!vGj-`3*hqezs?N&IuQ95YE)PWCL``o& zR=r-OBjXK=7erq8x(!6;>oCv`4O8SIs{Yrw_}<`wg*r{I>;AGgtmiWWpg_4%gQ*+) zEF~@xS9ttj`4o-w=vtF)9pZSTQH#!170kkl7Hjg5;aLoUjS4M zshoe2n3VYuq=8A7#xINP4DBm)Cohsrl(e0)7;9bM{u63CnfeGd6@Ex`)fyVETQGH( z4Fcib$!kbr-o}O!k9*tth6|OUtTTLJv7D#(G0Qmhe83rG*itar%GunOVuxcFAM@tf zlK-C!;GiW`^;pqzDb>d~nRWi`v4f|yi1V(T7>*5t!mU2`0gcoSupS|>r)*eZD&bQc9yT4IUHhiQi;jGr5R z*P*@3LDwi}zRTQIW`_&Viu@;bY6>6P2%+2k~W7^?eZGm%KVEu;7Yes%39r9ISmyZxG z`4E)&k3cE^7&kTxTL3u2{BMX(Tq{S2638pt+?9YHUUxCJ9DP0%bdd;`fc!tRRXioI zZUqDu7UG|N|8i<2q-NbrTgr!=SISoL8SjV>8Ei@#wDxB92fQiP_rvA;A#_SYmAQ)& zZZJpXe>|MEjuW(wec@_mTk{ph_{chee>Rrrilvu*||a)m(2|021d zkd#(xgFb+oO(VDWqYuEdiNY2jU*7&85kjtuBpF-xIzD-6wL&I_{I`b~VsCXzA%@&+ zZw87-`W?gIFLAYe0|4?3N%jUAcKN>H<4>`}2MsJqpV?69#}G@Ts-HL2T5pMJN9+b{ z2Yc6Tw!P(_6AaZjx`{UXfrb)D8Kk1)3ba^zf5f^+#zz^7jfBtQhLO-Q6=Tjo0UY-*d(!bz!**A24 z`30Q?J17-z21LKS=q7I1NO2I5Pg+VgT4vFkFp<2SwiTa4!1o1XPaOGp?MqB3Gl=pN z2l7V-<34xXh%j#mGrn-)(Sm%;GkiVA1cY4?_4&c|LjEsfqwqEa92`HX#D)I@ScqE} zSPwt5H2O=Jl~B^>Jg51b`=g0fXj3jR{KDW9Im`l0O7nIaL2G$LqBHK*U z#ty}r9UWX=iF~l&)Nomja%wBA|YBCMYe7Ac1oH*-+coo&8`A`N8kNCZ{An< zsuBZtSg+&1vR-fAMw^aS=N;%rel2S9O%Wwljqe3LQ1yLl6X~iVgjZ~5L1QdPvv0X* zRg*PyJJpsu(bX8MQwN3ec~zaXySI`YV|LK1)dkx_ADz4-7g-f$ zIP5rIkRD1+1EzB!Rt80fZE2C*+spjV-Rk(pdsayb&COT8Aq(jEZ&Tf!zIH76{&pLn z7f*jSnmvp}@h;GPA48z|F85Girv7A0zMtsTv(l^kiH(-N+s~ltPF(f_y}B6=m0taV zeL@Mny7d<924&w*b{F^WmEn~=Iprrd!(;o|{8ePuDoUyQ>CN2(UhY1)%-m;@=Lz21 z`xwB&b#&wjO4eR_)mp?Z{G0UyQOf!O`n2+Lip`jUR{m^4CKaVWF=^ASjUN!hDhaanS zV9m{d?hh<@Z1TBjVf(~JMhCYYmXpO{RkrZBR0E_pjLX= zR&SMR)M04oZ_fmU^_OhwALfwL2cl;VA;FK(a6m34lj@aH;^O`|Pbqhm@)JJW55hY0 z5PkYvGZ^KYtz*a+9OfqOHaMu*-b1c@U8}h65X-0jFi^E4?0;5=9ZG&r=ky^<*?Ofk z+Uk$o9D$!JO)6dv~l6NS}7}&1Y}DohwgdDXrEOIutsG`xg>Ete#&!H zIa)=R1DAfxk?UfnS8j8|ts0{blkwPLg_d8o{Gl?@M6)d5OBJt}$hE?}=I7sFFy!A{ z=KLFz<+U)G{3{2U!us^a|Jx?UN59&%p~Ug|H+(_krR-l(EfRg25(LRj<&@t5(Y$T- zAFDdYoL&_^`-iMIA*7d<^atH)XdAzTmi;>l`~nDQ7tkaYfdDB^-wC%iJ z{ms9nqPzJtPH#C4=*F{>cJgC@bnvK8e)BR&C>R4kA2H|75k$?52^F9WzBG&@l>Dq^ zS_QiD!)>#Z!uY?H{(!RYk}#G>Y5E8$O{_kbgyC6en0Iz+7(W6g!yG3NI!f~^Bmiz3 zV)E01PhJ`pXa1;w=I_`8n@8-@{?IvAuaZlcgwxN-Vnl`+^fi;cv*(8Kzh$3e0Myj@ zFn-xdYB~p|owGzg3S$io0|I<^zQB*K&kYMpZZ*g|=}`^2+Ariy{@~l;#G14 z!kS2scU{|D-MaR%Iw_0NSr2UxXl9-WA=1;uwOR8Sg7ZAh@M3qgu)3JL;(@`g8)o%N zL(oFt&kIHk52HjJ*lEMDmNO4)!NDbbJk&T#Ms2AMaUF>u-5#E>M6+9lxxxdNWnKVQ zMUY}sykX@Zo)m^|o3q5U!~*|owF%=lVPlkPY?sG{B3j%){W zN7_`Y>*Zn2Prmhx3>)N#2_!&uoC8l%EoQDBeTLQ|pjx8M`5C)mk=TpBTnt3QNH;y~ zvAxTssug#`3ptP<{*z~BOy?S1$aU}%gJk;Y# zLQE&G7p_26J8RXJTnm5%wVaM)Yy{b25jCE3%6TPGs(M}-a|O#&mWV)#JzkCr=5mbH zAmUE^`cR+$tHsAk8as~S&A@4h%furkKV zSq<(x;=~vC!ndCB63BqCqWJreB-0wOWXz8tUPVo)LL<)1jYW5SETHAF49BPj^d?`) z=F&!blVgcZZXHf^!Hzz0xTw-4H&JYv`Sw0H1Q{$WNf7Wg~b~ zIlMytOflF&+H(flXMh z!<#XPI!swjaaBh*Oi*+XGn--33bWZYp(D8&c2-Gb>sl zT;2-!=`DfR4qr_=W;VwKbeTIX(J1IfbVsxXMb%PT1Em_;(WW)a&mQbdYl+0z7Gc?r zF;w|Hs|6b}vZTKlvu67_rSuk-AI5V;q|g@@l6@_MO^u&c_aVlGsoXlO?)kvE zUt{9QHki;-D*-`{iEy3F*y{)!b~JGO4a{}O!OXQC>7#>(I_z0(2#eQ89Bq|HcwVMX z;1WwP6|F-Ui1nCZYfX13s_0!Fr!_1AeS)dw#W_nbbC{or7GM1l?0N zU`R=BYv+{sDpAyE<8OzrC#5y6(bv;f(hg?|+CehwdImuWRY?4O$#fK5Z%csk4!bRJ zDYExmj_&TMUGt8}nJv?aOEN(OYip6aaYL1}se zteQygx+JR5V6sU19_&adxr5F1$js_C~<-POUCv~3i|6lqci?8AgV zs}r)3krK_%BKlIh7_-u(A%55nTxJhR)VuFt|yw@(vJ?K@x1IT`;3` zMu}RvU{(ddjJsl4A|0wK@LR@0PG|Yxt^`%Hc6gHPfwC?POa{1F5_U90>8NkINtHI8 z@Db)gxuez0>(Uhu;=3Y}pUk|`NpVhkgC#4+k0&OBLgppPg{K-aTOtL1dsjNzC$oPJ z>1wIfxKYMiMpWlv!7a$Gxe+zRd*l{KY7%>ImgVkd0QTKT+k%@d$@;fg8b@xSmy5gb z9ZP0;$!tsHq69SV0j5HEGNmv<>3c8LqMLxqxP?gS%#FDTR=M{>xAz&Vk4CxLR?I;{c$J$%noX@!xpZ&MlNun8a>Q>ll24!}0^!d|fnUQqpq~~Xt zt9H!nPKTmvmge0CfVI;>^LuqSn$qt9B)l6DP}%q%tR|apgFwdL>Bzm60XuoC&ys1oyAR-8uioH9TM#zVQIRj z3x7|j>R0g@V80y;;qTTO+L9ka(SUGpmri8ZLiH5dqy%RiPkloidJ(z-6 zS`$F#_mIP^oYm&^!I$XU=}78FHCK=nJu(F~JqA6|7o;GI?R{`p53`;7vVQIB%`8yR z_&#tPeJ8yE?dy+`6YtT*s_S})LHl5_iT3A45l z8&(aupQ~gV4M|tY8AV3UC5h)9%&t4a_*7g5 zU&HC^Pj9ZDXq2Z~Ru2t?P|*-NdJcw=rhcoTv=ycxmv=W&OL|5|I~|S8fkbHJU{(gb zZ8>x|bWaau-Cx*`US+EAv8iwpqvplRHa`UCC5t=u^ zX6L>%Vw(OGTq?OLLvdc{QU_sNgGhuJ?!g?o!HT?jHPDhyGzDDBAL&N@fIcLb9 z`^*1mI0%xOK3yclT8bM&G&ae&U6@zysE(0T(J}fzg`IbNRAtu3K?oB{?j1ns5Clc( zAR;U+L8X_3rj$SukQN~cy@rI|Ng$9zPY|hrB-Eiqn!-v^aQAf;1jD+Pr3Tkk*P8eH zoS93&-M}BYpQoJiJLP$vbMM^AEa?Xw`vKc_e*_TeQYnMbm>7W&-NaRrx>++%cOeoC zGfV&Q_K7siCR5;ZwHC7wM~7J4E_Ur*=bl>Y@kZ zhl2sECt=4(1Kpg{mrTa!NqBp(k!EfmuSFs)I}&O6Bv(u~f9!4qT`mvuI#of9`@sBV z=Nqg{CitH45QrNNgN>4eoHeyi+7MJ~b(1jEX(hcuOF5dp0f*9E9fC6-&7lS4XG8G5 zR&HM#9l=9UuI1q6p;$zhoHdGc?42Qu{cWg2r)?uG-Ehe5=J0u>Tr0g z4@chgkt78II7G+eA;fEl`M6{(v!NqE&~GHfT=?%YMz8v6VHC!Mj)P>`Ft1R)3TR4L zhmEssB*a?7?HFP3y#j&=gFrEl9^rTh1Qn(AaC0)4q8wtr<~SOam)_(;%U1}I8@|U4 z2i}BNGpyBUfM1#ljC-c_p<&YtyuQ06rL&@a)uBDgiC8|DW@tSqd={9R&M|Fy&4o!-dOOU zkJbZZCZ5RPxvGhRny4TYwkFB5<6-?nD|3w30Di(~Ecyc{lFrA*BIUw3E@@*8VzUZp zQOJ!)N5(iZui*sfvc`B7J;-}|471^5$;R@4pk^>a*BjhQa%DW?t4_v2`4&86ADh=CX4NWm__j*jAz~*G6GsQXIB1YMn0*Kk z&zUied}=fWEct2BYC01wrXoOdtoszYnwr(j1Z$2jUYRk?%Kp=#b5AqI7}uMzlaRn9+X2%Abh(RV7Us~a_{(9xxWcz%ALH|jy*-X}Quf`RnEG>@F-^#)&znCcBB zU-UPt6@5NauTSwEtkAOaP6G$FAk3VY4!;`2V-lau`K%nJ(^%QwIx~*aR_nOLS-6El zh9Ytn7HW-kA|9bSTQVLf+S)w}m7mTfCaG}{TXC>yDdj(#mex+c#xt8cpV`|92+&ev z;QR*!@LVpQS*6of@OiqI>!M+d4G#Tiq>ZrjXcM@Jiea;W+lEf1Gdmv zAh>6uYDzfCp6#?6EnxPa36An<^HH8Q(@}KYC{m%B#*^H1@Xg%WY%x`g(0U8#!pr(H zHFUmXkIqJllB}PJHv;FfHWg$}9HuIkXyZvOKtDFIRAXwJv{1SY#=DJ-uQX7|Qx8!l z7&a%@I6MtLm6AROKsf`*19gs$jh^R7CgFT~)d#Ar$sF$(-@-CCV?^OW7%HHy38>y_ z%`i!$;rV1Pbbm;~&<>S`Y-Yz6Q9cbg)8aLTWrV!e zGIXRZ0g!&O?XTS@k#c>BG1_#!ACE7^N+nT_*z%B6N`yo|^RAeP6xD#uYGxE{E)&i9Y>TpjRMiNzAGGt4T!uGTb`uBjD~n$v2WudBKSK z&={(E$|dLP@x2US^mu)waMVZLlaU`&p17h3oyJ?*x@RzEEO*2KyQ(~ujMj2&+&7kE zj(S@qsVg&$XCsn$sG;Bt*#~AwJ$BOwia3D%3C1VN+AI+v4l9pz_A_e~^1dNob6Q2# zr?`S8dKIu*rC^(;OsMGwXMt@Q26|I#Pzt7|khAVp7^rCzz7pBm+Og`tTj|(wpDs|2 ztVH@VD;;s4n$~}-s49n7VveFXXLLuc!q%8%ct2T*^2Mu2(p_c(v^9)8{)AfC{Q~i+F%INrA9B=&r$;X?3*levi2Fxph z>bwc78PhlHwi+08$c6e9^{ZVw238r0S*( zn=sXZR!y!MA2>P75oI{EOVaS5bfXhw4UZ5w#f3y_!6aYX)@`)$S|HlsIxR>g3k{KDs>t?mAGqc+2 zwv~wwcA#?H4q&Lf>f3l>Xa_)B8*??o)h)Vg2&^x}komT|gk26i+a$6Az;o&rKPj~f zI)!}PcvGFG@baPLLso4$Ceu2T3uc!VLdX5WE(689@{7NH*h?C5`A)Z2;q-(o)P`n) zM~~2VGC20lp`4g$Xib4;hP;KLD+|w@+v7X7o9scUo}C+wjHDx|{yBq|j%8=zqH@rB zg`|4r^5YnWY}X#h8ts9CW1NoxG950Jq+<@Q8mjQVev;a7#2Q{M`D$Cq|Ip|yG-m9D zPHUX$`@y4S$mo4qRF#w>`^{r6Q>{eoWl~#^u}Jr#rzi|mV*WKkyCQkE<29(l$EaHG!{r9Ha`(I%J+P z900FYSARVSI1<5Mi_Pw4Tq~>v9*3gkA;fj{0D`gZ`Lz8H`RudJtLv%?1zM|eXMfOf z2(9KS8xid7hsYLuQAb7@RsUPD&*N>7rkrTvjavYzJM(<%c%+M)Qx183;_Zq1K5PsN zlvamG=forAYQ4jz0yhQWhuLsw>(UV*=xxgf*=EZ#*^y;tHPK2PMeFZ}>E=&p>$(|B zJIpK>{{Pwq$9r3=@}Z4yftr_Ks_C zrRp~e6)9vDDqF~}(4Slnvy!pASqNmR1uG&u& zBuQ$0501T+EVOsYFFGuV_(5{BO8|lhb;YNluztOspHO zwgst?>>IA31x_}<>GFgW;H5&PeEx3y%nOBzx(XGl;`hXZUVO0q0BvK>Ygb+C3U@9@ zsuRV=kCo}8Y$lDPi}H`oZn@e%&Rfls8_z2*oj=1{*KfI81)BZ)t%Bpix9J|?u#R_J zLm!8tNpj?z8j^d*_4(6}aY7SbVshE#<<4za39)lspBIGKQ}muIx!{b=`1Vn=eZO-p zFOWCod)Kwc!ff^c%)lR9Eee7uu|E{-yZN_&aPjBQUvd6Q@K@4v`-f5&->q7Zn~D`H z_DVBx|86}gw~qvT|46##Ub^kWiq@9Q!j_*WI6J^qpxK^5?*vG}v!#v)tSNXl`$WJu z13S0XgL-~@)gw1~PMse%8M?-7&$DGjws342o z*7J|%Y%V9y1yuIjc3ZiRG5=4RFXDd6`mP}BJ(bE?U5XSqJH4Xyh@~;Lvh|2%Ri~;| z`iV!H(&WWII3d?x7mnF%y(_0cU@aP0ANf66_)9YLS^#f_yl8#*Xu>~+BBtb{=zE8R z%FGT{9na?WmQ_T$b+S51R%gpk@;X^VWNT;ZPcpKz)mj>LwVv|a>1;h)*fg8UFCDEC z64=!$ZD?%In6B2=BI4>{HIfdYT*{kEGt<@9B-7Q)C!yAO$?XkuP)|0_ykWG8^t2+R zY9G2mVOA*#?`Z|d`rcMY�bOU}4GaWd+H(Ue-0TA6sEBab(_x zUPksu%6|qi5fbLb5Fl5=5Kyt7^@6!Hl&{~ks>(CbEA(5!e9Ax$O>bNt2iM#!*;c{&tQDUNz*93L@`(vz{k{Jm})Ei_9 zDl2&7L8KHxewS~NBwE$v+i)ksL4zSFHU-}wjj*2gM!ob9>nVv&2Emm`tG1-hK_24k z%C5n5RlI789ps4D?$3j9N$g<6e;NTD&Ur>sqb=UBHqe-@T*U8MRf+8n+Ll9521P)z zKmJ#M1-7>@)CKX@9fgzE&636&^%~S~(S3$DFff|%-1>X0ak3>CDXPA{DmxiMb z&{gF47{ai1hE-nzhgz4V`A~R28D@2r@Zsd>$g$*TyWs%z)9wiJCuA61djwJl0~s=c zuC{a{Jl-p`6z}ag#KfY4m+hfhf5{yO$n24rP$G(D;TdVom0@G7IdQ0ADOjWPF6Ahc@nQBuXIC=w&I~&Lo zqpgvAtjF@cFbWeQVu9;)-7=#;`D2e^QP+&cVXO$MT;oYcd~sP2#wzYKhRgP`TnfJl z@X-ShrRFEaVsDJGjjsAYJzh%`+R{km#ZSV(+)2!y52ssvJTWh~goSx_EMtzS3SP4m zy>jTf&u?i|bI0Ow1vGPl10!)PqKM2>(s~kOIPpo|dBAHe$Dwz}I6R~}pmS?hUw@OV zUOW+6jT171<<(0;g%kgz)JGf@j9M~CSpyo%1YU>Rz+z) zo=sEz0dIhu7>3WgcgNUor=Un%=O+{4E>l>?KTU?D#T0g3T5Y}CMEVp^F;-f-Ov4`+ zry@Y@pz8}k!>K4D7<}3@onW+xBRd){q?doih`I*bAQbS^#ksJ{rfC#CT$oJHv^c!^XGYW#Q{u zT2}QI@q7KMB_S(xYP1&?oH#pSzJMOCy=}G zvq7QznuDUgaaDj+H;!yJ)9NPG4CG5ouqrSX`RHSs`ITDCS5rA7ct?qip!Nncsyqvj&OjN_+ys@dqMQVAyP$R)*?V#@e6U?g$3xX zu#f~J)yl}l1&q<<%QbU>+hhrs-xpv})kPSi3n*m)t=z?2f)^7M&1pxuzoDxmH&(F0 zs1rFQ{p7?F{FgSBOs>6_S*<3HFQN79dK?jCw&9Cw&B_QTY3e1S&1_EcTq0w-`0N$< zc}aKNl+lwkE4cy8@e#~EG*L@tEMaWWGBAH-fNP-esg?>p7`oKmOReVe@)|^;H{gDZ z0%gKdmT#q*@Y+VovLsX{EFj^gneGFDe~_)RoLojCVRU`(e)MA^wrPT>`ANp2rPD~R zhq{`R6$}DRIA8Z6k{VvW=n3IW1Pb+$pVV2&Q9dvU+q7J+n{2g|O0%reMf`uOC*7wJ zPYsMpzq6d8%{Duh(#9<(ytVsSWr`H79iJk&LW`{}NtkG@1gj&ll(e2gRlH#}KFXg^ zc0GME6PZvS9ZP3Vyp&|ElfV_&>F6rvplNvD^qSIbC8tUIBqD!35%+2_E-P?g&?1s#>8_DU4hTt?2bN~(Cbc5Ug# zPes{Oz7j~dJT0%SWXtWhf%T%wSu~nr)LYszyHUalbW}~DkYKy!n|}+<=9_3%*h+#v zZXJowrMY*EC1uIT6ec3g?(t9@OUmxGu(3+~&C;_ZF@;2E9S72%QqZeofvZ_&Q7M3A zf=Xm196AAsZb>dVxB<&EH-MgdjH>(!0~cCP%ed9pt8AUtBS2$(ay7HuEVPheXK96O zv<8Tkft#vsGMi!=;++dy%}%!OOKIep)9NNmQ=tpW0v{Z>>3;WkDk)d}D8%(st#%Te z%B<5Z>lwDmit!V_ZQR`*-inK+Y_oRB_uH%p&)n_S-ojq>fjg~8>6i}cq=Vc+y_62j zQt4K$lytm(FdZ+hO}7S{7KO+G;HP9+4Lo7Htc1b_W@Q<0m;n7Jjb%;iNok$I-6}u= z<(J)Lyk8dQ`~T`L%_1Q)GOXG1Q3fT_!aWoh^Y(zhXa@JU8?vZQ8tfwKzinpQX}O0D zQl%&xB()`O501i(f!@}jeVm>5_ENAnN&`^Le&mhX4?gwQLtWO@9waZ_XT2UcwGw{}+4E;mSZBRtCsu4{>me{;%%tLr8(7p|}rnqtwKM z`46@HW%@ycGNvu=NOr=JW7xPnDE{3&v>+9?+C z7spsG!%tdqa{CzT=;|qJvTExNmAcsH$QToT`v4xYq+P>39C|JY4t8< zEj$HH@%MPxaKliKe9!9QB}{#fZq6w*4cY=-`O{pcpW@jd6vxHY_@<} zC(Uz@bDSQ57uY4>cuG25pgte>Pa-hjua?{^wc6>y7wS0LqRFOgOEQ z5_TTtY%Z;(<~eJz*JFWatpHE<1uHU^pMJLeqp%I-H!izZb!;LTid;5 zdk4Fh#b`OwK;B0aj;uS-%JIGTQJ zx0lQuSAcZBXtzr~-n^9jV#Iy@DwoCW?Cz4+9@@Q~?Vgg+*6tyD+S9sq&f%K(zK`pZ z_wDw|UZe{I^NrZNo^~m@{E0n6;(OETa>BHN?DbNyv%OmK+9Ld9Fs=0Bm=oO59w?s6 zc4sf!wRU#2B(}EuO24+?pYXcfJvpSXpJep4yU8ct+x^iMAfX}jg1X_Hh#pwpv^z$3 z>5ANte#l+domOTKW-GnMEOh=NU)e7!>ye(Y>g2tyn0o7$-7z`0aDc4-(PvP&VLTRU zcadwa*=uBf4~)<2Yg8Es-*oc<`nikUN7j93zv?y8a}^^)`r2$!K88@a*vo!Hy7jTC zJHNGucLwbRQfL)St0c=re-&uPohh)coG| zL>V56r{jAu>*{5Xmv;u*Q{+q-#^eovIHy0vN&V@zbh+Eh#X)vy=~}}5io_29UC%H( zM&=K&CriU{=vocH&iHU3Hj2Piv%@i}Q8@WlZJ?cMMD>$T!->O7gOH~j*9SpYaR_wT z!x+mMLF@B30JJEQiH0K~E??dq<;|@|Lm86*r+Z~2Hb48ONy!mldA^dngV!rt1_LN@ z1QyxDxe$Lp`CD0c2R!937bEQ9aH6QLe|!Q z(oI;DI0}->k$9=}8+a)p3f@Lh@SYmNMEG#>DX^ozbQ*0>_I&WB?O#~J*W!#5C+$~~ zZKCnhh(78mRelDZz+ZKv#)B`=Gy|4fG1qr_t%ju>NamXPuAZkuHHOBoN= zmS>DE!`1FINYE82`(y3x5;`86`i{e_Ot42v*D272E#y*ZE|;_^2t79kz5j@Vmu@e4XC4!aXK+cKf|ODV5r1Sp z6FFuqcPf{5NP++A3>^E<|mMz|DM9^uAiAz1fM1#rQMfE(eBN= z5Nj(b&Op1v4t9JwNQ0+CcWas#B>#!k`0DPDj+9@2hAnpy_PQ3~p}a+`)5rz17JlPM z&RU3Hx-T)2Hj?MZb7`CeN#F{c{h#72V1-+K1$38|L-*WrRGwJ@9b>)Z>6KirCo&to z3ZE+7#-;XK-d3wb#+dEtB?k=H8!V+#)2HI2)y6&U_^}sreOW#0L`mQG`7s>%TcLPDc^c1bU zwa~r30g`PSxrC(JJyJH>CYd!D>t|Kch2pht>G?WIeMrlGNcU!N9xne3EYPbmvMK|EhrDdFn;cM+5yaJ{Rl0!BkYE)H6)P&VIH#L>9&IWeyCJfVV z9iiK(B4Am$rRCgey1#BjK+a}}L$|}0wS|afA0bn8bJ6b9y^!pC8#@~Af-YiPYX#%u~*$?;9TKF_h*Ifu5-K5_hdzvh$j&0!wh-TX(!^V7&g_rZ5!g()x;u9bxX)$?+#m9 zp5IFv1@1#i>z&B^Z7UZw;p$u1rplwT9J3ORAy2*5v=&~=cZ9!j@v#Gls(8SDJ*AP? zOX2e5e#D*HhopV`alL&IWIr_l1<2|q$skW8;gcs3K-z48tqEAOLByZD5gGx!(_3m3E%4lk|MCP=-%L6Y--z<47D z;5p|oVf7^}3jPSaOaDS^)oCtw-s2K?mdobJY-8x)ar6mDC@y=N1FMgWI7zozkTZ(_ zl0C)?h)t6&ha0JX5_o9rDYHKy`_eAr8|pu{c%ysXUya%e=%JhqHD>U`KOZu7^fKN| zJ;ef7Nt2PJ47-ZkuclmgS+b-Z`*XuH$avWRZvJO`o8(@E-5m>UVoe;tq1nOc=VZDF z$-mx3?tn3<*4Z!5(CsqC>9#pfm$RNa3pG%ul{P562gO!8K8r z$q6cO7Q>%`aot3z_Wx0KQiAssm%;3H*Za_Qy2#j#(_Fs!h()vEJ(A_)PpGn}SvXxx zfNq(PmW_r@BlqH88KX7{kqw_hx8Yr^-2D&A>5~6|ZpasO18=c`AH8bF%Eg-|5MR(; z`VFn1uOQ(}?k$Hysi)(s21slU9=SISkL3PL-lqQy*(*On@yawb#@wW6qLx7Sb!Lx# z0X(Enmipg9x8WBA-^j&%$8$)}^PgjG%3XNx{fpM{&uHDb!$rP>7&a}iV@ws$Q37w^ z(wDx6uHtJ7h0nnMLCv01#ZRi`;F;lnCoh9($zax?|T{Un%-9>fc4+N;=cew1|0@6JuLw_N+ zgT4c1_Gion{TtNWsr8ea|1sN|$-CBH1L@gWzHGa66X6RIjIL{BR;r&Hj}J7uO1Ry! z@Hf({ZBh4NbLTTka!R^OORbf@I8n?{MunMOz(oAtMcmyaw>YMT_^}%|P2vDiH(htR zxh+cedabl6vZ&`jCvWO5ha{-DJ5rh_A_a|nMD~Qcr+k^{C3dg+z#S^z6?gZOq(lSJ zr0C6J?jEwOsQWd^E$Qwq>qL&J5(mt=i8Dg z!+a-6n^O4uV+#Qt0^EK0$IR}N<`!`*|7Hqp4Qzl1Sneqjw%*~b7iEH@I?`~p?&n{Z zhWC6qR0ci;+m*67qIx-0Qf*OQm3Q}*PWOqcS9ZTH2dZIPqq2~!Pcv~TgLAXjIy#FZH6UU!|$rK*?^UlCEu z$`DyaMb-Eq@v=y|YEkBT{HNRYsVX2CUX_H%DdT=i`~vY1cKFG31C1J$TYJ-ORR(V6&RK~9wJ0e9vHh2;@aogQXW|qZ&Kx4ny0Er%UX?2-6 zoMkfXX?K5#uMU==XHa?XId>On+>oGLuZ^kHlwC};2FkLhF|~0m00lh{9fhi%s&4sH zI#~2{OKO0WpKCyOrzR$RRLeb4);x!z;O9Zmr6v)qU6<(Bu7UV__1rs6vFSS*JJy5l z>|UOc1U`u_yBj`nU ZgsC5UO6rTi-S~n#xEQZx7cE-o{{iR#=jQ+b delta 100839 zcmb51d0kF<%$de^j`}?DB&w0-|&spB{zW3%PO&{D+ z_u!Vg^SAMBW7~7K8D!a=-ruI{HvPBhxlQdhJN%m7rnBwaf8WqH+w}H$_X=JzVOs95 zpY1kv^{5p$96oECLEet-y83)`s;Z`ps~We>Hf5c*`AyyVZ4S5jS$WrvmH$h3?C#U8mF`t%sou0@1N^-DgrZc(IA;USr(D~`$Hn&%F+Q;e9qrurcWQwzCKriQVe$VgO%NbEAexY-I zLr|o+=f9N&S>9NBs=fs|~oS{VYY2RMXBij>1 zf2!1brgKxY*4;Z=Ho%!&-pko%z%1we5IGL4bq=kob$0H%lXGzSOlMmESO{W2c&c$^%o(@BK%Xey`5S26eS?e8|=I z6zBZGy&UOu8?uvAF}ub+^94F$(_k-EndSU(=q%@v9cMZ_RUX2+vj!EtoP*nb-_e%< zcj{%<$rwGqXk^Ly@oKMA*J+A#P)&pBDE~uR8++91%Id@)dX>#Z= zFGZ!7kEo@f1Dv}9y_^-t)j0FE8$ezQo#jEc%ZOTM?*SAF+2(C2=8nD0;_bXst+TwW z6xYZG7SqS#?!3_1M2()Pn&nIzIm;~W5985;eyw7b^ZdM88oSn+MmLzKdhFRGuhm;oN;q&odbr| zI@_|3x{XyENv{|CYzlUz1~;C5s`WZoVzg=OET_ltSx&bFH1D`t=ck=!IrA5^g(D?x zIAfs&|7<{Mf$Ij%bdD#iq2ms4?^#sV>HLlk%(k;^Y}GEmdp@RdLY*6Fdwa5hk_^XZZ0&ZgaZ zvU6+Qjc;|Ta)$0X+ZoF4cw)EVGoVp`|M)v;k zLFbBKFX#KZ=`3=sb5M9Vo4l4-Yn+J-h1rt^sC8~9*2jC%F>_0~Paah3Ty{*kb9bbt zGcYof%SDaz`0*wFCyRq7GMr1t4Env+d2Twkk*}P+XUuR8+INOCkCMo)$1$bfKkPHZ z`IPIx;Qc6DLuqbuCr-;_%bn+^MV;lxmF9-dF8#h;`s5~z=jWAvKT$yJ0#Tw^s~U)uq>;D`w6xjdAqM8fQ=>==7M)iD0^_#<^$CbSe}wbD!-dS$mh2o4FNbHB_!dFB@1x z*Qts$6DvNVvc~y%b`8f9tGS3yofdS?pGigOu6`W#b)9Oc9@Xeu>l{6EczZ(S&Zr}F zZU*@sb>2IE21_u*`C*@s^Z2}@xF+1f@`$F5I@dVUaQJh1*3wg@HLjsdL8ElXJ_73H zY}t=KiAEju=b6VX;VM^J&vOqOPW@-J?~`&9;t>ajjM3<+Z6G^wWx>{{oB z*~6XrH8dRMo3L;O#}rN6aMaZ!YFO7Au8f>;Q_G!$7O-T)Yv|V!Y-xQ<^t9+q=YmP4 zij?}I+*EBtMUC@3G2IlM!5szn9WzQeo5$8T4^y>sCV)+K$@OZx#`!Dv6!-M0F$Mhi z@EJ~*IWxH4mI^u#`n$T2$!K}ooVJaM|H$?=Z08bm_XRVqo*p#Oz8@;Be`$vfcm7&G zqishG=c*Ax=O|~N8718VkDKn4c33ZW^M{=}K0Mpbt>3@3+onykbQu0$&ca_G$9;eM zX4kpkgg(KJ&h<8j|KoPH?eKM8J>j5!9iTXqPCRIE2eNH^KHrov?p}{{>+3vr;@A!$ zI-k@r{0aX<_HxIvmAjwZV0Gkh<)x?I>g!Or-;$%OVI5`Eb}igxm#T>?&pGF&4qZ48 zp7Q9F-v^n{;VX&u(vLo`Pe+kD>&`y5L)qN(9_>iBa`gGPb{P1|&o1~M!h7OZb!h3# zx#;MQTsp5_baX{WeR(KziE=cBklGT7+>YoU)0b2?DVpo-R1SX zE?J-G?cB4ZyK~RUW1#yuS0w)SySFsERE__=6==Vu8M_NF{5pEw*M67M7TlO|-2aqy z-p0A~;=}g;y+lS!w}aP{|B351A5+%fz2hWuc70q+{*Pv3t9Er)4Cv9<-EwN#p0e!k zu8sHT?%Z)nopa8h-u&LXqm^5^-K7oI|Dle%{$F#Tj$?mUxBV=n;+?nI#^kU(ua-Y175o|MGo1%wWTxrrR9}ow_S4R#v!|ba)(G?N+Q@aAn7G zr|eH1ZZv1@O&xF0x|=JV*5*nllpN~RH&-~7&2>&=vchRiRyrBxnxQS`trZncqvZT< zy}80kL#LP5IaadH39hJg@+*cq)-C8jXV6LV6J@S)d4VGjS9 zo6)IKfmMF;$q@f{F`Tu~_{6U$Gc`V)(t-2$}lUvw+*(O%ZI)7|zIZ62ZeN|5J-U=tO za*&f*Ng^xZS59)`(Ej`Dn8OY_#C&4qK&O7y1b6k-s>1`0GjUagQ+|7QC-NZ9ADr)0 zK1c&RKm$D(Z2L_m?yqoy4;)(3TQ$h>Bex!3<*q)%>gE(y?djxKv)XGZL%Pa|rHNt< zQLLey{BBrN=|t8r_ZZPUL=In`?`oy5a~Rwf^sZ#k71TaVN`q16i<|D#hJ?_-0U z`bQTyt&gs7tktyCW8>YeOXTUH!A|DkVNT1##@flR!owqYcx15SUp?MkeI_|&*RWcT zS2=+-105?(>}#u>>UDKa(_>?u4UgA2X=DX-@`P7SI0ZaJ9vbR2r7H=2XxkiJ03S!E zJ^c7uY64c6G!=dT>>_jjiQTk%kW-nX5%Jl$4*&e5*Ht@-bp!cLrdc)vznilYoMr23 zjINcdS{cq&T2AT-7U2nM$xr5~wu~B{Anm7yIoT)qEy0r%n%|)(hdJS==)tF|oX9hS zoIG>(Q*HC;G(Aby&yXE+k!OZF-lz6-{LfT5zGv#3*i(ayZX8)&Kf>g<@a<>8c%Gl< z;Q2{DOEuR|a{SNNIhp5a(`UyxtJl{$`R5iOLyw>MdRh{lD0I^3R5*bbCOP@_Gz3^a z=8Nkqpo#Mt{7H|W&s(n!nW4+88bzq!C7J8HB+sGzJ7C{W&_LnI#qd{-gzAveDd}2?y|XLS$uXHglnAH-HrBgbyxwKE zYZ1Kf402kTh`&R87$x4Nh29Wt7c?-U_u%OsvKjP=JQ{4?K z2(IaaNlyLyL|Y`=UnzwNuE?AhN3HMU1fA4JRP19G?4vrz{~@LQXt~q+VWs2$nD+aW zBtGTD`V=Q0@Eg7O#}zB1pA5B}){iO6M-?k8KdG>s#!nA*7Z2kU^nT1i_1PXK59y{pZyyW1j;N{+#Cd{Cp?;1r7DZcz45{3jRwn{1RvX!r8w#2EQcR zf3b|v*?%$rB~|-f9hU7|j?%Bt|C&AZ)dfyyD+k0^B>6QR`89{ZSKxhps=Iny!fx40 z`+keFZ;0d@vi+8G)X=mr^I_;HbD6E2FyF9&zv1`R3PXpsvNXv3-%-WyITj7zccqEU z_morue)8Yq{Rj9TX1j|YA=U8rC^6wj$^L)IpcSp{-8q&u(k)un zAUAJW6>eOE-)0E?!g{PKHz5_jWesy1JV>j{tWyoToAp?O-H=prHY!mMDlN7(cxfIr zxC+;nFlJkm-GXI}b+_799ly>hv-WjuFWOnlX!kYC?s`3-G?K8J@mh6m)M#uAOq0)= z>2B?8b#q(1xQurOHR7{|y4g;Opc6>dqU=tXF;uvDp9WD;Nn1Kud%DSO1!@Fd1WEbG zbhb*XP2?Tx|36;2Nu{;6b=6EHS|(FMA_S0 z3*B5#sMz+H89}BeQX?q#w8pq|x?44FYj2PXz0qsvjb3^OC`)W}Z{myeW<|Vxs9Q#J zehvBFpg<9GZ)*>?zK?aLIV46>xRg}JiJEaFnO2Uu** zepa1R{%LnN)gKTu?=QE;Ger{)vba_IpquL*h^y29DGXGK14uR|HY!*4K!&6QDNzXx zfk9f_K`O0=%pe-fKZsRYd?4N3FqHP1GhNgWkYj^^N)Dki^@Fjk9BNG{Nvnr|(khks zU{H)o7|Ck z8nd9-+)x0l04_tr2&mPMG`J&X)jKLuzob=A_AmsYDwVqm%B#6V6+WT?2?7WjhQU@! zFDR5|srdZ}ynd*nVvY(REC5h|uL2&I)ox&z91UYG{!1sfj)n-~Rai$YN6Mn;)K z=CIN1x6EiM$uK_>d2BQho4JhU45E={MiFA;E(Dw3MFI`>SZjrwA4AK|`Hp@XLkRvc z5{?0>I2I~4R&cxEGe4FN+%N{JTmvU{RQhOY1av~O~U7>OlRg{TV*o}-w>K}(7 zw<}Oa&^nF)qT^sgP!8*m=P$!q;1gg2nM5wrs z&0riAcjW*{@6I03J%U@k8`Vxt0y#fXdb{CL7fiQh5AE>XK=JJXN?w9xyK|{a><()i z!6YmalG=Mfp>ly6-2;o*9@bpfzdMVY+zml;cS)6gU^kSLQqJrpyH1yY$pFM7w?2J}GL2T)sVa$gOi zLi-@dN)Q#BS7>=jL(|$R^tfK^O$~HY5crH#vIhxIZ1NzAjWQ?OEE3Gj05pC8Dh&sMVok@ka1esr z!CLc!VO#e9PXX(8ASl*>G)>`9pt6So??0G1EPfpZw%i&S06Dj2gPcDEDn3hL9H7%^ zHf(YxgMEMmhSHFnj!LD149$?Y0~GEo+5(k@Ze#}WwH_dE2dMR?vpIb;FpJ47JX0kR ziZzQNJ)NOd&ZEZfbb(3`pJC0H3Q@^6sv&crmitguO}SO8E{!u$A!g=gX#s=`R9z{^ z^z2fZ*wY89lBzuv4R;`y?rQn<%?5?cIgAb=aO*I+oC8YoFb4Z@DIcbai>;K@7G+dI zhy5%)oVnJ+trjf6JBq#DxDeZT14Y~LH%{k; z2!jjB9@7f9`Do5_y_$9#Vp`Y+wPg%}6;tJp#znKJNDRsd8jnU=AJZZpjSHXHqAUVO zQ?#T&{U@pMPKIKjhffyDNhntz%UsKe3=JnRG##(uRG?C)sIN~ZwANG5%bp^=lV9>!>=VB(759LrG1s8E#xtMIxZ(4Z^J!3CQT7=s__p8GS+Oh;64YCcMZZ*38C9+r|csa*MotqI#%UM_y&%)M3${hDgHSGLqd9zO^OC!ji zF0&=pY*Q8kTz{?-I+uA9K;&$d@N8J`*_iszl);%qmQv2eGmthYzqnLPMHuyT`ZJU@icNto=JFm*6dcFsqp?CK6@H-p)-L>pQHLK`$|*)Gw=~t z;z?1a{>04HVKEU{ zBN~-)0*zj%)wmE4`$8@|nYdo0T%e75A z3E+PbWD_9!niOag7Jdz(MCn-W=4NGP0K!cwy`*^|C!2JaCN?8B^GD5T2pQ^9Ydk0H znoF&n-NeQ6cQJ_N39gBeKf-1%QLkO18|}@Ul$Q`f;1cGeGG<`sUka7F#NrXAd)>v> z2)FuT{6{q#mr`CKwgZkS!ThWdx=iK0SS7n0s{RVC+2y1dyd0|fa-4hr3|#zj`ZW7z zdH<7wyj42L=}YDC@Odj zL*+FHvR5f~nfWEiIAl?MHI(;id=v#0l{9oEf`)5g>*Xld=7TN~)uF9zK(EF&ER^c2 z0QFr(xb;^;g_a^{xkec+1vGXgP-d>_8l*9K%U`MT|3(VwYf;Hx2dMvA#e5?ujn`}L zdgd}3l7_kgDzr?4D8GiJ*tn>;DEm4stcz{*TFnVG%Bx&Ado6b!mDj7V*D6a_HN8$g zTsk%{WqTQO!5d&(uV>?w{7PV=YPkXBh)cfd8z^>IC_xu#{W5vGPJMrql$$|mZn1cR zd#p`U++x+ck-uQpcq0#N<|K9hcQdxh8`-A5n{-uADU2Hlvf&m08d?~dZc#7Y2o=5A zdfaXP3xOAJqUk4I1Soo3Rc^#lrEKlL5>V<**Dq`d`j1NIkb54v-X5NNafN{~;geu}g?iAqKQ z$re5Ak@G?lfaVnle$fm5O(~c{{0-&CW(G?tA;pqkp{k{b<-cR5sihK^S+qqBq6nw~ z_fa?Di1d-(1VFu#X-N`f=2q$53T5BMS!YU8eVZPADn6(^U0W*ITd_rt` zQ2u)be?M)p>~6Kiy#OTd<$yJdT)k3wD^ZTFWR5JU)%~F4?o(6W$5GjQPpRcO%LO01 z2Pjjk>idZxEl2hD5M<&$!iYbJh5evXcn~)908;w_*uaDBec$u|F8vQs*xUn(%B;sK zAwP&R17@pu009&oA%MIxg5{ac8aAT6Mv)%CGI}3E5MIsMZP@CEgt8jFums*UI0~)d z2ClHWMAf;OH3*^)5oB~V>wzBWujcl+@-c#Jc?4@@ ztQB&G2vTVPijRw3D^`Ng-?3eGklnqcmw8-*#{rE$j&gi0$%JHPhNP&d27gA>-=+L_ zP~sV_j98xpMX5wG2=c-!MIe{CwIHKMgRG#$;dQFeItj8e`@53K0u?uN>zE6ygN>|X zEscdYr&Y)*a9JdC+8n z1oo4#@fR2}5+se_AF?olCnC@H`Zu7IStr-cnDMY}vX`>7~ zUvHh^ZWyL}o2RK&^J|LUqcibkqL03!Z6GT1DlK0vD*qC5SuDU9xJLQ-FAd*DrP5kcGlybX%~?RJ#nW>Sc6vi2&48{VvvY$78g z@NZH;9uIls>5|yHDChGaC-YWcYQE+j_Jvu3>^nM>)EL=35YcxPaGoLlj;b#~lTVK<)SB^5-F0 zgk_GJ7ZuR^u$e-8EY^pLpHu zC!mBrDJ@z>se(!{d zslt-lUvSNeeF|0lTzFro&o*$_HT)A5`=2<<{Zq006P4&ci7zfHq`}M?%9dW_GYVwF zX!!!$q~QIZAqe~nD)9wF@e82h@`fW~HbH()d?mAgQLB)WF+sL`4hqT(-Qs7M<-Ziv zmx|>}0ODW6CbkOnUy_RTeZ_7v-CfwqwoOPcCJVpx?5}91QpbO-B{zrS*ZBBPWH~Zs z@vTr1*)nj^6P4586R0hC6H9Vydz*T{M$q~V3!3}}Y4lt5(KpKD8>sNNqP_(x`5nlC zZ-w$LRO&mZ(6?CRWrhl+lWmJ^L*J_pzUS^F^aHlhZ}7IbCpQSW?=g#ik8#IsY4E>;Ity1?W%oTH}wf!5?wi@{=N!l)0*<4R)QI{m~ke^H+8(7Qcw$O$Oh)sA(Lmi)hu(`SP;Gx+@C1u-V1i;;? zZL_aXURp#L@U+jjSau~-yi64&3fwew5>;k%6WrM*{mBZa%-*4`5I%hQIw7^o?5VD= z3^vyZOrMvzxTK-Z4EZwIZb#{gMnywHprJBSPIzG>ofrZdVqTj?(Hv3+FDenQK+6zB z1sd;cv%XzydZ;T@byo!G&LovI-n!Vl+S?X3-wj*ewn+05#J6S0Y==e5c1R-M@X4=#J6Kzw1p#EYC9USJgj+A=-_k>c*HChv=^~fE zk%GTBwu#=jY}p>X`rha@_Ou(_(DwFnv2|{`2PpOqls(eRp6kYUupf6Ddyq$R2UMVV zHrE3|x+i+^p0LI3?FA)elXQI_1fhOfw?4o#T;LY_LZ$lPGTDa+Qhf-uJ5p{RzLJ|161|_P{o1R zMh2o{&LMAqn|s9m_7HdTK-1|f|NEd|NJJs3R(UM~%$SrbF;w)+|H5RwTl=Hi3dLB_05$+871iP4;-Eq>K?7*fMFh>ZrcP61Hj!w4!j z3@SBDflALD)Zr?bRjIC31Rs!cu8JX0g`O?SFO;~b(on4>_uJe%`X!Yh6cB*en1);c z+q|gEjtu_c+VwkPVebf(e@7_?C`Ml1LSj?H?TWuLSZ<(3w!_tpJBq56%1#XSPM~ZZ zL?KdQbG58VsSqP*m-tThUZw6Sj9`g;we3sk8;MI;R;=b%bCcYt=JGq?JT?NTtvlH# zxPcM&jJ7404=mc(eJ7Ra=UDtB+hYmT5@dX=eWbf~G!_-3SZ&{E&5g3TlItG0FjBUo zaFiQM1V$w?2Iasg^z1PbjFiPllFp58ciCXfMxvJ-qmyc6`-TFq?RKhR6rHnqG%f?X z&<7hv+rt$Gcf+Gent@yFUDUt30H4`~Zd@>y4HX)#ijM->w+maf9i@Vn1jz(H77gEM zmMCfh*cDxSTzk(njVGbZIOfcdpCC#qq4B7gD|~poy#v?yHM`n1u3sYLKtOQao^=)AS*r5r`HH;(S(yg-en#Pp`b#4YPU>_#zsDV%@Nm2Q+Ht!3C2)<=E z)a~7w^Y6xB?gLqW<#(oA>yi^0zma70qiNWApMox9ja+} z&DBA9gHZ8_l1_w5PO+!B)l;zjExgvrWSj}A=#x;13M#A6n)YJI)`_a4X^Wc6)oEi$ z5S>g^)*jf}d$F9E$qdn;s6DkhlYvT3lAg@kE!d>H+w;{#a z*bYURCcDj(L8%PmBfl^0GI0r8q+uUa8uv!fIE|rxnquA;s<01wIZ2cIz{d9>zOd$E z2QrtRrf{dR0Qmz%?T^5>KYOA%g0eN81Fdx`33?+$Z$(Nj&o4<4EO65Yp;swEbU*uA zJ@w&wb&!3o8{HSYYy{*`gyW9qT|AB02jqGMS-C$=gCio?M+r(`DXRS5GLuTn-mrW+9u*DHC@bKc^p6`jm?iL{@DmZM=;>1Z|RvS@U(?Mt(iD) zG8vh`XCMe123}|;J~FcP3mKHju63w3`)te_568?DA}g~d>3L_6Op9z==MppCxYFtg zZT3(ykI$qy)uQY}u?2+_dpgkvXQKRzqx_-Ln}xJd^-CW@K%qJ6`x*9`rRUWxGm$p) z7jmUki_?|IJVHwyW*_0!FA%jrby)yF%Y4N*A0L4uSuOKsgZC({xl~Z5rcqS2l z7C`P8SnmRbaWr$SMo=&07=pr)%!Q9sGRG<0`8p34K;e>97YZs0a=d{#ym2N*Z9aAv zMbIK|O-HfZl?%c19nIA!U5|3K9_7M9%I>X4r7#~TGgmD(t5__(vOz%l3$d_|1g|-! zxwe3aDuyxvu^z@kJ`xJ3N#Xhz;-h6D0LEqhDD*N58KOsXvuk2b9!&%UPDvDL{217% z^hmI8>FtT8W5_ozDP~BOR`UYZ!&J8^N^U_(8;?S2NrjrSi4~QlNL!V!|0vAT#}R$g zadi9EGdMh2j>oq7IK_ONy*;mn`~Lx@WmnNfO(&?di(su&gmVfIq2oEL>leY+pP`mJ zf$SPiN6$W0f{mR>8`l2;sH9Oo&91UzjqW}NaNFQJgNnybRP9g4 zL%SAee~_=!>}shVvjV{IY0QL$(69(2lU(cZphnMN&VM|f0-^$^GDOZGqNbD3BP=Q^ zwCL%~H6L%+b@I%4YMU}}JCF5%t0a9V5M%R+Q1O!qCaXe*kH>5LRAq2HKzSt|J5G9M zsNLl&p&@n>xZx8}0UUruT6q<`>2#zmDn{lE*zl=j*s3*YJq4(+V)8cf0xGx|v&@;W z@x}IqZum@~TH|bLR-UWFnZSF`LfUYqJOD~n z5_p$j5m|zsU!av|tIN(4_1jQEK0bmJ=UmLrRf&HNH!Zw>gQvHo{2wW_oJswx3vC`! zwAJNCJ`f|&M$T7?$Pv7lYBVl}t&D36_trE{72^M6;QLO%SGyl-v~1KXMzNoKDd}L z?6#(OgES;4zlO|JNK>K`R}osnRjRl^{TkZ!Xk{U1t_HMlB?9j?L=aob zT;4dp0hGXvu+b}3Vo8%XpqJ$1+wN9}rb#QlmZb<1f@%+!Bj#%P<17PCb$n<8l;{mm@$2o)Zd~DJmJ!CpKT^pQpXPRh z*RkBq5(KYD*?%J~+Ioe`bfqq_GV}ixY4Rr7-bhA`H`)a^a0{w9?+ljewD|+FT48NthF-tJ9sgfy;~QNd$^eo-pO3@9$EzohqR0P*2P9a9qtq${fmPJN z7G+fCtm2i4|7UiYSWtL_O;1^hkDwe~&10Vn9>IC(EsHhu#zZ~x$UQ8)M;UUD(4EPL zpfanm-K^&$snyJd*1(qDj(OBR;@UMlfHTi)ybo)!WFLQ+$Py2uYl}^;VTi85<640f zAGVjco7dPeHzI-W5e@Q~dW@mCw)C{g>oz>9$K-kxTKyQv`7{8VAGas|JjcQH7>_AU zWRb`1!zHaK`G{nM_c)7Cc#MTcz{4F$V-nzldS%q18O1EBkcP6;RK&j)wrMST*+(_E zmJ3sCEl^Dgk~#AhFxz8oNjlptAEk5baXq9;<0$eN&9pUR@8?EyEajXmpyq*$H>>++ zMG#uYkXa{3IeRQmWv*L?gYqZro!#o3ysQJ;|92=L=#_Oq~r#YFK)y!!w^Q_uf?+jM2Z(rufvv|wBz)+&3 z=YI~D@n_rnHv23`gYQLDOc*Arn2_7!qeXrWs6hdRUch{rbxN?{8;X;91!Y48URHcBp%;Bo zMf`^@m@m^H*_RN2OoP0vjrkIIMdA5h(ZTT#qz1I*A6)8?vOQJU@JpO?zL$mf3PF1R zfy-Z_Dmj-lxxqXpT=Oco2%*>T9DNnUboH=ztD0B>XA7iCM3dRu408_WgXz(;Z;mzv7Ah}3?A z%c!}6Hf;vwKR~g?k!*vCz~DudW%3OPL}lLOq1rDQHJglnPNse{W}(eQ5ZDZgS3c}k zN|Jn6b=kz+f2dFl`7PK)Y(gf#hy{TDtuK&?_A!p1)0-YX&j zF>@t)Ps{x=(%>fy)+bscN#h?9LF!|q!H?`_KIFh$NEu}$h^4d{^obIDPm~fQ zAXfTIp?nFO{1?i_F9n2w$7=3#b{TBjrva)zXS*<`KVLuW3vjl6&U=iU z{=EK>4TyDZu)^{E3&g~~m@^KNUqHp>CG;Ib{3}!v-(VL18Y=aTE}buNy+ z`=6V`4*`BSM6tX_5Usm;b>Yvh)H^+igz6kGumM(R|_utO`Fu6@Fkv74p)UhxE`d zor+ofFHLx62+SO)T;WAA3|eY?SlFKkA@Y+w32t^NRi6N3KTudc%0zLbmb1X%rVVoo z2ey=#Sss0%LVw#cl&^Cjx^m02A7A3&;W?Yf!(XC#JZ*0?7Az0Pkc~=6U`daMI|i?Z zS0!G7c@gA22tr$ODC)Ve=$W8b>=eV{H zWq&8nR5##5n(;}`2THuNr>!jEZk|2)`UTjE?MN}zO+Gry?{-*3C0N_p_CDmwxzANkPW@1y8tk?75k>f_<95<%I$1)w=!8-PC8w{Zs#e=u)E zJ9uVjqPJ&XA<=ogG3CCQk2)#}^U;~YK=uA0=3)a?@Nzj5n;S@0QLzaLph#D&Z;;r5 zuu08D`vb*53k{G;e>v)pN@xIrU*>!UPjhi8`v;(x66KS!e~=sv!evO#GecklgIPsu zu!nn$K~SxOL=8r21kFQXV?$wMg8|Kn3JigQS54s#P^oyBew(kjtOhR6u4D z1SH5+mj=#RQKipE1?bvP6>L(Dib5_5IWP>{jJ)}G6u^$e*H}dg`6^D*U@egbYNRq8 zl}rtD^|eryBRq$eo)UR$wQqLuaGN>CQ_n{uK=F-1C9)HPua?Y%qd_Uwz~;uVzNk!f zi^2Xcr+@=PX_843?3MIWGw#gBSev~S- z3sgi@RCBpeKsE1-N~o6TTSo|9ev6|t>?lXZxy)j6nHAs(RF0&VNxm`)dl1g$n zu6E^hTp<&CGFQK+oKF_~?#gH{)pRm~$_e;@Ww}N9_hN|eE^2r1ViTn@5jMRmD*j!u zt=vQK6Oe*T9=kI5c4IKgtx|3rFXg=yuCbl$Y5U`t76}r20h*pj($+-S%p@!_%BZLa z0uu=`KMsn_sk40KwOaAX?JffbKpEx6v+2xVk$A^z3n^*y_bFi^rxbm&B4`#=dXJI? z)zF-!Jo1xO4Mj!4IBeSryNBC4mbs|1OznXWQ%RpHo*AdEQ;BV(yoV}e02H%-4+e_E z8xfQ77O2A_xvOWs+o<|Q_fVE&nTytue!NZ@g@EVpl=#?r5ZhRthM>&q=!4Q`)NNTC++u?DDoNb%Jvz5@j?MU?&k%p1m=FAQ6%MuY>;2(n?%4(^5s*Q7vL*ATs< z+#=-?tG^L5Ds!fA1xZVgoQjWJ1aFbBLff0YT0d2}?M*hmkyG>jO5y<6OfSACdGqP+Jj-E2g}EF#jm$i8xCTrmL0)r<_^LvdJyoL>8PX*hVo6if?x!HgQW?>c=8=sB9CpJ0* z);bLi3l$`2XAq~2aZ55 zB9y@446(zNuWXH@qyS*K0L-N^#<;u9^X%*v=OOpaWhl-S*gS#F<7A=8+%{>Ivh%dA zN476o(-FG1$}B!tCy-QHjzA?f4**+pEGd7%qQ5e3I+87@Z*+C57kEykPqcIA)10kG zqEbKK6LkIaIb&e!#PYQQd{>0G-ZS%Ot9fo{KDx;$L;fhw1$?*wDteS>HebfUUCmMa z?;a6_qdfE6coZD}Q4Dt5K!oO-I-=~q_%T?9VmeVY_>Wq7}_OVa} z#ou&ndxgWtQnk|GcFTix92UVv?1;!oy4_pCAL7IoAxNHrZTKXQJ|@`zG>*RbDZ)Mh zpOq&=r5Dj!)u*XmZGt*Cd7Av4%3NkKRMVNH+5|+~w+)RBU71%^r?%sHPi4s(1zLG3L;6%tKWA%}7E^x76PPl(%g%sW&6ftd z-ZL?%KZyYHr;|bTiJlwX#uH$Zr=#LOOKotXLOv5Vc@{%RL*`VJ!>WUQI*Sh!N7R|B z_P&@R5BMK$eTdhD0X-g``>$RX%V?~I$K#?i1XMv ziu*jz6gRvC+tm56(Ipf;dag2+kNDXXcf(o3!9;5;S^`vU2mM+#mA z8B@5$^BCIk5L}>QoY%fqElXfCde#!Zz|+@RypGi%JVRv97smOl4Kl7F3X#0&+jHAg z(V+MVkNJe^Ii!}mNO7NocH%r~%eSe6{{pSm66UP)RI2k4B+j9R4Ht4f(ib|r;R^xF zt5o2#&T;uXn`%}jWN{J7**Gf6bEL9_4CV|jo4Kdu>Yu2BY{T!#SE2~Y8fwu%KQ-(>tf<4UaY(> zCAPpN2#Qip{gEM{A<;I+P4cB}2W$9ZJ$t#Be&d|rIJnp|#vDS0ivb6NJB&-f^~ntw zfd2`~zFal@Gi?4c*wUOR{}tMfhWe8VB(umB=p`?Q%3mr!I$2vT10E?Cap|QDl$4Wy z*6=5GgHCYopQ#jIxN#Y66&GqoFrmxZVZv8XAm;ES1S2SYFNg&BD^d1e)jou-rb@x9 zVbfRQJt}GP3VOP5rLJF+HeZ3jzKR?WV0$HwN>>8o=t_0TRVYWV5R}83M6YJ9#nC!l zgGI(ckanON9Z=HO2+v{JpzwP&tp6HWTtnYBI|{=gR~`FdX)y3%B-z(%s9cUlaw(Yg zH+l}G5@%iS8R2?el+rhlb#?`g{ma!t*Fr^aP*^u$7`z^7(=vfw3){L>VAryc2}yG| zsBdpXr9sl{^|HO5T=k{BuJ<~Dx`5({H`lKv;kYPU@RiqbUg{e!tFH&W-Z;BKJK#oy z?QmMO>y~nt*%tPiWuliV-RlKphUFME-oP=j_$l4*nV2M~Ux8kH*{^+hZ@^ch%Y5cq z=F`^^diZ+Sl+?(RB$g_i7|q*wv=mBDWMfe?VELW z-9osrB(||znDZyqUrEjVg;(@^g(1hpEgthgKB*%?n*LkNvGq+e6ZvKt+)|pQ$Bbzb zKjupgy~1ov5rsbmX7MkunHH2oDf#{@LsTqtz=tce}R}v&| z*A{++%u}~92PoCJm6Xh!(F3{7HX{^+S8{#_tr@;mj%0>1_cHoM!|-hsA$L0`n7-%I zdn>?=_m~^oZ|)%csGvxWVu*{%$SQd! zL-cN9HeWcIy_>6op}cnzM*a@MNZg~2xCb^aW&b?{X&n5bmo!iUMM@~r!!yWtc=X)z ztov~vy59uY|9-Alse4tM`_PErD>V)N`$gS{$J9#Q4(SUpy(>vPa6ig3sy(Udd- z$HM29{#^BG*4mfW^9~(iO&J8OYcb0_DR@I=uqb(Z z0zvZc2!d;wOFzlbx{k%E&YDZ{#8 z*Kw*ZdzxoDktbpE>*V7Z^m0#O+mPWko4%>JA&pQmyIWtQ9tjn%xK4hQd$WmLRShbh zdeuBC75@_q)R$Fyf+AA|4*#_RUPtg5so2UYY0`LFS!dY*W~uVhtABe{kFX0O54zW|$fjk~k-bHG=wry)Zx zsz0AcCG#qS{~y@K)~o6-lvo5W2u~=nR~URRAx*wSkc}@2?-f}4MaBFQ(pISiU(#~C zwL^{0FRG@nn=wdw95gUd^XcH%TS;tY`aDcf1Uj+CTvIdO#xUsb%Cf(BtdL zBJdmnD9*0ecv6v8^-UQAa@M?_Xn)Bdvk|xPH)zV$Z}Rjl`8sU!4cu}E_eG8TRCWiRi;OM^y&q-t9dho@+z_-&c1{1d|v492;?0WE%GiYm+lMl zjz^9|~m)f|%Hd zq-HMq0k^Qt9|5)OWAgKViZt^vdI3?1PtmhKk?m&;`HzTn@fYg3j}e4EMGva&KCJL5 z&J95RWAw}#n7R1J*v3C)ZjNkYA8CVqgstxr1t~`$(=49}RLX`$4_1DopR_B3g3Hf! zQ4>_;3smBt>;B##e-0b{f(m8+DYMTR{9g#~pO_W@iCCaA?06C0-8(8 z%%A`O-she(ezu@~a+LX3do@yWloLwvv-WCuzhLoj#M^*hLxr{?^=pWJ$zWJ}tJ2yE zl>aNm_a(Nb51PKDP1&{_gkMrq`ztKsUvjg^d9aoB`b8A|*>KsHYR_-)DP18 z4r%fSoCm+tmE&7LQRWE#jyD2}-=G)xQNy<=Ti=?S^Nl~S6#(Nc0KGPA`GGJ)-{Zjd zokB9y4_YU4h5TN7`DrTBpg@e%%5QZZe+OdgPoC zuA(-+qE=bowwtfAvPrIGm+^AbM(QsEFCo2z^vqnyQ+@F_^2l)a*)XLo|l`N}Ap zw~PXIVy-AbOg>U#eZHS52?Cl+h)R?Zsab|5A*VYjUpb0&Dy!r3J!QO&)w#^vdve1q zl~#eKw`FKmxbyC`O{fo_1dZiiW}D|mL7 zGG66xhf2OP6w2IYN$Xqy(w|#LN?^ib7JfAG|F598>w6ISZH*x0eoj%0c*hkCK2hZk>o^YSCvF3e?g4E2E zEKAQ-TLx&ZysXBp?9bW;DsT`QN<{u4_{$Ae!eSYy@nERLFot431u}@a*iafK*q^y{ z1#Xjr)cpgsyJZ_6NOPnIAh7*H5kRQ2j62hzax?@sE=Q3;uoa65ahTlh-Io0Bs8%E4$5FqQt}ZTj73D5GjN;=zz8e_S??E~2~updLc3(3Dx~y% zN;Rj#Cgi-R+~Ovgftr&=VldsXxJegkNht{npjeWs2B{LChU5Sidf5#In-zM3H&z_hhmLqKtBE>Wd(qY5@BX{`F!rq+(cp5Kvq zGh~KC**^~%3H-zHAKOu>45te=)RyrnGO0v&L{Jo!kY1t&l~4_HshwCgzoiGkutUK{}%G3?G#A1QVeQd@%jP7L-)IS`xNnOw|!5QUv7L2jf%9)UD3+oH)} z6iW)g81rT0;jwJj{1}9(T?D)f^Lp!~X$lVc_U$WbW^)CUldSicjomS-CoV-CbrM#Co0y7>V!RT znw(hH*O<3VEZc!@IBX(Kp21f4UlY_ByHm7@GB2N0Hc}2~y*k(+tzdQZi>Cu+8=Qj^=Q{CmMBBmfT6I#}OcPzhn$ zk`^aJh4yN{40!8+N=PL&iNtI{MWq+3(~6t_=`b0Um_jkO_7q(ib(&X)5EScV7DDO| zvZ$3))e6+#I|X52D)Wh8+4g3tVX8VW$W(lahM+D!=Dq$9f{b)ESGr~d3DcUwB}Q-X zR|f%0P0`ZA6%=zoE>j_vwsk5;N+_h5r>c+Szzoen);uLPFr{peuk&-;Y%{9a{Va^L zE;n|oT6Iad?4E%g{qy5h>lc-E{Lj8u9b8}5(BXgkUiECWtmFR$zUs7vWi1`sj*gXe z{4beTEj#9a+0HtSn1AnoiH~*CrrT-+xp6Chzra z|IgnIcYl8!-J3+W-v3uG_{z}BL}}(d$13@BbdblC%SXHCVVyQMsEUakjo@t=J2HWf zC!|#{j$=UdIF^52ItS+*5u8e=J4uwk7nLVR(%m(IZl7^qd9s}McL57RR92LF7 zai}OsrK`ki2(m_$K02sMrhpJ>jG%i=Poez(5J8NYG7^jbA%Z!h&^sV(I}5$bM9|Kp zt_TVYMo>3uH-y=#0g(k*;m_`Mi3%%o03@5~E8RegzFvUZ<(5%{w& zaK@-)Thrvf929B>y%f~W-!f+HD;$86uVJk$d?l!j@qIvR`^!LSYws&T(V0{5nDKH@ zlo|L6eqtxl-S-LvP>VLnj0H5TkS|$^ZjgM86%XEQc!q)|U61ij3`#PKUn0DolbNrP zQ&92628WrclX0zd223G}p;Ora)R-I;Yj zK$ZW#6Q@=PuxOC*dLndm(}6N?eAp_2O= zE#GTFZB6PN^rp_Cn=%VQ`&lSI{hC9CNt;7=;B01Y(QE)F%x3C+nMl2m z9jhzd7=LI~u$XE7p$22Qa>Sx-5 z{1X`OVzYF$X6h|Qc|sNero9dg-`haddYd_#zm(%=+B^!eaB+}R zQE_5*crhBjHvm!J>P#2G*({K>WnFm8%C`Y7eFMrMg_*D{LMvK?ZO%gIl`RA>V=*!J zm#8#pBg6s%9Zbwp*;Tv&0U~wRgyumjZ{rd|vsDpf7A?Vf(h{g0ogdW5v|2#6xR6M-f-<1NP`*krv)OO64V3mu~2hDbf;0pd21t(b_;($c^$OWvO;$0A&^ z+-EW21^{B0vb>^YjPwP`tSK`$K4J+oJ%o4Ng{(kb|>W<8abzhh6Ov=W?S z^VnqoaJURI-sQHHybJ(6N++&hOpns@L{D3(?;uTm4~r?w;esCL$NI1z=!e>~)GDi4 zZTH&0u!!xtd*E3<6 z2=(mv#7b5y=g!8aV>bRTCAGNjfv9i=4qL4Rs(7V)+Eib<$*8`H`HEY~Ij!j`ysH2F zm7FwmAJBXi&a9qux`&fXvn-Z873YAP_AX4cJ9rhXXIG=5_Ep~n9chq>%VA8B&WT4~ zuH8o*$;E|6c4v-t*392Rxs3ybUbN!_mu@biS2I@902+njQpqcgs9d@vDa_;ud_Vv{ z&3m|z%_y-O8(KVX_>e1M)7;G*}Ds&dSS93!$n0L6zi zQ?j1%9us!buMvRLt?R<~DJfAC59}kt%*^+K+Gu0@d!z%Ojiu-tnxc2X+2;2d@XnaW zYnk zmwKCM{jX-D))Bn|^z*lxZ^TE$Mu^_GL5{`i!OPtMt0`;omQ_afx@^F#KV7>xoaJ()fH=v&UQh5r@*$k5G>Mi1|Y~*OaWKHT)wg zGAseXkRTR(J{DfdjkboaKGI*uBc#rfbVmleXQf}TuA>$ObBE@2hBj&j+QPwHb&67Td+G3)&)0Y6?{&7$rv*KfmlKL@`&-@sd z!=*Lhlc1WJw?c3E=TI*H9F9Xi$7=Id!X5YpL3-ObQjVz7n*SMkF`tq8vM+G4;&W6Y zPZ3722nx1fHvTjA7zv+2-gfJn=f0rkyxY)A`JDZ5{1^B*_$A5!upbt`tt$I1+eyqL zzX+cxuR7GH8~A)q+Zb1U6l+X(38F9|Z>t^XFAo5^1S z8o$kE6Miu!aw`eqBi<2IGK(@@w=!YChnp$Fis?{fk2A$bcGxe7P7 z)z}}0D|k$NXgU=o{ol5m{BLn7?DzefoG#u@`KeTipDJ*28g4QQ9rj^naRKpanobwM zMd=nvE3JUE=SeFdT`TYl3izPawnF$=aPknBBX;3(b)i7{X#~ccH7ioflnIq89`rS1 zx*``ytJOC+pZ1L{<@sNe@$p{+uM2AUH>kvZjY{e_#Gz|*>Nmuut7n}k&-hB1er=^E zWX$&!029BdRKV!fZN8Bm@YXt)sLD6x>0uioL3Z6)}{t zAI#4CK{~b{7q%O4p}yTEgp_+Sa$30vu8NpK=WpQRlx*czxQr=!J@IovC?|^`dvV+i z4MC|gyMfI_*6U|{wEmeI9QreY*dOSoAHn76V#30T|>Q0PoXZv913T=d{9KfV%z%EOdW#yI5$eiL`V>RR1@W z3)Znu6hFI#5B4$UyPufXnVXo`u|F~9`<~j*lhd}agOkU=goJFOi-y}ed{EWGOoBub z`8&ecU(lWQBN}Y&g3LTYBf5?z@<&eC!$ctNjpsKUUXIAYp9${JLDp&>N&Ii%t{dU& z>>yKqB$|ySHU~*RLCo_Lt{eSevr#!O8m8{`dP;=an)8dz`oa>%QVtTtgd?y9xW3s? z!X9AC_p<*e0i9NTlT?D+kA7ec=S$9j4Ah4@*GhpicXfZjM~KXCQ-N0o1V}L*;GPH7<1sNm zkY$n)V=@k+q81k@#~y;gBLblN%YDMW?f1;wpklId?67T({X>wY;*U##sdT}AXlY3% z|AF4|Kk&A)41non@YBLdKQ4a%gP`7Fx8O>y;cBYrXvJQd0Qn9O&mD|A6}|j-X#2_# zc*_tB|D8EV`5jy>!twvXVU6GM#YeCyEp^LugZL|#@#8-+KJX7((5!1(%2>BQ`518k zf%i|w<{syCLXyMH>7#U+VMSt{%Jl6jMLD+=!H7}>g@+;V(}f2yZFJxS-J1%)|IClVuc0 z_vNw|n1+I1uv#JEUYtFg$zK1!5nXuh;%8>KAd+KN{t;SQCDVQvo}ydzC~H9zB1v|R zF{FV@AW8gxnFlUoFEJS{4w0FirG%|Vt6qW>m=SGh4d}(!_FPGR!V0D+%nHx6+9up?HxlAQ+#5=(> z>q#&EZ}jw})AKJ{Iu(~=V;k`rdQ86twh6U3qCzaD?#Qui!+UWz!0o}S#w z{~|!npFw8M2>?c)z)V%j{-*13UAiZ`*b|)J6))z5YnCY*0sHPJ=~}k#i8W4`UBI@* zNya7#$7AAFBdA2aqa(mpBhXWBkWt=&Ff2zL$sXqDDe!a;lXaGs?uPPDlX~4h)jLIN z<|&rIW2cc8?k48bXBpEyQK3lL=5S;seJ4@gH(}^iJtWlZz{pNpd}|! z(Vbb;862gbX3Di&d>SamTq#|bc-=G1j&2+~yEJM$o2PJ5(Y;)O#HQP@z}Ts??vC_` z@K%n4&dNbS_K}e1$S1KV=FBQoZu)r$>^SGR4L94$QOOFWxM!3zrg=@TN;jjTio26u zSq?IK95u@cNb!8-#A1hsC>pvu2Q$i#)N z4x+wlP=Rd+#~vgts4z3&%3v+#u-Sux*v6?^@|9T>l`Gof{wgA?)UCiZGT0&D+T%iby4@jA$qWIbIG9KSWV?h^;O^=|)-^2@#u9~Q z<6;k73tk!A(F_)@7l-49XoGO>bQ}*MlN1;CiL2m7@0sLOgT$;Vu*;}I=no=PGcb`YdLMM3V>EkX*Kk^hoYyYhlN{R-9k~Jx`IsCsz_7L0dP$4(5tQ0 zSs>2TDz0j92Q#7?r5j!~*ePAi_5Mn@IWJ5~#DkK+m&_@vCnN28YI9h@|$oWrp}Re ze^_uE=fW(uIV$68IKFwRA0Y{nD>fCR)c}PLO+lFXH3FC32pk1e)K*VL(?uFv11ZZ; zm0hUR4)~ZB2`g<4msVLz#!@4JN8p~z0H|mY(94bx;&RI|B@z|&HX?#-`XYdWP(!nz zh6P2rgIRot!pMjway>C8UmaZEjJX<>q~eaa8ygLLker+`+?fn>%OK+Jxp82F>QHK*yE?ZITVc)B##+%l=yZCdGz%1CtSMt zZUCu)S62v}l`PTEmFP7Y^=czMcnwuL_G)Z(w{^5OdDWZP(ZXP6ZL*{r%2pDP?z4%H zDwD00n(4)5fhgx(2h{mmLbnW7u{CXcJ+2i{*(X6frZPX>%ZE#@-PYh*K;g2!salKq zEEijH7-ss2kKiZ(aL$W7@?_#*Eh4Xf9S5iab`Iv4MAWG!X5DI$Qu6OH;W7#8JhYzF zOd$0_Xj4?MTwqo)WSx75HG>;CrZ#4tg~;xo`E#!=an{LX)Fyf*YBS=dUMEY-NV8VAq1RLwYYmt1Q!h*57_n8M%c<47NNt@qg00uRdL0-}Ss2>EYcr!z~5OtO5b_B$uKoX8Vk{eMUs`~UWITm$&@;Iasap`l!F4t2w z`UKV60BK=Ez{+HMfeJ-0k5(i7EzkAtSf(_1+!$mgHNv2$XlS=pBP!FjE@jWFPS@kx zJ~7od!?-sf@2E{|1QqMsec&0}5af#~x2X)ky*f8Ej$HDLb&ABIt;B{9(kH7x@yggG z1Y={Vo#r>-JokE8X2PYQG2Ofys6aBus~Sz{rgkMQWy0Qh&MX!gjTwt;!Xlj6m`N_W z0UucvKiCp97A_U_c&Z|gj+-@cCWhMw*9Z4;;KQ2$(7Cal9aSm0gY_7317rDdwDOvP zm)-=wXPelu!*MVe(G&*0rU-V#fszr2UZrkFlhzDDsz_T&DS@3Kgs;6l7YNC8%hOAF<;0AK=|aD<9#YUyH23CQbOEpG&1 zT}v`4Z-!*vgguRh=7Dx-=vy*>Hz!N1aW0bDp?1102dsl_gQGKB6Tq}qn2&9ZmA4Ds zft6eB+ktexEwhUOCqQ}2qp%&BI-W=?S(M8XG3zcW&D#Q1y%O-o=4dSOB5d7))OuT> zo7#%8^ek#@K}*}3(E`jGt%8Fu!`~xe@)yCy%GUz8C%u@)w8WvlH57TH%$~fvl-P!` z*fywiYfISr>ekj4j4c!@yqLsWOcmX7sZkkE-z18^$(hG0CU+q&J<`<-_VNPC1iJ#_ zb6<@bE_s|Htn_7^|C3OZ^F|eBE6)6!{e_J*P_Rb4*PK7N2pz3f3msY$@@utq#z;5Q(&pS zN&=7R)UHypFP;?66V0(*BzQJ;?)1DOMMr_Klk3EZA(38r0=*sd%#Z}S!#ZI)rZXQo zCqjbF>5h!;?+BmB1gMOUN3W;oQMugtN`QQqL=wJ9R2Fo^tW^Ttjh*rB%u|x&MwaA} z4z@KWk*XhU8Gf40FOukdDq5V|I}x-_!es#5i5cFBGlWil{aftxj_nL*I}6}R zU5-t(&ed-@2M5#YX2zV=cOrxvH639;s3U@D3GgfJfK(@dw6impiMrGr>1>UQN7_H$ z;i4Jmc3>Cq65w#LPf8`XR_b0X)stM1dF58%!*9p0o&qCowXL#SXz4jhr5U%Orz($$ za+a8>6ae=$n-7D`+nLnv{-N{!*0I~Hn$x=7+PCm~tmK=syI2G~sxy>Hl~569&Us$- z(r;&u?J3z~=5}K(>0V+-S5U@wL#i8;4tJ0~ZO!b;rE(pSs$S8Z;OUm8T~~6Qdp$>o zEdQ9A>1JgAogi=QCe-c#ls!kBIejODR9QDX8@k~`l{ei!k@ z9e{8LkL?hzciw?OTkX3-NDsm`4r=fY90kUdbHL@r0k#nfo>1J${Q=9~J+jC404lO4 z9~r-~$QJZKh5Yf#PIvgt=+61UcNjrxPxjAzbj<9*PdMtI0)Pry_eNP;-}Vw| z3VLOtOe@GF_d-w0VDYaU5r_7cd6J!8&r~k?kN4sr5}U%9f<~rRkg~<;gwe5srSDz%P_wNMVs`Rgl(qZ!1Hrjw%mbuhc^~|K z@gS{A(otsP1043|K0wh=>w`4456CO}!EbvXuHxv{H#PdnvA!SP{+r4mQ+gjNmtjf{ z?jo%DeS=e+*1@}hhYPpZ@8bAXF4^$ihjW5q$1G5`%YCl9n4ymM!BkuM_fm!#_dxB? zJ;9?)ekx`Q`eKoFH?06ZDY^y(nZIy>{l)+z^Fy|k_(b&i3UY~RiKPGGMDO$(=Aq=Fo@o`#BAL2S=$3M^u zjAcD!Q5K1c1)xd>1ar0jFKn|OMWyE;q$LA_lLbnpe5qv+S$k&yOw0PS#|eMf5pbI9 zk6E1C4%UY3O?vnZ=(>$IZfdAYyE6A7Bpu*~X4A(70svnx~M2ReJ5M#q1<73aG zBz=gaKOohXod`D}k$x3TO{&;xe)1m0Hec}4PZ8sJpR9?0O8K6kd+eVaHF8HF)oz53 z63t$B*tqtsw4SpkT&Rz+oKNs-V$t7l?ENFSQ@?Dmqr%q_hEwROTq?Y>{>JHFPe4;!(}vhG`|qGo zac8>IKVhJ$7&_G2DvfP}ZC4$URdOUHU-(a0T}&v<{5%9GEr~QCo0QTxtrhfj?nn?&ZeMeYk z%yTCZ^mPI!j3_fw%(Spdgrk1Y8xmc9#05Nk}dxVxI@4FOafJ!A+ORg+Q{&6_rVog5Nha3^g%nns|Hy zkIzj9xyCf1EZvFz76R@Z&0$Y7osu{<6}5`Jc=PO3rnYdZOz5jDp}1*u>&aO0vn*yOi^MiHQ8M&R?}ESkyFy zZ;)(II4nuL>O;pS2z&LmL0b9w=q)$sEt}1*ea39?JaZ%wbC}QtnRIif12Aw7EvXcf zJsY}ORViW?X&9Sk?AYIa&_S6b$0vAHQ;^xhBUKZdiI0=BBpW;NI~9P;ISh@@loZS% zUjew>kI`5;8;VD6&`6-ar^3h}5a>oO5|XEPQc3Q8?UN@(0+6e#p6hC5Wk#czNf zg(zL}zDE8Tt7B0CgZxQHZR6jTSph6lD=3%T}(w3y@4%`!p+&m zww3Xw1n8Hl%do|mMSh0G4!=|_ENCac)J@nKvG8RD_s#qqt32^jl7*jLS@_nErf=W} z4PM$5J{_~@ro91WO-6?->;qj3r^-=^nTvrogi_`^KzNq`w&*QfX%$XgO4M2sks+mg4ku`OIKM*-O}by_86FEJ;_S0ad5CdDcnvW4%_ z)g8{R90DwR2fW-Ic76%V@mn_s>BiNxa#!+^zXEB!RpLWH`z=R`1$T60FSh7C04|2& z$Sk((ow)6kjje9d3WShun>OWw!cL9bl`8~{H5BcEWQma zQ(7yBmd<)wF0H_7Wl# zj{P2@lh%>*&zzG>aor`>%W$Rhq{ejOB9hm5Lw^#v~&z9Ps={E9AnnPV6ue4n&w#f zzF2(796*h;f!|j1Bbm}%3|*rQ?wqWlN-Yys+Xg$W+uogRGmoLv+;98evxEU_l(#3an6Vl>MFrNDnwz@vYNK026*>_vL){rSCD9RLVV5{DA z0|6Y}NKnAHmE%#k@kwOqo7nU)RlE+g9v>OsBUrC9CrkaZ-js{7QoqbFe`IVE@LIu2 zT%+9jJ~S>B^u=_!ppr`1C;{rR@xSxa^IyAs$zMJPFYhO$UC(-3KLLf)98Z<<<$xjk zwh13YV@Ey#awdy2i#{fDJ*jT{#I|Ngi*qMCflKH)QaMlV%0n-JoRbG~`o|z!8oW0m z=d@~@84H{MeVxAM81(W}%_`qTXNF)|Ss`>27Gu=UC`2W!PtO^!tL^7%oyBOZiNSORla4d=8Bk zBE9}oi=uccZT$t(NuSAl$mQ7@QD%$9EAXE~qwnVk6z^9iO7}VQJ_kgJ4i!?`n)VsG zx`~2(M^zh76g1d63%2e`lLTA0bQ**Prj)E_cc(g60=w9Q8}<`hKsmbw)16l7X@CC#6k z*y;$}U}^|*+Aj2tZ6^(SSx~TDP-KHweH#aedLqz@ZnlHE>%L9WwUdQXu5x)1a z_=9@@Qm^sqMwAckMXCVhyKSoyl-3vb?)N}P?`c#QI#JS9(8r}~L3wHHXYL73`+=Zz z_mW)#4c+mjeQ#UdpM+WulD_ev?2CTDuWoAx{0LOq0g!b=IkOmnZs6wrNNU3NBaQ7& z&OZ7X0Nt0YEMY9QnCyk`XG~A|J$}I~&{Dkv`^AUcPsV~T=*q_kY%^sCI#l?m!HMs! zn$>U#>?}f{q>_XRE;!-*AQL2e;Qa^a=C1=P{UA`fb*@{)SmO5*i(Fl;DyCcV6Dqxb zA~!>RkS&tjG~X^ks>M{vgSI+|H=7_AZ^J<=E!YQCZ;7Bn;IgS2EootU)yxe00hLxi zpyDfXKDdu?0I7zs@F4XOt2vZwmNSwY-8(OqIM}kg`A5$sq|RgSV#acd1VtkH@&`~> z7ZXe%ENvC*OjIPq-sycJAOAhGeT2M_b&qDgNI3}_Gt8ukk=2TEeA$G=n5ZJmCHTOk zDG|-SUT9<;fQ?qjE}^Mqr^Oa1K&>;KzCd|uQd-KCk}Wq;y1hOn`Oxin@{b^=-ACs%eF^Ja$u$o~b< zKzH6Tx|)|xhmcyo4V{FMx-j$puQKf-&-BQVIib>`AcS%$a$E292E7TPbG&5duz*|fc=f!>yyO|np4Sv zJi^bs0=RwWV5YAbY&wIQwicfuxr@$8Kz}f1-xmlnbPoWsSIvk;gj9}$1> zQT986=#vNv|0Hwi0?_Sm0Q3=l=s7@l2!OurkaY$Nd~lYotgP=YtU4=ZPg2R%&Y&{# zca;0e$H`NCs7q~yoZ*C8dKyOsCmp8zg}>73)* z#G}eNk&*Xz>Mzzv-6zVaqf3 zFWU-?bv?m)`Gg5lH_ArIm7jnny!cZJrzCeL$@XALN_Uw|eMhE+bhVX#>OyuwnesJe z8zy%!{>JJN`FP+@XHqT<(~nf&^pe2*E&}nF{)K(o8G=yYE`O1~p?~1IauOy&UEdfw zBz0m{qcut~=k68xa)KLIj;q3}$Z$kR2{3^h(K*sANfZK{?UImb1?h7dlVmCyIts zO}67`_rHqxF39&6=b6#mMh>)-Sn~|5F3O^&1HU-kdEeX zXb4{-6Tbsw3L{0T%UWwiTTcW5rBi*WIkPTZ=dgE6l&E+k{J+*kz>%WV@P}|b7?*GFS}ZPh&bvEsRC>8Y5#Skcs9~qnkj%&?U{C}J z*i#K+4@TlOts1^cu7@jFAPRp-%Q^D6BR#GHTg8Z?4S*hSvt_ ztbD}DM^qgPdO(z^5B~a4ZTxE5RjQz8#1;!y=TRbxt`)*p52UP1t^?&*EiAI6rGU68dl7Di*Mi9H+z-i|1#CTa1(m-Fk=9aNX%(jv~O6T}-y3nmApn+*Dt%I#DF@65we*4G zyJB^4t8BCC;&Ed%AL-Fxj*-@GA$8dZlA@7PYT;(J8<580Mh_m_iC9p^)yGjxeU!Cu zo{VKu6?DD`7T*FrZ!9jgHQZyvMUSsJ-iCB-j16e2N2Vwlm#LzsLC%fgq!oj+E-^UM zTr8-MP?MB;CkgS@3*isQR7U!rtm>M_B>>If*cd3L+zFi-^#onk!2cNve}uzB6g51U z^^S#OAQxJJZ#QI0J&ia-H$rH8oH6B?T%#e0(zVe;)cQ9-C7}U)Ds@>PQoJ8FpjLj2 z4N38LIT`W$ktVWXNN=fDj>!VrQb5&rc|(}(Yy|Qy2$(93SyFnH(foQAjqVJ}8c{#A z+>HX=coW{3=&hc6zG7d(%Ud^qmvIA!xXw4&^sAucdfU}~L7V{SasEERs5gNm)p6iI~fF^{cyMJF32O!LxYDyf*ap>t;IjbptRfSz)kf{<^ zsaqsc-Q?wq%hYC=0mb$F<&1kgt)@+B>8AL!w3Im1wAIiMf~!|5-c)Z_6FEp+0sw&<(OEYlUR(3GY?PYpFf*nV z`O|&cfL0Pwdm>71X1Cw__|ljv`cL=BT3C@|LW^RyLs2mbAvVfMaA!to~}j z5mWOusD+&;Z*wZe*BrPFf}VRLdh^6%KrgE~C(X<1>6YwbX56uC22^%)pd#CHq!`{Z zq_4!%#mtq^EFm|MFm=m0#*6fPYlxS~M@Cyv`g>)~iQtvioR2E0@D+&G1f#WDCXp9< zi72uSLDS`}>DHJX^HPm^vCz+p3Q(?vRjzN=2rDdjsiTeE|7v$=YoIjiQSBudx#S3I zhq6*DYzyA3wy5Z2<+>_WOnw`nJU1es)zF;oK&#qKw8~@*ytdA^d0{7@H0|rVI08;> zf~WAu+OqVmBbUau&JI+(x&KC-r*Fqmynx1bp<8qlq3Wb;?Htm{p)p>No8E-fI(pE& z-A0ai75UXS^97)p#0GLher^%7$auy|)sa-5Qq$M~<=cw#?V3{^Y&yqxKsgIX)S&9> zAtub6y9rEhXO@V~Qhmot?f>osm3^IXwgCIg1ZM3_JBEteiGQiwv@T>`OMPlQg7i*K zm&aS;P^YQyjdl$Gyl>grc2%0MP@e*|t39BBB$0lP>2jl;gK6=YY3a|FF*^sY^9h}t zK*P)pokIES-Y3wd>JVI zAYcL&r03wc+u*Ew&E~hjIkrB|=Oy5%cOs7R8`53WHRL|Cc`c{ER>=q|S-9u^`)_BB z?Ytd}gR$u4-j3etI~kjKC!n0esN9=zq^GYj33kTy%#JOmjGM7obQ>S(?gy{O--3m1 za}M6Zyy2G`-Uy*^X&t^5mXF!e>5^tGIr)Rq#Y$!bh%wAyBnf(w_g(s6X~Ekupk63*(DK| z%Cl~-4oFV--vQH-SZtXYcT?M1CRswwyqWdLK7}vqCjiWlyJ@Vf;p~_asn>c*Kt?1| zpz7hAWc1l2^7Bj*3pF|^gkOue6>wWYJmb~qSKYP~jbkiURkkhNCRcvbJ`Enm*|Ol(i!deMa{N zzOXmBZIuF4WC~q<_7rIKlrdH5-y7mqIo?d^1&TiDn%s-Y9@-0l#NLeQbC4f<;VoZ4 zdF;n6BvDqEpm5TYuVnNRm6BdK_lj+-a8c#ny=Ym1+p2`jwdGx$o`p+hDx{Qh#9dhB zrUKXfE{7RkFOyqx52lKr(Fn>?1z1|1RHnT8T?nj&>$~3FP{GU%qto475LN1SayX*L z71~`uoxcko2k&CG`G_`$1>m-OLXu3gd+3h8PfAVlf8ZVjhwkSXqK}}$M7l`E(&Ym) zZaUv>$FjzQ9CwfSkXE>~m^-)1K#4Ld?h|6Zuw zCtdW&@N+;NzMplXwlnUbn1gGG&p|C2T<-;06^iF>jcy)b6Z-TIA`LFuDoJA%bW4LNdK|?iB~cGcEyznS1rIUXg%6>em4;boX_XD3b?hM<0=5BA zt#01b7D7t5nSf@Ez+$97ooD|6ip~x#>PV(niR&9ZN+bOrjyIh#&c}imkXn+wDJD<~ zpD!(HfkWye*j9T4WG(UOkHf(GIAiILp`z<>#^bb-A7gCeV}w8Aam+S6#&r^}mYD3v znX$+xXsv!!K>W*fk=TPoUAu7ZirN1NE>a(*kabPuJWMxsFaSl5V1a-G%cHb(o#Z~u z!4+rjS7l~CN``lcR9_~^65hI8w?Ar8@?)RLzoxg!FL|XZ0Fq4q?}+Ykb%f zoDRl|Js!i&iYEvPKD_krcH_;KC+tyX?hqT^*ddY{DUrxwAx}GnHfN}?kaad{D0*6Q zy`Myn7MBxJi=&6q)e`oKK*!Wf3%A#kj+uP}a2Q?R!T7_ukgft~HoA?#LfQB6VUhegDrLiMMBowSMO^Bel*P71s_sy>44pah*c90Fa21FVza8P4LcEqAqJ)ybK_2YjSp;4>ik z{>6u`uwDOROxHl(Q?#5?eVW$1XUMP?&djHAtM!#5X8WI_8>qg+Ps8B8f5AXkcKS0g z(6Zd|G=UdBg+(Q0E+E9B-P2g;ayb1IMW^r+o&j0c=w_J{b-qfRYlUVB6d&y4=91Ua ze}STU$@3^@x{B^z2!21R#YQP1P3I2|+HG>>}@m9j~w^cI!$bff_bZ7m&(fR?)fQVWIZDT2Z=?1Cmq zOLue0qiEF|1IlA#vCuEj)O{Ww&em_75SK62OdZMba10@jin>8(k)l&NI-@@ z3oyJP`aF@&nt(LzIme^>rhW<_j>Y}Y3xRQ{WK6&eJ>8~S8VLK%0Hmf^w$Rt?O`XBo>IkB@u}?KxNxuIngz0*-Wd zxjCJgaK1_4Z|RtB&gVZT^CYi`bs2}tR+72=sW>WB=hFb)A})Q;OTuNZUQ?r#?d~)Y zC@VD^JX-Q6UrgyVL8?qz(BO|0OPXyhxEcCFrZ;jTC}U-c%0>}KVBSxr+o@PC-df32 z1Xu-v(b*ayiAa4BC}m1=Sdl_k8EBd!buKG&CX;U3q3ceCW?ZLY)ELQ{T&^XIk$W3{ zrf0_rQ=uEE#*2%I1B;YZkFg+opLJ5lpZa_Ov%@cP-1oi*-TqTps^qk>$(=@(Y<$U1 zUe5ElOnw)Y-jlId{URS3FS0<#Omb$6r&toNXBw%~yu?lsTiKW&dJ&gY9Vf;YWO}4k zD&?rH{|;qcvRi!#m+7mpJuN8s;Bt2=V_#3^2G|9;l-yVFK<58MqsbsR9z=bbK2~8t<(&9|CB9Sw8G{SS} zWPE9TO_X;swDp9)HEbeQv9E+=I+F-7_BGF9i!&lyPHXr?Q07gd+jkPJNz!d01oWCV zMF7-79qGgdC}#@_l;baF>oK2C2Eex(M?O*3GT$=Mwu&TEdhjE`oC;Qxvn(0Y>bve` zq9;l?zl;xT8=4gp<+LOR$;;Ym4)Dv9I*C`ychXcY_X_56zomF4W9c)AvS>O{I_HR) z;#_t?Sxe25 zv(>MGk}dF+EL7Lji=wtlwt z#+WNzFk21|^49PM@8e9n#rlpSkqrJ@uT6c$V5XoavNSJj6h4RY<%3=k=&?qB`TaPq?q#O zG0_7JP&&~GbK%o>K8v~KJSR6iVVi^VvZbIT8=~(#mu_E4q*l)w!--6xv?^lf3U9e` zZ!Ko^=Mzwbw6tJ*&O@qK0A1!|ro}l{K&=Yjqn;14rN)~eswGrcr0I)@w3bL?myq>sZ&~Tew@CP+H$lE~3DVRz9C-Kk$vtm4 z$U&z48(3(qk9dnQWstVSq69DDbX5tI*HT?5m#!*n3f3>NOK#l~5=4}&HaW!1^n3HY z1tIm3ElgF~?hTvGUxfk7kn_@;NGT?MJmM`Y9VegxJQBtmGs0B$aLLkqQxYKn3zUo8 z?3(-zf(Mo%=)07UNpCZYTH;TNpil&Z-(gG(qUCaY=(-uO6e-G_$=-238k)pq%<)od z53qa02PCj2xJk5}6UF9voG37G7jD00wxq`ji{zyUl*JhFqlK6HHn};bP{Ld3X>lvw z@ukcsQja$}pdQxBXE@R4R@4FT=91z(R@TTcbpX?NX%iYY#zxi*H2SG$z9E&)Qrk*B$MPh=vg^fY4p?IgO9fAuEt)svxV6e z^jr&^5tUqC40<0ui|*#(gpBE?b9Jupk?rC>$%yJ{tAbS6c9U6C-UqcM7R8cltprcS zs9Zhfl%tI7WJ_0DAHzSuLdRN2%&ECZXGmoPBGR#ZLDtyDOL?huv*hc7vCwxf_5mw5 zBK3xadqD#67*gt{r6Ah|R5gb~v8IZ;_Z>)b~RGNIKsF+6#*vn^8_KCSUREWG3aM zskt9YnaShhe97`-8@ac7W+QsXKg43~hddSJAvDW(6K7^^rRVe9Tcz_pJIG zzd+0;Y{U#G_vv}J^}y@wl6A_i1Sn{5x|hFH*kdhY7i5H>-6$94BelezyKsthI;sok z1${8l0PZ^_1X$PLfWc9%BKiheacWJT>e6!ON;^+CcckxsBfhV_za8iFS${yjK_b%v=91( zl7SQ78TgWgbpI9@$9{o@z9&{^8xywXGmZ`#KSD2RJpIXX)=i@xLfG~Q0 z?zq%BpM5ZClIlOo_nAC7QR z7&@kf5vU@ypyYUbB=t}!8~jCJdEo{2QJJ4PiR87(FX5=K>?jfy!>*|lYK8tB;?`9m z!(3g+j8}@8zcmB1%&)Op`Tip~#AUb|B;#24l4tErGLQa6@eND!e ze1n>P4Btg7cQ=C5J8`cyAO&I;{M#)R)3^YEzG~TJx1AMVq2#@gIvp!`YLWOYP(`3* z%2HbQZwgkes_t~cWKnzqaM^Ba(EA&JwWcG#0;zO|?W*3%0>=e&{bIcpViB>Fh|Dtd*Ln-oj^J{8qqkraE zDLhE8m@>YqQo@;M^#RU72Y+N^;a$hlD%nFfzSF9_ctK8uj$d9}0=(N{i%MU}yG->vj`-&5$^Z<3|S?5Y;ZE=yz znj}fP+r`Wl1>fZ>!9vMrxa4_d=tq>3ik%?c8X=?Z_A6&UT*xg)IjOly8BwTsXX?)S zCoxT8)7gmI2Qrh*@lI@0r37*0mhX9~D$P}(7>kN*N_9?cCObH}qH-?f#^lu!gUVyMP zoL~Jobwtwr8#Ln%N#5l5-3}ZgoZ>?iKfgFK&=KUzPm$brn3J^pD#xzFRQB0JP|}|r zDLss-{)ou_BbXlh4S~g^oO)o9FX;MkmQirp(lCaVk)WBSyjBre2HuKNy4uRP4p7z8RHH)rWo%j*NgE={t;#}@ z&2PsfU-A=v6ONK4hx2jXu)9IJ%5>0iZu!kPhM6)=JI$I_Z&xH`SH#8W8^je z8XWn=!m99-a`GE2U;NHV{6F~Cg6&Pu6#l_x-2B13FcG2VcnyBEGxiU{82cZ|$e$t2 zOpQOG5|D~OtBY~&lu4a{%d)9x&o{aLBvansAv^hZI86~}CBNgl3<8i~EA6oHHv+Ue znuy<_5a6aiG}q+>JhXNE1fKPW#JZk@rT+d?x4-OIxPR=LP|D8<69 z^b}BPcHku5e5Yi2ipA}x>GDHaLFNuouH+I6f!Z%BSa37>EGQW*Df*S?WK;bHQd%yd z5z@*(6Y>v}d=}-5GvZPJCY(iCy{$T9&8DA&pYI%b@rIM3MQ5ou^mrjmJ_4ZVk$hnq zdX~MQwou_QP*r}X)q6##TLk0J1JLV=Q1=Hs&tDPBWlvU1C_Sot`3>EHYuL3c>`2ZgfZGw7aY$fSp2o*RUkCT4f_P&Zjks)q9C5<`&QQ5B1vpisU|DOp_SS5ak6 z(TM*BAzJ3vwdi14pJQiHD)8ijZ-olKq%iPmh0`jSLu)~GY*WQHHH)BI zNs@+Kg*2f$Tr_*x;h{sFjAvB^{$MbXJIkU9wj-*5@_R2@84_F4SzN{kfuer3D9I2O zQl6R!t?JF8jA?7)RTc$)MDzwU)>nr!lgUr`R0DK-HMp#<##q2s)9Ig6hlb_HZ7G?L zN?hvdv@@wZPLcRVEQ0shP|1xD?*O2ePRx zX5v9}AT*TKQyx;qB+7Ioy@4$OvHZ@lRzoB-CGT5Aq{=|MheJYnJRX9SCB*xpQhwV* z@TU8!FC(PJe+OWA1W?*)SR+(URh(NQi7MIl`d{r1Pm5rf5A~<#E$;44V;YtVSl=3< z&N(I(z|0yr-{MD3yc$ax7p=Z#q*eVz5Cz{)fS3OLT^Lk!rDtYywXAG8+4j5!sgBjJ zDQia(q$lMeB4EoDo>@~gJyLVhmx7xL# z$)-$!yS zwp(x=YN@XhXSF(vF{8W^bsa}R-P;@$sRHNL4&^5huEVV+rL;D!9oL06FgdjeS<{0@ zH$A@E9Bw2trnr_vloMQKTR`32UwSQON-Y$nY8{G~F+DbG7`oL|DDFl~2QFm0nl`EHI}6RfHWy4B;? z6GW;7oGk#rC7JDY8JiFl8m;x5RfqA|dT>|!o1(Fw7v+Q!YHG}ei7%R^wKbYdk!p7= zqi$$NYab{?emN%!xYWAv6#lA_=T1_9up7xX!JY2M)x93}>>B0A?8nz*_6B+gmcv<< zOb?{>*V5DK;UTguBPd5ENBGl@y^P(#D(!^uMlW|c8CwLT$f zD<+nxTg2dyUxep2u7GGOF&00)V?ufBzBYmY`dAMt=fwgu3R$F#v0^LQI@~MpF1s4N z1@+J)JdRQlfsisPNET2H5=X34`OS7uLlUyN0SW2rZ%t|dz>o%_BENB8qk)w3)vV=- zwCs=7b0@GNYFIfx>(1}jUvem-5n4U{V9guBp`a$aa}`83z&$@Q-_CLHL<6M!ZhUa2 zV8;t1=}GH8JI;HqH&{Xi*Rw2@+QCM4Oj{b;*&7H!rP0@uNj@sD?|K8^6K){z^NpNV zLv!W^Cb3uq%J4EOZ8QaCJ;-gi--9wKIl#2Tj!mA_L})WOmE1#?i<(HC-9s{S8dC~m zn{kxb+l-dZOEr~Jg(j_ut*4!h#a6~pZi`1AoHfBfD`8(V;8JU{#a-Q$garxQ5dn_u z4ylZ$)IG`xCa+28{UW7Cg+){G6EI6{N{;_(!iSobHU`Q9xJ8a5wpNV+-PKqks2G(S zOL8-$PJAM*+Qjmn*9>H&+y^^J7_rUK>)ncZ$c{rWzB$OL9T@YrvaPW#5un0LYp&oL zQ??UZZv?e9v=t1r8`&asq=}4_CDGCuWBs+1@GFl^kCU-3_(&Gy8F3uNF2G9-qO8Ad z31@Akw7^2W`QjuSEihAnfi3BlwFGK`pE%C%_m6pu;A*zOAaDWk(^Pj z8Qbio=303n9vh1DC%iaUR;l4c)Z#{}FQ<*H$2KUJw8GZgCN$2B^mhZw5jTeNqmr)j zHJP_kUp>57&AbWwNH0jz%4~x#FxZIDQmq=IH7JagmDpN@+aMRyn&Kbb8Y5*mL>LBK zY1al(kuV&TFnhG>;Pn@PlyF*V;dkoe-Lpaf+>&ii zOmS^3dU4xI^a9--H*x$eYfH3I?NCWhqLnXZo0A*>qH4>mz%0z%*;Y>LlA3T)IdoHK zZOzZlb{r}sohZ1$g3C-uqV~6!S+r<=eSvLe9u)(1n%CZD_S}v5%W20)Gw~dTN&wvQ z2w3q4INJ#=@fCd&3+CXBU~29WKu3Z*4T;QnvUIouY^c$OW=98`60P7x9TCjw3~Q(6 zJK;K3x?1VKcCvwaMNlSCX`KPk#hToaZhOH~<@uda&b<@2<3;6yvGk4{Z?<=^Ds(%V zkHnEe!JutrP=|L$fNdw7L7shr93$$`vXQxTSXCY!vPS%JM@Q=qO77BJ?I%1)2;-g& z3#O)a2bMJ;4IG*_A3RNqx8Y3ff`tY)If30)Ndio~34$z{nbw6vhbDkACB@rDU05#w zaGfLB8r}s*Q(S2kGfBFyB=7-LL(^NJ7>g$iF03V$$>KYZ?Mg^)j-kR&RR|^(b%QyO z1RNiYj3=3DJ(I*0g|l=Mi7)+DSoBPCS9n4qvoNBa97jYqCmE!)_Gly~5{edGzeGaT zTtp>@c9Dv%?bMdFXryp{7pzxVGc}S31>YWXr&we>PAr{oVGIKNQN>$y3Ef~?KZft~ zH@kF>+~(GN^P8cXp9GN>R>qKfD5!cnLSH+C$8I5LE%}_=@O0)@OLd!cYu#q6y4uZB zXL1}>6(y*6x=4y|CG>VMa#m#2ZGdXPpty_qc(NeNio&JFz*h=yBapCL=_Wl&5V^O3 zqU*f`%8s%k>mjLB2o(xlUG>^hA5i1Y37<$mS2|WsdV6-cENeOvK{~XPW%GZ z#_vrlnPY)04`@W|%36JgO-029am>>bx)lo%S`{W}} z$QM3|a)52>9mEnU(v@A2)_9PVK79|ZM^YKn%|%&?yNP5|#UCnYibiU8G;}wT){V$? zCxk&Q-3gt#7ZN3nNeV(&EglR zCweol$D$-v^aTEkp71%Binp{F=J3qj?hZ1)H}%7w>IO6JUM9(RkCf9u43c{glSioN zzO&#i(3J(g-R)-2-eA_~EfL6usmZ-q9KB0{!%Vr33&k+U7r*r>H)LvbXZ^-L08MXC zfcz=S?90&EyYa_Xo!xv&1uw2Y;&-J3dms(uKZ|raVLG`JHcyCurM|8k^Iq6XRAd)g zEtOf6v;{W5>vdwp>Uavex)ChBCoq%Tg6b`al&vSz!4ppjRX`Wt0VW=);OsJ%?x^c!KF9e&PuX#1~RF`Wo%Y2 zy5*P1<@j!-=6DbEh>C|5e&UeifsyQho8F5p6UBY9#_0Y3jh%OVRmJx9=?9Rr_d(Rq z6AL0JB!CT6f+EsMq=%MJf`C9mF9{^{nu38WN+2M;CV&unuz(Uu@ZPH^O1U;vO5)|( zmHfVI&e;k0-r)NO`!joHt!F)}%jwXbi-tEOoA@2<7B zvpcaKIPvvGx?X22u2AyNY4!Zrl~kLGqz?ID$*a#7m^}%DDS<6vh%F2QE~^)PmwWpx zc*3A*g`*VI!zswi;W+kOFTG~;L#tme4mmyWDPJomzPm47EoN{wxeuzK@w})T+m86o z^i}OfAN9?*w>?10?E|^^I8Gnv;dqEJmlf4@F!@$z3Vr)}p%L7jV8!-A*i4W+_?Y6j zNAB-|Zdfl}ruBZaeP1V|AN6utJtAmbjwiAm`T}KYrK#!DxH}AVlKW z-Ow_&x2i*gir;k6Wn-DTVOj}2fZGv4a*PLe_{Xccey}jM4T_=X1d>aW!=gY}&_ok{ zoeG=7G&I_JKMZsO0!RLkwjZaaU~YwbPx-$>v^q?kr1kWro-@`X#WbZ;R0%|e?>N+f zDLvJM#)FvGFl){e0MTGJspiz4=8Q)hg)t23ZSZ*v5=P0ufQb6?7i1RkJL=gtSxh2{ zXf5&ALTjkGE~*K`B}AP}jv#4{8>Yq{5`u27t=vVoB955@@YJ*_^#{d!;r!nN{H4PH zK%)m}B@AS@*2bstzXnJ|f8+w%V&iNCHn>*vBDlZPx;6l7=7N1Af=Pr3e^S?RXJcvHCpF%|MK6o5I2xf;OIT(vZY=?>&)q~0>XfPHL;Su}GWEtRUGGY)9 zYl`>;4Wln)45KZEl5hpyHW=EWgHTNz3|#Vf`W6n+)@vB!z)NGj8(#66VRDcBczeUk zH*|=rlL0djhSAo+cNX?=r$R3eV`>>+jt<8IBiC@aqhXDtWsn0D!$paERnHlXY3!L&odbG~F zF#vPmN0NuY?9>?bMN8dp449^lGc`)an3;2{RgJ0XeWc+4`+MgLvc9RAJcdW@6M@Vb z=k2Pa_IcDkmhG9buz$R7qV}B#Ipb2qc(7x}vJ`k%i?IxtRbbmVv`mS08b`Vy;(OE* zJkfD|!~~~h`iyYwSZ1za9Xi2rZ0k6jP4toCKOP;24KvrH)kdMPd6aTc3HXn9!d7I0 z0pF?tAC~vgIJ&UVM2wOu&PU8R6E}v^rG(6!Ws@G`#bkRh35t6sW80Kk&?H)>wuWoV z6y1gxTA8sF34P9Vi-pP!#WNLkG{%d}TPvNGXxu*C`b=V|qq=1>8?B>p6wlUpLTBXi)i)!za)!CTAg*&! z@NT7M0%y&IUc=cOmd{Y4aU7!KVVgM9F>!J_aN$sUi!JcDY zUs-SgnuU(pU@f0RlGrr!L}(6(MO2$jMfFNNb4V4!XMu5Q`W+HCR08m_K2_a_9h?DN z;7sle4OL9|!jv^f1EC@*Q-Qh|cl-7`UbW2jYsd84=v0&a)7ZYp&hZ9~U&YgxOXp@G z@|pT%97xmC8Y9^j}H??YFf~odD|Cz^(JvtvXbJ}N~Gf-+CeGPRWK>N(APLG~$(m60p0eG9r z)3b$~<}YC8n9l%u&m)mQJtWUBaMU`eTCW9gE_$z8q){-R$D9VLxtc6e!?=$mx?{Zz zfbwy{1$KjeB;jlV$mXSTy+n0Y-^tfVpv4R6M&ouTBQVe8yl%oJsoY zDSIGw;JhL`Hh8d~L>Q(fE1rfcX_01a4{}x25G2dUvq`jI>NA;i%~UY*kB1$`GY0SDPI8iK8p!i z!u;u%%9Ci&d6%vzW^zP>US!AH7n^z;Kw0^=P=r=(DU<5xV)t3Et`RZ(FwTE{tmKQ} z%>c%4pDUj%1`5}Th{Kc*nNpWC1$r!nW4UxBGMAGp^R?OwOEK%embnomXtBQV$Z#cg zR!cv@$l+N?uLt$||Bn_{xj< z(&)@82jzMisWZtwyOe+*TEl>HluZJ)9ja@-4GUPRty19SFL!j?FN1;UyS&2bYhe2H zYqDX>&n~#9`(U+)@k77f%3JPuw0aB31j6@4T~lRX=w8$ys+VNq8E;%qsi#HJd}cY> z33`*L^U0Rag9*ypd{Fnj5-{J%{<#8U0V^Oiyf9-?Z+hkUUkO&QhMe69i%b)6Up{@5 z?@>=pj_tyrRZK_s+f{_#geCD!3>gtXYseX`6q9@>%zP-LU-*$HUqrGEsMZIWW#a31 zW!KcW6I_0tRVZl&c)6h8z0F0=6zWnb)l=64Vu}m}9xayRln`)lpy@Om zO^R2pLBFWT46un3p7PFSnUdEKL~3GBFDI^d1c?1d8X^V&VZJUDta;X9tvM5;h(+0S z`b_~*m9=D}0GFX~q?Ctc>lwYgg+3-0-`DOSm<>0`)u?fJ-^vW_!C=6kWIu05e%TZBS#IF*Zb@%vZ0ix6wC6ZJVOPMs*po!AW0* z9Yo5^I#Z*!RLul_-Uc>bMaTxv)I2Tr4=Pur)?z&jUfbZ*XYN*Pm?^($1H$#UFKg>uQx;qnp>!a+1v_wrVI;V`^)j($+eJOe9Zl#zvuVs;0w~ zT!T$eL4h}88=PW^P*pQ}T_bXM3#txp-_+|(6-e$z?2J^4QQL1vm+I=NnPy>|9kwgf zm!i-IZE)xjFE$+8ZY$g}4m}feUbv{Nfg`)Tj@^L8qUb^1tS{vigg*t=gqcW<(CW)x z21oe#D$P{EMa>n{xsvSDP#fg-n_!W=m7Jd4s_?q-*WAje6Leo?kY_H1YmqbM;mGml z;#$7o)s{9Y;*_OX6S+mu;wcQj=8DHf%g{iWPs%o8^4Lyq3|(?gT|n4%XCEkfNsr!% z#`#PDT4Zv1WCtY8mwj=W1m`z%syl@HcXGN~Cy=*KKOX!!6E6ew)Bax+z_hmQQ~=dz zsQ_sB29h(JR-&5Z;M-K}$l&x2H7>A9jRE#SDqKj-{NYBFQh~B>w{vb6EX?QlX zg|#AhHh_}uA=5Gg$kmr3-4#lWKAu|cLCuhCpXJak$Z~w!r*zr5@?=!y zis0w#siA?IzkIB$ibnhF#iQE$&^4Sl?cwx!Jw3aZ2L=W&U@xb{poL6UVKbV!kJjux zu7^_h-3G^hqMk*6b5(Fu`SxHN$qw8DWz(v)&xx>MM);T*O5TJ3K0YTms)j?9U&XJOWky{G*?rbLz<{Z~Csf1;-_ln6LDFWb zx$S;f6%81av#RzNWct`&YDu@-f13^81X_8Jsbug@AA(ipAqT)PNIrlI^$*f#0InSZ zzzAPe;iEcWtRcc}qVh9xX9`hp+NUw&Ai*)S=#mmI@(tqr3g&)dy7#c_J~?^>rVH1) zAI|D{*fpSfz_%qTm8e$2Q=)!}Dz4kwB`TIH*YlA_S~ikbuj4`fxH66TPp|iDtNwSc6~*JU``p#ORIyejUvjN4SKO#y7(yD-H6|B_FYC{w;fiE{2za^Q-q%Y(&{aB|0crf*!;Q$|j%CpA8I zRW`XxIW##?Dtzjy`gfUsMn(-UQ$y-sb-nm^qR*x@n(Zg;K65pf%U4~l;zB34t`;9x z{vgp6S*&K8>#oSZW6>m~|ICLZ@4D;a-%85PD-`v$Yb@_}p6g<9X0yuVyHbiTu^m6$ zZM5f2*P>!|Q-5?__`CEqc}7BAwx3+T=Bg2i!m2RgT|3RJm^lm8mBgC9SeqEe^R|#k!r< z@332nAFY(_URM0*p`-3A#g86%$6dKb?c!W2k4uf3WWCtXnqOAhyR6Dt*P2;@W#qH( z+*MQJX4Mq?dv~R~YdS?ru^%&i6OmAN~zaQ)yJosw$^1x*pB)`@!Ae?&6JuvVOSX&iNamMuHIE0(D?t66uM z4wGwGcbQ7{Ygv^`-IZXIC;#GjUU{$MtgqhLQY^7%4XqE$-W~jDnRda=w?0o=H}5X^ z*YHQ(b2s^}A)zv@wN*cB?JJg5TH@MTZDn`|tAdnnXNAk+cGk;sq^(s^hPSf#HK^1FVW!&vmmJm-OmQ>F(9LUzX=sRpjgLR;--JvF?>~J**|tuZJ~V z9-VE~kqTiLsW%&8T5c&9Wz~}xMJBL|Kq~ma_yyW&pIJm#{sFdzy z1<3V&)*z|X&w5Zk>1@@Kk9t`v`Mp_a4d`Xnlzw5bEa+oBq6ZJ3krB=F!~fb>SJG6t zoelu+R%?E8dJuN)a89R=0r^}X>oFazDG8&oOJG=&RHUedaCKP`08mNbjmKn$!0M&p&io+m8YnF^0X1yZM4?|?|D3X^wiXuEZ zl923(ww{u!eVr-^8R?Xdv0>s@)VDp7Xxs?n5Ex~Zm5+y!EsDC5oE{Ecra^hH@xWnL z*-`-u7SNv~6?`-j7QK@{Qd)QPZuH_{r(PnmQ2+v|k?4h&O=RpruX&6=+)Z$FJ1 zVfE74cAr#Jt4+HyXQAlv_HF(jePN?8?pX5|=M;_MP%|3KMv*2bAh@Z z4U>ScGZDGt0{A7K}t)Pj%Y0ldlO37nMqq!;wDh5M(kHLL6w={2NeeEemOH9J{QM<4yH#E zdUJ80etglvwr@e7Fdm|>bYe1Ap2V#3pG=llO=4;dn?(A9ClRUhlOSqDPEI7AnbYz4 zwaKVG+Kp;O!=satii-g>e=?EUF^N*F8jH0jCga-47`XgC0+I9-`Z(n`&^4__H>?i> z{!@rN^;3)gwF3C`zQ`5zt)7nEHEQyUBZR(nEUiCcFl0p$i0?Gt?ii}jUcu^+JH_fK zXQxm<>8XGk6xS4{dB{BSlpPBfr*)r%O{L;GP35x1fh%Vs8c{RwQj1HPJP)FTJu2(c-sEAarZ-qn+<@$kE>$k)|{7V)&0bwMK2aL|rp zqH|eoAP-Js1z@UFmz?QV8%b6Gv$h%bW^v4j!%K&YM}B_;S4j_#f#U!`&dq-aK}bw` zn5?zD1;SEOR#K<3=!D0y`qvvyfgPRZEHJro5U&rG8Bo>^}g=zN=SwYik7v0)bFlQW=U z95mEeR`^zZ0kguCO1Js6y3Yp`l6+Y+U)}Px>PqZ<(p_&MQ9F^UwYz}PznpfQ$JC&j z>d5DFtrxX`YfA1s!kM%ZFS8f0>`hsQn$e9@VMnBbYVaY|Osf5d`DAN+BA26Ei-=!R ze@;CKl+T4kBJ_N!H((FSt4R!)ZP*EIeX|ge;1mLDLdO-FKh8{mOX*}ruL)3p8F)bl z48Wdb;$pTck;~!7#slIB7-BQRpG7Ul1#ch}H2)3ih1Jhfx=hmqK92?@FcscRb6ct{ zayAv&i=1L&l;v7?YuSq(xkigo+q;#jJ-^smA>m@VB&ZvQ@Wq%|y_l3&(~T*sh*=3( zsTR><|HNvXijyYW#>t39RD98D^ZgNMbV=1jr%;XU=h8A<%w_?2kDPdesyLL0f2Jx% zEJXx&A1ai)SKKMgFEs9zOWI0Uj4+#{C&f->4*z2*MUs~W-ROb1z~;@*8>(e#gvtq8 zB^i^-Ea1>kvshEJV?ZtS@?o)3)JvUiZ0&ey&)=$h;on?lwUWRzZY3PfzL4yng6FkX zP^O2{@N&ummK+BeyDR9cnud*Ul2||*t)yILXW;LVrP$azh0}v+Fip;2u`TNJO9SuJ z3e?)I#4X2ZwsE?^eYTQB9Z#jU4r|z1ihT)iT8%Xy737wdi>crHSD{gV1-`N3ayj!| z0&F>*$AGmwbhl{3SR_hcmiwS_T?OyLA?LhoHLD>D0+b?8Za}`h|qH1X7Z^7 zK$&DuNosF`Xwq#G@5}-Z-yRZ@x`{Ag3f7V4%e)>{l8hA6_){7tuceW#O3Oet`~18& zh??2d+6e^lY7R_8R$09z;GpF%hgVw>60(K}on1|twMgg6k-bxwzjUB3ts+d}>1br^ zp>=o{t)f0!jU{TeSA_WK=pCn3vIeiQqRPtp4c0oDw9(oo-8K=OI-9JPSxYxr=_MsM z6Pi_baPZ&49bnR4h_u;C6wYt4dditCR&&|0pCBLEN?9-8Y7LO%tMRx-2B~Uu(5jd9 z`ZjA;N#*XZot30%I)b3yCj;N4HD(8?Gfo*xl+g_NG{b5kZ8PCsH^X{H^0%`aa9WMM zP*W6t?lvZ5g`Je!H`_JJyXZ^YO_cv!%at``CmBMQ5bk0j3C)D`nQe?7R;si1Fc;75 zw%(UjyGUo$E}SzFrNtVs6NiCnD;Kt)adwwC=+$NDZbn0PTfzL^IU?p1HInm|6))G` zA{>48ko!ls5p)v?m{yXNJ3&dyB2JzxSS`t70y(XwI`EWC*bB0WK~NU!w`VU-H_5_% zS~a|JZ?T_Nz5N(}dOyM8P)ASAmdcVt`*C&7KHv*AQuhH&-h9B1?X&u1y|Lf&D=EPT zHC6|i)~3kZ2f3mC{D9R+K0DwIY&{uu&^jtHhbf2lhuPX}JF00tOw<}3vfk#0x^>>I zW@Z89kzbFpCo6S?x zUVWPiZ1RpZMb4@@zxS9tKdZ=u_pJ6Z{}`kb-s7~^33&8d4@#?J(2rS9Js!^HTDswF zYAWs+c<%Rz4y}8n+;O5EdyED6n`2y8Y8=Ds3CD3W^B8kI>Nr`URaiC{ z$1SU*Og%+8^F_X%1Yf+S8| z@;}9tIGaN~tv&(42Txj~ypBv!4IJVBojCy+oV!ibn`<0YSO}S-iYcG}c?d`6z`(?YcoTOjkhJdl9mAy{do%Mpd zrDrQf175QE9`OY`R31BKx01Y8$gO_G?kG_&+1+=unR(RkRPZztJB<0yJaaKuELco0{6n{o^rxnr@CP^W7dFlPN{gUJc+m&Q}M|*%= z@5I2$p7wy0kdkFnJHj%s8&dnb*wIo$HOGZf7mT0x1Zfd2P#N>MbAKq z>x-Z5%6hbPD#@R{?H&>oL0V7m;{A`J~y1x%Y8{ky=tB|hIW;~gyhU%NW@1V zF}td#rPr}JLkVnlBm-*)*|8FHzXy+-V`kwH(A_qtc|+}KJnI22ray;o2dKqC@O*Bd zJyPC%jR?j?z_^*8f~szGBqC2W_VhBPJZgYFK`sx$M9oO_SJd^i@lJw44LoK#RF>vL z2*8ekBrs|iF^V1r$7hEUBQvSy`+2maDoMdW&CD1q{5Bj5d6Vq2SvOv{T_vUM2!c26 zb$gB|$KF>EA#-(@>}PrS!u0@WjNIpo{mhmOU+ zKgKfEPMu^leY71RzmGxp<~R;L&Y(+QWyw54mS{2GbYO2Z$QxCzU^IuT6L9806ja~; z7l}+7kByj<_RA?YwN_yigGZD~>+u-7Ii94|IPC@I-c=V8LwV^0M1m(mrC=1bckTon zgD0`V(>Qnx#z+sZ88JZXTfLHB``zgA-p&i-NUmPXuFU@@2@~H1JmOfxPLZk*S-KM zaEjeeX2o$jc{&5NW+L1m9;i>_N$l!L;OT)dS9dpxgeBR~ZlA?SNFF?Ox`u_slg2tZ?_S?vwPl2ir+VF` zV5R+&oU7vNKOy9}V>)ZW5)X@nnTbc1<5#zp419E-E=D^0YcEBA*mC*?q+#^!Wwesk zU~7L(A5vaA+%Eg!Ox{XjdSa=jCmn-9_c?trLT2h#*BGdXYb9n2HlVg?BQC|QWv;!x ziN5!DQ7I4Y0w8P)Cf2OydYQMKfq$;G=cKMDB$wZWMAHn!g4ROpn;jfNw=wX+V0x`zDMJE4wK>@nZW14q@xS%-xBI=V5#-*hHWrHWR$I+ZhO4s{@-M+GRazA!9f- z94l_2Z`NTgb6p^R+sCEf=w4o9mr32m;O@0FhD?e?dimZnCV@#XTiyEi}ZxU#7(ODi> z_nN$k?cRF;NZO%S-#w7p638_nG#>3vTJRnk#kGXM+kp?j=q1t&Ee7~zz2WGMl|;XHWqxqD0|vga_Jbt0jF^2)G25L zA4mAYKd@186n3*uGI}Oq46A-HdnA z9F>))-vNa^0SU;)(71E#)yPb!eDotAJW$v%v=RRwaP{0xV%p~`2I_U?ek867 zw;f+YdCf0?#NEWi(pbU*dS#h9ot8mjKhZ@_UPpwDMySNxv@4{3L*w3W>HqKt`saPd zX zPUlVaL9z+r+NV>C`+*@|b#-e&DDsXev#ZcaW%d%SB>Orz!#h*C+5bYbZXN;t^JidN ze97TL9{TK!eD)4#NZ3uak?o%;!b3& zEV~38HyhlveT~_rUm)!Mjy`T>d=Vb-9eu&S;dRI_Tz~_*vve8ZOwDVfd;(tWCWfkY z2E~y7W4=TF*bOc~CQqv_B0T0tgbThRF;g{c)n++iNc^4C5G^^jZPbH?tVS>DJuVMc zfAnClrLm9v7G~L3pwjjtEjFcHW!bM_zWpN^Fa0&Abt`&8CAWfyjnF+FDx(667W)`q zWnKJ(d|oQ$;VNH>fj3-;a7Sg5;gP@!o>%3kGAz>Z6+Ene6!emgz{M=Wv)s}ik9?NQ z1u3wUCqfEtLG~M$hpDCu@VY*1i_se^%PCx zlv=>$q`{xmWpGLOvSVVy=t7-6;LBPb9=Ych&TYMgUq2V%^_=n^a;b8kYAe4YX4vm_ zk_|e_{alFJnJ6(Sm`J|`n|!Y`U6oQ#xmFHu3_134zL3ler!+8DSw5-Yj6Pf53Ekz= zo{qA@4NC7UQ`F@pp^|5?w6r|kq@V2>p$iJXi#-(g%}UrtW%J#z%e8SuEYCXtkFSyjO+ztRM&l3r?h2%D}>a<-ahy(Cp8R|9Ipj#Kvj z_tM&13p?Fc!rkaURR!VPYRG+jAKcBg>P&T5)LMo`|NAh(zRuVBb=4g#a+W$J7xjQ= zf^O`1-k}$})#(nsE_Z6g3UeUWkENn^4U)ljw5v?G-xDTBYGS-XZBFk=)0*)kteaL9 zc~v%b6_7;%IA0Z4PTfzS*o3l3DbLe9XYt0eel;AJ=f|jtK&N!C)yjHtbpE@$6KWDkiIJf!0$-=6ZS7 zW`K=YN7e5nk3Z^}B-~|pk&K6-!+~cub-*+i`hE@REAcSV^yAn*`XF}LtC?*M zJN^d5B%nUQ@~h|RF8;fjN5;^;2B?KR;u$Y_bunb{jz0q4x&VAke-ym<{timThM>Ij zI5hn0!{E?Eo;QsLY>!!{*D;UH6*}`_$g|P)`Y7$T6I!#R9IoRTDFqGjw68xLf8UCR z*#M-~bs|;$37`x*j}m+U%`yN8e~?_h)etokn~_g=)=1xnsZ;jc?KMCZ Date: Wed, 18 Mar 2026 21:01:18 +0100 Subject: [PATCH 036/212] Updating test data --- testdata/python/dbLayoutToNetlist.py | 70 ++++++++++++++-------------- testdata/ruby/dbLayoutToNetlist.rb | 70 ++++++++++++++-------------- 2 files changed, 70 insertions(+), 70 deletions(-) diff --git a/testdata/python/dbLayoutToNetlist.py b/testdata/python/dbLayoutToNetlist.py index c71cef68f..ff41aa117 100644 --- a/testdata/python/dbLayoutToNetlist.py +++ b/testdata/python/dbLayoutToNetlist.py @@ -105,15 +105,15 @@ circuit INV2 (OUT=OUT,$2=$3,$3=$4); end; circuit RINGO (); subcircuit INV2 $1 (OUT='FB,OSC',$2=VSS,$3=VDD); - subcircuit INV2 $2 (OUT=$I20,$2=VSS,$3=VDD); - subcircuit INV2 $3 (OUT=$I19,$2=VSS,$3=VDD); - subcircuit INV2 $4 (OUT=$I21,$2=VSS,$3=VDD); - subcircuit INV2 $5 (OUT=$I22,$2=VSS,$3=VDD); + subcircuit INV2 $2 (OUT=$I27,$2=VSS,$3=VDD); + subcircuit INV2 $3 (OUT=$I26,$2=VSS,$3=VDD); + subcircuit INV2 $4 (OUT=$I25,$2=VSS,$3=VDD); + subcircuit INV2 $5 (OUT=$I24,$2=VSS,$3=VDD); subcircuit INV2 $6 (OUT=$I23,$2=VSS,$3=VDD); - subcircuit INV2 $7 (OUT=$I24,$2=VSS,$3=VDD); - subcircuit INV2 $8 (OUT=$I25,$2=VSS,$3=VDD); - subcircuit INV2 $9 (OUT=$I26,$2=VSS,$3=VDD); - subcircuit INV2 $10 (OUT=$I27,$2=VSS,$3=VDD); + subcircuit INV2 $7 (OUT=$I22,$2=VSS,$3=VDD); + subcircuit INV2 $8 (OUT=$I21,$2=VSS,$3=VDD); + subcircuit INV2 $9 (OUT=$I20,$2=VSS,$3=VDD); + subcircuit INV2 $10 (OUT=$I19,$2=VSS,$3=VDD); end; """) @@ -134,7 +134,7 @@ end; for sc in sc_path: a.append(sc.expanded_name()) t = t * sc.trans - self.assertEqual(",".join(a), "$2") + self.assertEqual(",".join(a), "$9") self.assertEqual(str(t), "r0 *1 2.64,0") self.assertEqual(str(l2n.shapes_of_net(n, rmetal1, True)), @@ -206,16 +206,16 @@ circuit INV2 (IN=IN,$2=$2,OUT=OUT,$4=$4,$5=$5); subcircuit TRANS $4 ($1=$4,$2=OUT,$3=$2); end; circuit RINGO (); - subcircuit INV2 $1 (IN=$I8,$2=FB,OUT=OSC,$4=VSS,$5=VDD); + subcircuit INV2 $1 (IN=$I18,$2=FB,OUT=OSC,$4=VSS,$5=VDD); subcircuit INV2 $2 (IN=FB,$2=$I38,OUT=$I19,$4=VSS,$5=VDD); - subcircuit INV2 $3 (IN=$I19,$2=$I39,OUT=$I1,$4=VSS,$5=VDD); - subcircuit INV2 $4 (IN=$I1,$2=$I40,OUT=$I2,$4=VSS,$5=VDD); - subcircuit INV2 $5 (IN=$I2,$2=$I41,OUT=$I3,$4=VSS,$5=VDD); - subcircuit INV2 $6 (IN=$I3,$2=$I42,OUT=$I4,$4=VSS,$5=VDD); - subcircuit INV2 $7 (IN=$I4,$2=$I43,OUT=$I5,$4=VSS,$5=VDD); - subcircuit INV2 $8 (IN=$I5,$2=$I44,OUT=$I6,$4=VSS,$5=VDD); - subcircuit INV2 $9 (IN=$I6,$2=$I45,OUT=$I7,$4=VSS,$5=VDD); - subcircuit INV2 $10 (IN=$I7,$2=$I46,OUT=$I8,$4=VSS,$5=VDD); + subcircuit INV2 $3 (IN=$I17,$2=$I46,OUT=$I18,$4=VSS,$5=VDD); + subcircuit INV2 $4 (IN=$I16,$2=$I45,OUT=$I17,$4=VSS,$5=VDD); + subcircuit INV2 $5 (IN=$I15,$2=$I44,OUT=$I16,$4=VSS,$5=VDD); + subcircuit INV2 $6 (IN=$I14,$2=$I43,OUT=$I15,$4=VSS,$5=VDD); + subcircuit INV2 $7 (IN=$I13,$2=$I42,OUT=$I14,$4=VSS,$5=VDD); + subcircuit INV2 $8 (IN=$I12,$2=$I41,OUT=$I13,$4=VSS,$5=VDD); + subcircuit INV2 $9 (IN=$I11,$2=$I40,OUT=$I12,$4=VSS,$5=VDD); + subcircuit INV2 $10 (IN=$I19,$2=$I39,OUT=$I11,$4=VSS,$5=VDD); end; """) @@ -287,16 +287,16 @@ end; l2n.extract_netlist() self.assertEqual(str(l2n.netlist()), """circuit RINGO (); - subcircuit INV2 $1 (IN=$I8,$2=FB,OUT=OSC,$4=VSS,$5=VDD); + subcircuit INV2 $1 (IN=$I18,$2=FB,OUT=OSC,$4=VSS,$5=VDD); subcircuit INV2 $2 (IN=FB,$2=$I38,OUT=$I19,$4=VSS,$5=VDD); - subcircuit INV2 $3 (IN=$I19,$2=$I39,OUT=$I1,$4=VSS,$5=VDD); - subcircuit INV2 $4 (IN=$I1,$2=$I40,OUT=$I2,$4=VSS,$5=VDD); - subcircuit INV2 $5 (IN=$I2,$2=$I41,OUT=$I3,$4=VSS,$5=VDD); - subcircuit INV2 $6 (IN=$I3,$2=$I42,OUT=$I4,$4=VSS,$5=VDD); - subcircuit INV2 $7 (IN=$I4,$2=$I43,OUT=$I5,$4=VSS,$5=VDD); - subcircuit INV2 $8 (IN=$I5,$2=$I44,OUT=$I6,$4=VSS,$5=VDD); - subcircuit INV2 $9 (IN=$I6,$2=$I45,OUT=$I7,$4=VSS,$5=VDD); - subcircuit INV2 $10 (IN=$I7,$2=$I46,OUT=$I8,$4=VSS,$5=VDD); + subcircuit INV2 $3 (IN=$I17,$2=$I46,OUT=$I18,$4=VSS,$5=VDD); + subcircuit INV2 $4 (IN=$I16,$2=$I45,OUT=$I17,$4=VSS,$5=VDD); + subcircuit INV2 $5 (IN=$I15,$2=$I44,OUT=$I16,$4=VSS,$5=VDD); + subcircuit INV2 $6 (IN=$I14,$2=$I43,OUT=$I15,$4=VSS,$5=VDD); + subcircuit INV2 $7 (IN=$I13,$2=$I42,OUT=$I14,$4=VSS,$5=VDD); + subcircuit INV2 $8 (IN=$I12,$2=$I41,OUT=$I13,$4=VSS,$5=VDD); + subcircuit INV2 $9 (IN=$I11,$2=$I40,OUT=$I12,$4=VSS,$5=VDD); + subcircuit INV2 $10 (IN=$I19,$2=$I39,OUT=$I11,$4=VSS,$5=VDD); end; circuit INV2 (IN=IN,$2=$2,OUT=OUT,$4=$4,$5=$5); device PMOS $1 (S=$2,G=IN,D=$5) (L=0.25,W=0.95,AS=0.49875,AD=0.26125,PS=2.95,PD=1.5); @@ -402,11 +402,11 @@ end; l2n.extract_netlist() self.assertEqual(str(l2n.netlist()), """circuit RINGO (); - subcircuit INV2PAIR $1 (BULK=VSS,$2=FB,$3=VDD,$4=VSS,$5=$I11,$6=OSC,$7=VDD); + subcircuit INV2PAIR $1 (BULK=VSS,$2=FB,$3=VDD,$4=VSS,$5=$I16,$6=OSC,$7=VDD); subcircuit INV2PAIR $2 (BULK=VSS,$2=$I22,$3=VDD,$4=VSS,$5=FB,$6=$I17,$7=VDD); - subcircuit INV2PAIR $3 (BULK=VSS,$2=$I23,$3=VDD,$4=VSS,$5=$I17,$6=$I9,$7=VDD); - subcircuit INV2PAIR $4 (BULK=VSS,$2=$I24,$3=VDD,$4=VSS,$5=$I9,$6=$I10,$7=VDD); - subcircuit INV2PAIR $5 (BULK=VSS,$2=$I25,$3=VDD,$4=VSS,$5=$I10,$6=$I11,$7=VDD); + subcircuit INV2PAIR $3 (BULK=VSS,$2=$I25,$3=VDD,$4=VSS,$5=$I15,$6=$I16,$7=VDD); + subcircuit INV2PAIR $4 (BULK=VSS,$2=$I24,$3=VDD,$4=VSS,$5=$I14,$6=$I15,$7=VDD); + subcircuit INV2PAIR $5 (BULK=VSS,$2=$I23,$3=VDD,$4=VSS,$5=$I17,$6=$I14,$7=VDD); end; circuit INV2PAIR (BULK=BULK,$2=$I8,$3=$I6,$4=$I5,$5=$I3,$6=$I2,$7=$I1); subcircuit INV2 $1 ($1=$I1,IN=$I3,$3=$I7,OUT=$I4,VSS=$I5,VDD=$I6,BULK=BULK); @@ -431,11 +431,11 @@ end; l2n.netlist().purge() self.assertEqual(str(l2n.netlist()), """circuit RINGO (FB=FB,OSC=OSC,VDD=VDD,VSS=VSS); - subcircuit INV2PAIR $1 (BULK=VSS,$2=FB,$3=VDD,$4=VSS,$5=$I11,$6=OSC,$7=VDD); + subcircuit INV2PAIR $1 (BULK=VSS,$2=FB,$3=VDD,$4=VSS,$5=$I16,$6=OSC,$7=VDD); subcircuit INV2PAIR $2 (BULK=VSS,$2=$I22,$3=VDD,$4=VSS,$5=FB,$6=$I17,$7=VDD); - subcircuit INV2PAIR $3 (BULK=VSS,$2=$I23,$3=VDD,$4=VSS,$5=$I17,$6=$I9,$7=VDD); - subcircuit INV2PAIR $4 (BULK=VSS,$2=$I24,$3=VDD,$4=VSS,$5=$I9,$6=$I10,$7=VDD); - subcircuit INV2PAIR $5 (BULK=VSS,$2=$I25,$3=VDD,$4=VSS,$5=$I10,$6=$I11,$7=VDD); + subcircuit INV2PAIR $3 (BULK=VSS,$2=$I25,$3=VDD,$4=VSS,$5=$I15,$6=$I16,$7=VDD); + subcircuit INV2PAIR $4 (BULK=VSS,$2=$I24,$3=VDD,$4=VSS,$5=$I14,$6=$I15,$7=VDD); + subcircuit INV2PAIR $5 (BULK=VSS,$2=$I23,$3=VDD,$4=VSS,$5=$I17,$6=$I14,$7=VDD); end; circuit INV2PAIR (BULK=BULK,$2=$I8,$3=$I6,$4=$I5,$5=$I3,$6=$I2,$7=$I1); subcircuit INV2 $1 ($1=$I1,IN=$I3,$3=$I7,OUT=$I4,VSS=$I5,VDD=$I6,BULK=BULK); diff --git a/testdata/ruby/dbLayoutToNetlist.rb b/testdata/ruby/dbLayoutToNetlist.rb index be31d1119..33334b387 100644 --- a/testdata/ruby/dbLayoutToNetlist.rb +++ b/testdata/ruby/dbLayoutToNetlist.rb @@ -182,15 +182,15 @@ circuit INV2 (OUT=OUT,$2=$3,$3=$4); end; circuit RINGO (); subcircuit INV2 $1 (OUT='FB,OSC',$2=VSS,$3=VDD); - subcircuit INV2 $2 (OUT=$I20,$2=VSS,$3=VDD); - subcircuit INV2 $3 (OUT=$I19,$2=VSS,$3=VDD); - subcircuit INV2 $4 (OUT=$I21,$2=VSS,$3=VDD); - subcircuit INV2 $5 (OUT=$I22,$2=VSS,$3=VDD); + subcircuit INV2 $2 (OUT=$I27,$2=VSS,$3=VDD); + subcircuit INV2 $3 (OUT=$I26,$2=VSS,$3=VDD); + subcircuit INV2 $4 (OUT=$I25,$2=VSS,$3=VDD); + subcircuit INV2 $5 (OUT=$I24,$2=VSS,$3=VDD); subcircuit INV2 $6 (OUT=$I23,$2=VSS,$3=VDD); - subcircuit INV2 $7 (OUT=$I24,$2=VSS,$3=VDD); - subcircuit INV2 $8 (OUT=$I25,$2=VSS,$3=VDD); - subcircuit INV2 $9 (OUT=$I26,$2=VSS,$3=VDD); - subcircuit INV2 $10 (OUT=$I27,$2=VSS,$3=VDD); + subcircuit INV2 $7 (OUT=$I22,$2=VSS,$3=VDD); + subcircuit INV2 $8 (OUT=$I21,$2=VSS,$3=VDD); + subcircuit INV2 $9 (OUT=$I20,$2=VSS,$3=VDD); + subcircuit INV2 $10 (OUT=$I19,$2=VSS,$3=VDD); end; END @@ -206,7 +206,7 @@ END n = l2n.probe_net(rmetal1, RBA::Point::new(2600, 1000), sc_path) assert_equal(n.to_s, "INV2:$2") assert_equal(sc_path.size, 1) - assert_equal(sc_path.collect(&:expanded_name).join(","), "$2") + assert_equal(sc_path.collect(&:expanded_name).join(","), "$9") assert_equal(sc_path.collect(&:trans).inject(&:*).to_s, "r0 *1 2.64,0") assert_equal(l2n.shapes_of_net(n, rmetal1, true).to_s, @@ -287,16 +287,16 @@ circuit INV2 (IN=IN,$2=$2,OUT=OUT,$4=$4,$5=$5); subcircuit TRANS $4 ($1=$4,$2=OUT,$3=$2); end; circuit RINGO (); - subcircuit INV2 $1 (IN=$I8,$2=FB,OUT=OSC,$4=VSS,$5=VDD); + subcircuit INV2 $1 (IN=$I18,$2=FB,OUT=OSC,$4=VSS,$5=VDD); subcircuit INV2 $2 (IN=FB,$2=$I38,OUT=$I19,$4=VSS,$5=VDD); - subcircuit INV2 $3 (IN=$I19,$2=$I39,OUT=$I1,$4=VSS,$5=VDD); - subcircuit INV2 $4 (IN=$I1,$2=$I40,OUT=$I2,$4=VSS,$5=VDD); - subcircuit INV2 $5 (IN=$I2,$2=$I41,OUT=$I3,$4=VSS,$5=VDD); - subcircuit INV2 $6 (IN=$I3,$2=$I42,OUT=$I4,$4=VSS,$5=VDD); - subcircuit INV2 $7 (IN=$I4,$2=$I43,OUT=$I5,$4=VSS,$5=VDD); - subcircuit INV2 $8 (IN=$I5,$2=$I44,OUT=$I6,$4=VSS,$5=VDD); - subcircuit INV2 $9 (IN=$I6,$2=$I45,OUT=$I7,$4=VSS,$5=VDD); - subcircuit INV2 $10 (IN=$I7,$2=$I46,OUT=$I8,$4=VSS,$5=VDD); + subcircuit INV2 $3 (IN=$I17,$2=$I46,OUT=$I18,$4=VSS,$5=VDD); + subcircuit INV2 $4 (IN=$I16,$2=$I45,OUT=$I17,$4=VSS,$5=VDD); + subcircuit INV2 $5 (IN=$I15,$2=$I44,OUT=$I16,$4=VSS,$5=VDD); + subcircuit INV2 $6 (IN=$I14,$2=$I43,OUT=$I15,$4=VSS,$5=VDD); + subcircuit INV2 $7 (IN=$I13,$2=$I42,OUT=$I14,$4=VSS,$5=VDD); + subcircuit INV2 $8 (IN=$I12,$2=$I41,OUT=$I13,$4=VSS,$5=VDD); + subcircuit INV2 $9 (IN=$I11,$2=$I40,OUT=$I12,$4=VSS,$5=VDD); + subcircuit INV2 $10 (IN=$I19,$2=$I39,OUT=$I11,$4=VSS,$5=VDD); end; END @@ -369,16 +369,16 @@ END assert_equal(l2n.netlist.to_s, < Date: Wed, 18 Mar 2026 21:13:33 +0100 Subject: [PATCH 037/212] New test data --- testdata/algo/lvs_test1_au.lvsdb.2 | 646 ++++++++++ testdata/algo/lvs_test2_au.lvsdb.2 | 677 ++++++++++ testdata/lvs/ringo_device_subcircuits.lvsdb.2 | 908 ++++++++++++++ testdata/lvs/ringo_layout_var.lvsdb.2 | 1013 +++++++++++++++ testdata/lvs/ringo_simple.lvsdb.2 | 908 ++++++++++++++ testdata/lvs/ringo_simple_compare2.lvsdb.2 | 908 ++++++++++++++ testdata/lvs/ringo_simple_dmos.lvsdb.2 | 889 +++++++++++++ .../lvs/ringo_simple_dummy_device.lvsdb.2 | 965 +++++++++++++++ .../ringo_simple_implicit_connections.lvsdb.2 | 930 ++++++++++++++ testdata/lvs/ringo_simple_io.lvsdb.2 | 832 +++++++++++++ testdata/lvs/ringo_simple_io2.lvsdb.2 | 908 ++++++++++++++ ...simple_net_and_circuit_equivalence.lvsdb.2 | 908 ++++++++++++++ .../lvs/ringo_simple_pin_swapping.lvsdb.2 | 908 ++++++++++++++ .../ringo_simple_same_device_classes.lvsdb.2 | 910 ++++++++++++++ .../lvs/ringo_simple_simplification.lvsdb.2 | 1095 +++++++++++++++++ ...o_simple_simplification_with_align.lvsdb.2 | 1095 +++++++++++++++++ testdata/lvs/ringo_simple_with_tol.lvsdb.2 | 908 ++++++++++++++ .../lvs/ringo_simple_with_tol_early.lvsdb.2 | 908 ++++++++++++++ 18 files changed, 16316 insertions(+) create mode 100644 testdata/algo/lvs_test1_au.lvsdb.2 create mode 100644 testdata/algo/lvs_test2_au.lvsdb.2 create mode 100644 testdata/lvs/ringo_device_subcircuits.lvsdb.2 create mode 100644 testdata/lvs/ringo_layout_var.lvsdb.2 create mode 100644 testdata/lvs/ringo_simple.lvsdb.2 create mode 100644 testdata/lvs/ringo_simple_compare2.lvsdb.2 create mode 100644 testdata/lvs/ringo_simple_dmos.lvsdb.2 create mode 100644 testdata/lvs/ringo_simple_dummy_device.lvsdb.2 create mode 100644 testdata/lvs/ringo_simple_implicit_connections.lvsdb.2 create mode 100644 testdata/lvs/ringo_simple_io.lvsdb.2 create mode 100644 testdata/lvs/ringo_simple_io2.lvsdb.2 create mode 100644 testdata/lvs/ringo_simple_net_and_circuit_equivalence.lvsdb.2 create mode 100644 testdata/lvs/ringo_simple_pin_swapping.lvsdb.2 create mode 100644 testdata/lvs/ringo_simple_same_device_classes.lvsdb.2 create mode 100644 testdata/lvs/ringo_simple_simplification.lvsdb.2 create mode 100644 testdata/lvs/ringo_simple_simplification_with_align.lvsdb.2 create mode 100644 testdata/lvs/ringo_simple_with_tol.lvsdb.2 create mode 100644 testdata/lvs/ringo_simple_with_tol_early.lvsdb.2 diff --git a/testdata/algo/lvs_test1_au.lvsdb.2 b/testdata/algo/lvs_test1_au.lvsdb.2 new file mode 100644 index 000000000..64baf5392 --- /dev/null +++ b/testdata/algo/lvs_test1_au.lvsdb.2 @@ -0,0 +1,646 @@ +#%lvsdb-klayout + +# Layout +layout( + top(RINGO) + unit(0.001) + + # Layer section + # This section lists the mask layers (drawing or derived) and their connections. + + # Mask layers + layer(bulk) + layer(nwell '1/0') + layer(poly '3/0') + layer(poly_lbl '3/1') + layer(diff_cont '4/0') + layer(poly_cont '5/0') + layer(metal1 '6/0') + layer(metal1_lbl '6/1') + layer(via1 '7/0') + layer(metal2 '8/0') + layer(metal2_lbl '8/1') + layer(ntie) + layer(psd) + layer(ptie) + layer(nsd) + + # Mask layer connectivity + connect(nwell nwell ntie) + connect(poly poly poly_lbl poly_cont) + connect(poly_lbl poly) + connect(diff_cont diff_cont metal1 ntie psd ptie nsd) + connect(poly_cont poly poly_cont metal1) + connect(metal1 diff_cont poly_cont metal1 metal1_lbl via1) + connect(metal1_lbl metal1) + connect(via1 metal1 via1 metal2) + connect(metal2 via1 metal2 metal2_lbl) + connect(metal2_lbl metal2) + connect(ntie nwell diff_cont ntie) + connect(psd diff_cont psd) + connect(ptie diff_cont ptie) + connect(nsd diff_cont nsd) + + # Global nets and connectivity + global(bulk BULK) + global(ptie BULK) + + # Device class section + class(PMOS MOS4) + class(NMOS MOS4) + + # Device abstracts section + # Device abstracts list the pin shapes of the devices. + device(D$PMOS PMOS + terminal(S + rect(psd (-650 -875) (525 1750)) + ) + terminal(G + rect(poly (-125 -875) (250 1750)) + ) + terminal(D + rect(psd (125 -875) (550 1750)) + ) + terminal(B + rect(nwell (-125 -875) (250 1750)) + ) + ) + device(D$PMOS$1 PMOS + terminal(S + rect(psd (-675 -875) (550 1750)) + ) + terminal(G + rect(poly (-125 -875) (250 1750)) + ) + terminal(D + rect(psd (125 -875) (525 1750)) + ) + terminal(B + rect(nwell (-125 -875) (250 1750)) + ) + ) + device(D$NMOS NMOS + terminal(S + rect(nsd (-650 -875) (525 1750)) + ) + terminal(G + rect(poly (-125 -875) (250 1750)) + ) + terminal(D + rect(nsd (125 -875) (550 1750)) + ) + terminal(B + rect(bulk (-125 -875) (250 1750)) + ) + ) + device(D$NMOS$1 NMOS + terminal(S + rect(nsd (-675 -875) (550 1750)) + ) + terminal(G + rect(poly (-125 -875) (250 1750)) + ) + terminal(D + rect(nsd (125 -875) (525 1750)) + ) + terminal(B + rect(bulk (-125 -875) (250 1750)) + ) + ) + + # Circuit section + # Circuits are the hierarchical building blocks of the netlist. + circuit(INV2 + + # Circuit boundary + rect((-1700 -2440) (3100 7820)) + + # Nets with their geometries + net(1 name($1) + rect(nwell (-1400 1800) (2800 3580)) + rect(diff_cont (-1510 -650) (220 220)) + rect(ntie (-510 -450) (800 680)) + ) + net(2 name(IN) + rect(poly (-525 -250) (250 2500)) + rect(poly (-1425 -630) (2100 360)) + rect(poly (-125 -2230) (250 2500)) + rect(poly (-1050 -3850) (250 2400)) + rect(poly (550 1200) (250 2400)) + rect(poly (-250 -6000) (250 2400)) + rect(poly (-1050 1200) (250 2400)) + rect(poly_lbl (-525 -2600) (0 0)) + rect(poly_cont (-830 -110) (220 220)) + ) + net(3 name(OUT) + rect(diff_cont (-910 90) (220 220)) + rect(diff_cont (-220 -620) (220 220)) + rect(diff_cont (-220 -620) (220 220)) + rect(diff_cont (-220 -620) (220 220)) + rect(diff_cont (1380 3380) (220 220)) + rect(diff_cont (-220 180) (220 220)) + rect(diff_cont (-220 180) (220 220)) + rect(diff_cont (-220 180) (220 220)) + rect(diff_cont (-220 -3820) (220 220)) + rect(diff_cont (-220 -620) (220 220)) + rect(diff_cont (-220 -620) (220 220)) + rect(diff_cont (-220 -620) (220 220)) + rect(diff_cont (-1820 3380) (220 220)) + rect(diff_cont (-220 180) (220 220)) + rect(diff_cont (-220 180) (220 220)) + rect(diff_cont (-220 180) (220 220)) + rect(metal1 (1310 -3710) (360 2220)) + rect(metal1 (-1900 -800) (2220 360)) + rect(metal1 (-2280 -2400) (360 2840)) + rect(metal1 (-360 -3600) (360 1560)) + rect(metal1 (1240 2040) (360 1560)) + rect(metal1 (-360 -5160) (360 1560)) + rect(metal1 (-1960 2040) (360 1560)) + rect(metal1_lbl (1420 -2180) (0 0)) + rect(psd (-1850 525) (525 1750)) + rect(psd (1050 -1750) (525 1750)) + rect(nsd (-2100 -5350) (525 1750)) + rect(nsd (1050 -1750) (525 1750)) + ) + net(4 name(VSS) + rect(diff_cont (-110 90) (220 220)) + rect(diff_cont (-220 -620) (220 220)) + rect(diff_cont (-220 -620) (220 220)) + rect(diff_cont (-220 -620) (220 220)) + rect(diff_cont (-220 980) (220 220)) + rect(diff_cont (-220 -620) (220 220)) + rect(diff_cont (-220 -620) (220 220)) + rect(diff_cont (-220 -620) (220 220)) + rect(metal1 (-290 -290) (360 1560)) + rect(metal1 (-360 -1560) (360 1560)) + rect(via1 (-305 -705) (250 250)) + rect(via1 (-250 150) (250 250)) + rect(via1 (-250 -1450) (250 250)) + rect(via1 (-250 150) (250 250)) + rect(metal2 (-1525 -775) (2800 1700)) + rect(metal2_lbl (-160 -540) (0 0)) + rect(nsd (-1515 -1185) (550 1750)) + ) + net(5 name(VDD) + rect(diff_cont (-110 2490) (220 220)) + rect(diff_cont (-220 180) (220 220)) + rect(diff_cont (-220 180) (220 220)) + rect(diff_cont (-220 180) (220 220)) + rect(diff_cont (-220 -1420) (220 220)) + rect(diff_cont (-220 180) (220 220)) + rect(diff_cont (-220 180) (220 220)) + rect(diff_cont (-220 180) (220 220)) + rect(metal1 (-290 -1490) (360 1560)) + rect(metal1 (-360 -1560) (360 1560)) + rect(via1 (-305 -1505) (250 250)) + rect(via1 (-250 150) (250 250)) + rect(via1 (-250 150) (250 250)) + rect(via1 (-250 150) (250 250)) + rect(metal2 (-1525 -1575) (2800 1700)) + rect(metal2_lbl (-150 -1250) (0 0)) + rect(psd (-1525 -475) (550 1750)) + ) + net(6 name(BULK) + rect(diff_cont (-110 -2160) (220 220)) + rect(ptie (-510 -450) (800 680)) + ) + + # Outgoing pins and their connections to nets + pin(1) + pin(2 name(IN)) + pin(3 name(OUT)) + pin(4 name(VSS)) + pin(5 name(VDD)) + pin(6 name(BULK)) + + # Devices and their connections + device(1 D$PMOS + device(D$PMOS$1 location(800 0)) + connect(0 S S) + connect(1 S D) + connect(0 G G) + connect(1 G G) + connect(0 D D) + connect(1 D S) + connect(0 B B) + connect(1 B B) + location(-400 3200) + param(L 0.25) + param(W 3.5) + param(AS 1.4) + param(AD 1.4) + param(PS 6.85) + param(PD 6.85) + terminal(S 3) + terminal(G 2) + terminal(D 5) + terminal(B 1) + ) + device(3 D$NMOS + device(D$NMOS$1 location(800 0)) + connect(0 S S) + connect(1 S D) + connect(0 G G) + connect(1 G G) + connect(0 D D) + connect(1 D S) + connect(0 B B) + connect(1 B B) + location(-400 -400) + param(L 0.25) + param(W 3.5) + param(AS 1.4) + param(AD 1.4) + param(PS 6.85) + param(PD 6.85) + terminal(S 3) + terminal(G 2) + terminal(D 4) + terminal(B 6) + ) + + ) + circuit(INV2PAIR + + # Circuit boundary + rect((0 -1640) (5740 7820)) + + # Nets with their geometries + net(1 name(BULK)) + net(2 name($I6)) + net(3 name($I5)) + net(4 name($I4)) + net(5 name($I3)) + net(6 name($I2)) + net(7 name($I1)) + + # Outgoing pins and their connections to nets + pin(1 name(BULK)) + pin(2) + pin(3) + pin(4) + pin(5) + pin(6) + pin(7) + + # Subcircuits and their connections + circuit(1 INV2 location(1700 800) + pin(0 7) + pin(1 5) + pin(2 4) + pin(3 3) + pin(4 2) + pin(5 1) + ) + circuit(2 INV2 location(4340 800) + pin(0 7) + pin(1 4) + pin(2 6) + pin(3 3) + pin(4 2) + pin(5 1) + ) + + ) + circuit(RINGO + + # Circuit boundary + rect((-1720 -2440) (26880 7820)) + + # Nets with their geometries + net(1 name(FB) + rect(metal1 (-1700 1620) (360 360)) + rect(via1 (-305 -305) (250 250)) + rect(via1 (23190 -250) (250 250)) + rect(metal2 (-23765 -325) (23840 400)) + rect(metal2_lbl (-22120 -200) (0 0)) + ) + net(2 name(OSC) + rect(via1 (24435 1675) (250 250)) + rect(metal2 (-325 -325) (400 400)) + rect(metal2_lbl (-200 -200) (0 0)) + ) + net(3 name(VDD) + rect(metal1 (-180 3900) (360 1120)) + rect(metal1 (2280 -1120) (360 1120)) + rect(metal1 (2280 -1120) (360 1120)) + rect(metal1 (2280 -1120) (360 1120)) + rect(metal1 (2280 -1120) (360 1120)) + rect(metal1 (2280 -1120) (360 1120)) + rect(metal1 (2280 -1120) (360 1120)) + rect(metal1 (2280 -1120) (360 1120)) + rect(metal1 (2280 -1120) (360 1120)) + rect(metal1 (2280 -1120) (360 1120)) + rect(metal2_lbl (-23940 -2220) (0 0)) + ) + net(4 name(VSS) + rect(metal1 (-180 -2220) (360 1120)) + rect(metal1 (2280 -1120) (360 1120)) + rect(metal1 (2280 -1120) (360 1120)) + rect(metal1 (2280 -1120) (360 1120)) + rect(metal1 (2280 -1120) (360 1120)) + rect(metal1 (2280 -1120) (360 1120)) + rect(metal1 (2280 -1120) (360 1120)) + rect(metal1 (2280 -1120) (360 1120)) + rect(metal1 (2280 -1120) (360 1120)) + rect(metal1 (2280 -1120) (360 1120)) + rect(metal2_lbl (-23940 1100) (0 0)) + ) + net(5 name($I25)) + net(6 name($I24)) + net(7 name($I23)) + net(8 name($I22)) + net(9 name($I17)) + net(10 name($I16)) + net(11 name($I15)) + net(12 name($I14)) + + # Outgoing pins and their connections to nets + pin(1 name(FB)) + pin(2 name(OSC)) + pin(3 name(VDD)) + pin(4 name(VSS)) + + # Subcircuits and their connections + circuit(1 INV2PAIR location(19420 -800) + pin(0 4) + pin(1 3) + pin(2 4) + pin(3 1) + pin(4 10) + pin(5 2) + pin(6 3) + ) + circuit(2 INV2PAIR location(-1700 -800) + pin(0 4) + pin(1 3) + pin(2 4) + pin(3 8) + pin(4 1) + pin(5 9) + pin(6 3) + ) + circuit(3 INV2PAIR location(14140 -800) + pin(0 4) + pin(1 3) + pin(2 4) + pin(3 5) + pin(4 11) + pin(5 10) + pin(6 3) + ) + circuit(4 INV2PAIR location(8860 -800) + pin(0 4) + pin(1 3) + pin(2 4) + pin(3 6) + pin(4 12) + pin(5 11) + pin(6 3) + ) + circuit(5 INV2PAIR location(3580 -800) + pin(0 4) + pin(1 3) + pin(2 4) + pin(3 7) + pin(4 9) + pin(5 12) + pin(6 3) + ) + + ) +) + +# Reference netlist +reference( + + # Device class section + class(PMOS MOS4) + class(NMOS MOS4) + + # Circuit section + # Circuits are the hierarchical building blocks of the netlist. + circuit(INV2 + + # Nets + net(1 name('1')) + net(2 name('2')) + net(3 name('3')) + net(4 name('4')) + net(5 name('5')) + net(6 name('6')) + + # Outgoing pins and their connections to nets + pin(1 name('1')) + pin(2 name('2')) + pin(3 name('3')) + pin(4 name('4')) + pin(5 name('5')) + pin(6 name('6')) + + # Devices and their connections + device(1 PMOS + name($1) + param(L 0.25) + param(W 3.5) + param(AS 1.4) + param(AD 1.4) + param(PS 6.85) + param(PD 6.85) + terminal(S 5) + terminal(G 2) + terminal(D 3) + terminal(B 1) + ) + device(2 NMOS + name($3) + param(L 0.25) + param(W 3.5) + param(AS 1.4) + param(AD 1.4) + param(PS 6.85) + param(PD 6.85) + terminal(S 4) + terminal(G 2) + terminal(D 3) + terminal(B 6) + ) + + ) + circuit(INV2PAIR + + # Nets + net(1 name('1')) + net(2 name('2')) + net(3 name('3')) + net(4 name('4')) + net(5 name('5')) + net(6 name('6')) + net(7 name('7')) + + # Outgoing pins and their connections to nets + pin(1 name('1')) + pin(2 name('2')) + pin(3 name('3')) + pin(4 name('4')) + pin(5 name('5')) + pin(6 name('6')) + pin(7 name('7')) + + # Subcircuits and their connections + circuit(1 INV2 name($1) + pin(0 7) + pin(1 5) + pin(2 4) + pin(3 3) + pin(4 2) + pin(5 1) + ) + circuit(2 INV2 name($2) + pin(0 7) + pin(1 4) + pin(2 6) + pin(3 3) + pin(4 2) + pin(5 1) + ) + + ) + circuit(RINGO + + # Nets + net(1 name('1')) + net(2 name('2')) + net(3 name('3')) + net(4 name('4')) + net(5 name('6')) + net(6 name('100')) + net(7 name('5')) + net(8 name('101')) + net(9 name('8')) + net(10 name('102')) + net(11 name('7')) + net(12 name('103')) + + # Outgoing pins and their connections to nets + pin(1 name('1')) + pin(2 name('2')) + pin(3 name('3')) + pin(4 name('4')) + + # Subcircuits and their connections + circuit(1 INV2PAIR name($1) + pin(0 4) + pin(1 3) + pin(2 4) + pin(3 1) + pin(4 5) + pin(5 2) + pin(6 3) + ) + circuit(2 INV2PAIR name($2) + pin(0 4) + pin(1 3) + pin(2 4) + pin(3 6) + pin(4 1) + pin(5 7) + pin(6 3) + ) + circuit(3 INV2PAIR name($3) + pin(0 4) + pin(1 3) + pin(2 4) + pin(3 8) + pin(4 7) + pin(5 9) + pin(6 3) + ) + circuit(4 INV2PAIR name($4) + pin(0 4) + pin(1 3) + pin(2 4) + pin(3 10) + pin(4 9) + pin(5 11) + pin(6 3) + ) + circuit(5 INV2PAIR name($5) + pin(0 4) + pin(1 3) + pin(2 4) + pin(3 12) + pin(4 11) + pin(5 5) + pin(6 3) + ) + + ) +) + +# Cross reference +xref( + circuit(INV2 INV2 match + xref( + net(1 1 match) + net(6 6 match) + net(2 2 match) + net(3 3 match) + net(5 5 match) + net(4 4 match) + pin(0 0 match) + pin(5 5 match) + pin(1 1 match) + pin(2 2 match) + pin(4 4 match) + pin(3 3 match) + device(3 2 match) + device(1 1 match) + ) + ) + circuit(INV2PAIR INV2PAIR match + xref( + net(2 2 match) + net(3 3 match) + net(4 4 match) + net(5 5 match) + net(6 6 match) + net(7 7 match) + net(1 1 match) + pin(1 1 match) + pin(2 2 match) + pin(3 3 match) + pin(4 4 match) + pin(5 5 match) + pin(6 6 match) + pin(0 0 match) + circuit(1 1 match) + circuit(2 2 match) + ) + ) + circuit(RINGO RINGO match + xref( + net(8 6 match) + net(7 8 match) + net(6 10 match) + net(5 12 match) + net(9 7 match) + net(10 5 match) + net(11 11 match) + net(12 9 match) + net(1 1 match) + net(2 2 match) + net(3 3 match) + net(4 4 match) + pin(0 0 match) + pin(1 1 match) + pin(2 2 match) + pin(3 3 match) + circuit(1 1 match) + circuit(2 2 match) + circuit(5 3 match) + circuit(4 4 match) + circuit(3 5 match) + ) + ) +) diff --git a/testdata/algo/lvs_test2_au.lvsdb.2 b/testdata/algo/lvs_test2_au.lvsdb.2 new file mode 100644 index 000000000..ebdeef66b --- /dev/null +++ b/testdata/algo/lvs_test2_au.lvsdb.2 @@ -0,0 +1,677 @@ +#%lvsdb-klayout + +# Layout +layout( + top(RINGO) + unit(0.001) + + # Layer section + # This section lists the mask layers (drawing or derived) and their connections. + + # Mask layers + layer(bulk) + layer(nwell '1/0') + layer(poly '3/0') + layer(poly_lbl '3/1') + layer(diff_cont '4/0') + layer(poly_cont '5/0') + layer(metal1 '6/0') + layer(metal1_lbl '6/1') + layer(via1 '7/0') + layer(metal2 '8/0') + layer(metal2_lbl '8/1') + layer(ntie) + layer(psd) + layer(ptie) + layer(nsd) + + # Mask layer connectivity + connect(nwell nwell ntie) + connect(poly poly poly_lbl poly_cont) + connect(poly_lbl poly) + connect(diff_cont diff_cont metal1 ntie psd ptie nsd) + connect(poly_cont poly poly_cont metal1) + connect(metal1 diff_cont poly_cont metal1 metal1_lbl via1) + connect(metal1_lbl metal1) + connect(via1 metal1 via1 metal2) + connect(metal2 via1 metal2 metal2_lbl) + connect(metal2_lbl metal2) + connect(ntie nwell diff_cont ntie) + connect(psd diff_cont psd) + connect(ptie diff_cont ptie) + connect(nsd diff_cont nsd) + + # Global nets and connectivity + global(bulk BULK) + global(ptie BULK) + + # Device class section + class(PMOS MOS4) + class(NMOS MOS4) + + # Device abstracts section + # Device abstracts list the pin shapes of the devices. + device(D$PMOS PMOS + terminal(S + rect(psd (-650 -875) (525 1750)) + ) + terminal(G + rect(poly (-125 -875) (250 1750)) + ) + terminal(D + rect(psd (125 -875) (550 1750)) + ) + terminal(B + rect(nwell (-125 -875) (250 1750)) + ) + ) + device(D$PMOS$1 PMOS + terminal(S + rect(psd (-675 -875) (550 1750)) + ) + terminal(G + rect(poly (-125 -875) (250 1750)) + ) + terminal(D + rect(psd (125 -875) (525 1750)) + ) + terminal(B + rect(nwell (-125 -875) (250 1750)) + ) + ) + device(D$NMOS NMOS + terminal(S + rect(nsd (-650 -875) (525 1750)) + ) + terminal(G + rect(poly (-125 -875) (250 1750)) + ) + terminal(D + rect(nsd (125 -875) (550 1750)) + ) + terminal(B + rect(bulk (-125 -875) (250 1750)) + ) + ) + device(D$NMOS$1 NMOS + terminal(S + rect(nsd (-675 -875) (550 1750)) + ) + terminal(G + rect(poly (-125 -875) (250 1750)) + ) + terminal(D + rect(nsd (125 -875) (525 1750)) + ) + terminal(B + rect(bulk (-125 -875) (250 1750)) + ) + ) + + # Circuit section + # Circuits are the hierarchical building blocks of the netlist. + circuit(INV2 + + # Circuit boundary + rect((-1700 -2440) (3100 7820)) + + # Nets with their geometries + net(1 name($1) + rect(nwell (-1400 1800) (2800 3580)) + rect(diff_cont (-1510 -650) (220 220)) + rect(ntie (-510 -450) (800 680)) + ) + net(2 name(IN) + rect(poly (-525 -250) (250 2500)) + rect(poly (-1425 -630) (2100 360)) + rect(poly (-125 -2230) (250 2500)) + rect(poly (-1050 -3850) (250 2400)) + rect(poly (550 1200) (250 2400)) + rect(poly (-250 -6000) (250 2400)) + rect(poly (-1050 1200) (250 2400)) + rect(poly_lbl (-525 -2600) (0 0)) + rect(poly_cont (-830 -110) (220 220)) + ) + net(3 name(OUT) + rect(diff_cont (-910 90) (220 220)) + rect(diff_cont (-220 -620) (220 220)) + rect(diff_cont (-220 -620) (220 220)) + rect(diff_cont (-220 -620) (220 220)) + rect(diff_cont (1380 3380) (220 220)) + rect(diff_cont (-220 180) (220 220)) + rect(diff_cont (-220 180) (220 220)) + rect(diff_cont (-220 180) (220 220)) + rect(diff_cont (-220 -3820) (220 220)) + rect(diff_cont (-220 -620) (220 220)) + rect(diff_cont (-220 -620) (220 220)) + rect(diff_cont (-220 -620) (220 220)) + rect(diff_cont (-1820 3380) (220 220)) + rect(diff_cont (-220 180) (220 220)) + rect(diff_cont (-220 180) (220 220)) + rect(diff_cont (-220 180) (220 220)) + rect(metal1 (1310 -3710) (360 2220)) + rect(metal1 (-1900 -800) (2220 360)) + rect(metal1 (-2280 -2400) (360 2840)) + rect(metal1 (-360 -3600) (360 1560)) + rect(metal1 (1240 2040) (360 1560)) + rect(metal1 (-360 -5160) (360 1560)) + rect(metal1 (-1960 2040) (360 1560)) + rect(metal1_lbl (1420 -2180) (0 0)) + rect(psd (-1850 525) (525 1750)) + rect(psd (1050 -1750) (525 1750)) + rect(nsd (-2100 -5350) (525 1750)) + rect(nsd (1050 -1750) (525 1750)) + ) + net(4 name(VSS) + rect(diff_cont (-110 90) (220 220)) + rect(diff_cont (-220 -620) (220 220)) + rect(diff_cont (-220 -620) (220 220)) + rect(diff_cont (-220 -620) (220 220)) + rect(diff_cont (-220 980) (220 220)) + rect(diff_cont (-220 -620) (220 220)) + rect(diff_cont (-220 -620) (220 220)) + rect(diff_cont (-220 -620) (220 220)) + rect(metal1 (-290 -290) (360 1560)) + rect(metal1 (-360 -1560) (360 1560)) + rect(via1 (-305 -705) (250 250)) + rect(via1 (-250 150) (250 250)) + rect(via1 (-250 -1450) (250 250)) + rect(via1 (-250 150) (250 250)) + rect(metal2 (-1525 -775) (2800 1700)) + rect(metal2_lbl (-160 -540) (0 0)) + rect(nsd (-1515 -1185) (550 1750)) + ) + net(5 name(VDD) + rect(diff_cont (-110 2490) (220 220)) + rect(diff_cont (-220 180) (220 220)) + rect(diff_cont (-220 180) (220 220)) + rect(diff_cont (-220 180) (220 220)) + rect(diff_cont (-220 -1420) (220 220)) + rect(diff_cont (-220 180) (220 220)) + rect(diff_cont (-220 180) (220 220)) + rect(diff_cont (-220 180) (220 220)) + rect(metal1 (-290 -1490) (360 1560)) + rect(metal1 (-360 -1560) (360 1560)) + rect(via1 (-305 -1505) (250 250)) + rect(via1 (-250 150) (250 250)) + rect(via1 (-250 150) (250 250)) + rect(via1 (-250 150) (250 250)) + rect(metal2 (-1525 -1575) (2800 1700)) + rect(metal2_lbl (-150 -1250) (0 0)) + rect(psd (-1525 -475) (550 1750)) + ) + net(6 name(BULK) + rect(diff_cont (-110 -2160) (220 220)) + rect(ptie (-510 -450) (800 680)) + ) + + # Outgoing pins and their connections to nets + pin(1) + pin(2 name(IN)) + pin(3 name(OUT)) + pin(4 name(VSS)) + pin(5 name(VDD)) + pin(6 name(BULK)) + + # Devices and their connections + device(1 D$PMOS + device(D$PMOS$1 location(800 0)) + connect(0 S S) + connect(1 S D) + connect(0 G G) + connect(1 G G) + connect(0 D D) + connect(1 D S) + connect(0 B B) + connect(1 B B) + location(-400 3200) + param(L 0.25) + param(W 3.5) + param(AS 1.4) + param(AD 1.4) + param(PS 6.85) + param(PD 6.85) + terminal(S 3) + terminal(G 2) + terminal(D 5) + terminal(B 1) + ) + device(3 D$NMOS + device(D$NMOS$1 location(800 0)) + connect(0 S S) + connect(1 S D) + connect(0 G G) + connect(1 G G) + connect(0 D D) + connect(1 D S) + connect(0 B B) + connect(1 B B) + location(-400 -400) + param(L 0.25) + param(W 3.5) + param(AS 1.4) + param(AD 1.4) + param(PS 6.85) + param(PD 6.85) + terminal(S 3) + terminal(G 2) + terminal(D 4) + terminal(B 6) + ) + + ) + circuit(INV2PAIR + + # Circuit boundary + rect((0 -1640) (5740 7820)) + + # Nets with their geometries + net(1 name(BULK)) + net(2 name($I6)) + net(3 name($I5)) + net(4 name($I4)) + net(5 name($I3)) + net(6 name($I2)) + net(7 name($I1)) + + # Outgoing pins and their connections to nets + pin(1 name(BULK)) + pin(2) + pin(3) + pin(4) + pin(5) + pin(6) + pin(7) + + # Subcircuits and their connections + circuit(1 INV2 location(1700 800) + pin(0 7) + pin(1 5) + pin(2 4) + pin(3 3) + pin(4 2) + pin(5 1) + ) + circuit(2 INV2 location(4340 800) + pin(0 7) + pin(1 4) + pin(2 6) + pin(3 3) + pin(4 2) + pin(5 1) + ) + + ) + circuit(RINGO + + # Circuit boundary + rect((-1720 -2440) (26880 7820)) + + # Nets with their geometries + net(1 name(FB) + rect(metal1 (-1700 1620) (360 360)) + rect(via1 (-305 -305) (250 250)) + rect(via1 (23190 -250) (250 250)) + rect(metal2 (-23765 -325) (23840 400)) + rect(metal2_lbl (-22120 -200) (0 0)) + ) + net(2 name(OSC) + rect(via1 (24435 1675) (250 250)) + rect(metal2 (-325 -325) (400 400)) + rect(metal2_lbl (-200 -200) (0 0)) + ) + net(3 name(VDD) + rect(metal1 (-180 3900) (360 1120)) + rect(metal1 (2280 -1120) (360 1120)) + rect(metal1 (2280 -1120) (360 1120)) + rect(metal1 (2280 -1120) (360 1120)) + rect(metal1 (2280 -1120) (360 1120)) + rect(metal1 (2280 -1120) (360 1120)) + rect(metal1 (2280 -1120) (360 1120)) + rect(metal1 (2280 -1120) (360 1120)) + rect(metal1 (2280 -1120) (360 1120)) + rect(metal1 (2280 -1120) (360 1120)) + rect(metal2_lbl (-23940 -2220) (0 0)) + ) + net(4 name(VSS) + rect(metal1 (-180 -2220) (360 1120)) + rect(metal1 (2280 -1120) (360 1120)) + rect(metal1 (2280 -1120) (360 1120)) + rect(metal1 (2280 -1120) (360 1120)) + rect(metal1 (2280 -1120) (360 1120)) + rect(metal1 (2280 -1120) (360 1120)) + rect(metal1 (2280 -1120) (360 1120)) + rect(metal1 (2280 -1120) (360 1120)) + rect(metal1 (2280 -1120) (360 1120)) + rect(metal1 (2280 -1120) (360 1120)) + rect(metal2_lbl (-23940 1100) (0 0)) + ) + net(5 name($I25)) + net(6 name($I24)) + net(7 name($I23)) + net(8 name($I22)) + net(9 name($I17)) + net(10 name($I16)) + net(11 name($I15)) + net(12 name($I14)) + + # Outgoing pins and their connections to nets + pin(1 name(FB)) + pin(2 name(OSC)) + pin(3 name(VDD)) + pin(4 name(VSS)) + + # Subcircuits and their connections + circuit(1 INV2PAIR location(19420 -800) + pin(0 4) + pin(1 3) + pin(2 4) + pin(3 1) + pin(4 10) + pin(5 2) + pin(6 3) + ) + circuit(2 INV2PAIR location(-1700 -800) + pin(0 4) + pin(1 3) + pin(2 4) + pin(3 8) + pin(4 1) + pin(5 9) + pin(6 3) + ) + circuit(3 INV2PAIR location(14140 -800) + pin(0 4) + pin(1 3) + pin(2 4) + pin(3 5) + pin(4 11) + pin(5 10) + pin(6 3) + ) + circuit(4 INV2PAIR location(8860 -800) + pin(0 4) + pin(1 3) + pin(2 4) + pin(3 6) + pin(4 12) + pin(5 11) + pin(6 3) + ) + circuit(5 INV2PAIR location(3580 -800) + pin(0 4) + pin(1 3) + pin(2 4) + pin(3 7) + pin(4 9) + pin(5 12) + pin(6 3) + ) + + ) +) + +# Reference netlist +reference( + + # Device class section + class(PMOS MOS4) + class(NMOS MOS4) + + # Circuit section + # Circuits are the hierarchical building blocks of the netlist. + circuit(INV2 + + # Nets + net(1 name('1')) + net(2 name('2')) + net(3 name('3')) + net(4 name('4')) + net(5 name('5')) + net(6 name('6')) + + # Outgoing pins and their connections to nets + pin(1 name('1')) + pin(2 name('2')) + pin(3 name('3')) + pin(4 name('4')) + pin(5 name('5')) + pin(6 name('6')) + + # Devices and their connections + device(1 PMOS + name($1) + param(L 0.25) + param(W 3.5) + param(AS 1.4) + param(AD 1.4) + param(PS 6.85) + param(PD 6.85) + terminal(S 5) + terminal(G 2) + terminal(D 3) + terminal(B 1) + ) + device(2 NMOS + name($3) + param(L 0.25) + param(W 3.5) + param(AS 1.4) + param(AD 1.4) + param(PS 6.85) + param(PD 6.85) + terminal(S 4) + terminal(G 2) + terminal(D 3) + terminal(B 6) + ) + + ) + circuit(INV2PAIR + + # Nets + net(1 name('1')) + net(2 name('2')) + net(3 name('3')) + net(4 name('4')) + net(5 name('5')) + net(6 name('6')) + net(7 name('7')) + + # Outgoing pins and their connections to nets + pin(1 name('1')) + pin(2 name('2')) + pin(3 name('3')) + pin(4 name('4')) + pin(5 name('5')) + pin(6 name('6')) + pin(7 name('7')) + + # Subcircuits and their connections + circuit(1 INV2 name($2) + pin(0 7) + pin(1 4) + pin(2 6) + pin(3 3) + pin(4 2) + pin(5 1) + ) + + ) + circuit(INV2PAIRX + + # Nets + net(1 name('1')) + net(2 name('2')) + net(3 name('3')) + net(4 name('4')) + net(5 name('5')) + net(6 name('6')) + net(7 name('7')) + + # Outgoing pins and their connections to nets + pin(1 name('1')) + pin(2 name('2')) + pin(3 name('3')) + pin(4 name('4')) + pin(5 name('5')) + pin(6 name('6')) + pin(7 name('7')) + + # Subcircuits and their connections + circuit(1 INV2 name($2) + pin(0 7) + pin(1 4) + pin(2 6) + pin(3 3) + pin(4 2) + pin(5 1) + ) + + ) + circuit(RINGO + + # Nets + net(1 name('1')) + net(2 name('2')) + net(3 name('3')) + net(4 name('4')) + net(5 name('6')) + net(6 name('5')) + net(7 name('101')) + net(8 name('8')) + net(9 name('102')) + net(10 name('7')) + net(11 name('103')) + + # Outgoing pins and their connections to nets + pin(1 name('1')) + pin(2 name('2')) + pin(3 name('3')) + pin(4 name('4')) + + # Subcircuits and their connections + circuit(1 INV2PAIR name($1) + pin(0 4) + pin(1 3) + pin(2 4) + pin(3 1) + pin(4 5) + pin(5 2) + pin(6 3) + ) + circuit(2 INV2PAIR name($2) + pin(0 4) + pin(1 3) + pin(2 4) + pin(3 1) + pin(4 1) + pin(5 6) + pin(6 3) + ) + circuit(3 INV2PAIR name($3) + pin(0 4) + pin(1 3) + pin(2 4) + pin(3 7) + pin(4 6) + pin(5 8) + pin(6 3) + ) + circuit(4 INV2PAIR name($4) + pin(0 4) + pin(1 3) + pin(2 4) + pin(3 9) + pin(4 8) + pin(5 10) + pin(6 3) + ) + circuit(5 INV2PAIR name($5) + pin(0 4) + pin(1 3) + pin(2 4) + pin(3 11) + pin(4 10) + pin(5 5) + pin(6 3) + ) + + ) +) + +# Cross reference +xref( + circuit(() INV2PAIRX mismatch + xref( + ) + ) + circuit(INV2 INV2 match + xref( + net(1 1 match) + net(6 6 match) + net(2 2 match) + net(3 3 match) + net(5 5 match) + net(4 4 match) + pin(0 0 match) + pin(5 5 match) + pin(1 1 match) + pin(2 2 match) + pin(4 4 match) + pin(3 3 match) + device(3 2 match) + device(1 1 match) + ) + ) + circuit(INV2PAIR INV2PAIR nomatch + xref( + net(2 2 mismatch) + net(3 3 mismatch) + net(4 4 mismatch) + net(5 5 mismatch) + net(6 6 match) + net(7 7 mismatch) + net(1 1 mismatch) + pin(1 1 match) + pin(2 2 match) + pin(3 3 match) + pin(4 4 match) + pin(5 5 match) + pin(6 6 match) + pin(0 0 match) + circuit(1 () mismatch) + circuit(2 1 match) + ) + ) + circuit(RINGO RINGO nomatch + log( + entry(error description('Net $I22 is not matching any net from reference netlist')) + entry(error description('Net FB is not matching any net from reference netlist')) + ) + xref( + net(8 () mismatch) + net(7 7 match) + net(6 9 match) + net(5 11 match) + net(9 6 match) + net(10 5 match) + net(11 10 match) + net(12 8 match) + net(1 1 mismatch) + net(2 2 match) + net(3 3 match) + net(4 4 match) + pin(0 0 match) + pin(1 1 match) + pin(2 2 match) + pin(3 3 match) + circuit(() 2 mismatch) + circuit(2 () mismatch) + circuit(1 1 match) + circuit(5 3 match) + circuit(4 4 match) + circuit(3 5 match) + ) + ) +) diff --git a/testdata/lvs/ringo_device_subcircuits.lvsdb.2 b/testdata/lvs/ringo_device_subcircuits.lvsdb.2 new file mode 100644 index 000000000..4cd7c290c --- /dev/null +++ b/testdata/lvs/ringo_device_subcircuits.lvsdb.2 @@ -0,0 +1,908 @@ +#%lvsdb-klayout + +# Layout +layout( + top(RINGO) + unit(0.001) + + # Layer section + # This section lists the mask layers (drawing or derived) and their connections. + + # Mask layers + layer(l3 '1/0') + layer(l4 '5/0') + layer(l8 '8/0') + layer(l11 '9/0') + layer(l12 '10/0') + layer(l13 '11/0') + layer(l7) + layer(l2) + layer(l9) + layer(l6) + layer(l10) + + # Mask layer connectivity + connect(l3 l3 l9) + connect(l4 l4 l8) + connect(l8 l4 l8 l11 l2 l9 l6 l10) + connect(l11 l8 l11 l12) + connect(l12 l11 l12 l13) + connect(l13 l12 l13) + connect(l7 l7) + connect(l2 l8 l2) + connect(l9 l3 l8 l9) + connect(l6 l8 l6) + connect(l10 l8 l10) + + # Global nets and connectivity + global(l7 SUBSTRATE) + global(l10 SUBSTRATE) + + # Device class section + class(PMOS MOS4) + class(NMOS MOS4) + + # Device abstracts section + # Device abstracts list the pin shapes of the devices. + device(D$PMOS PMOS + terminal(S + rect(l2 (-550 -750) (425 1500)) + ) + terminal(G + rect(l4 (-125 -750) (250 1500)) + ) + terminal(D + rect(l2 (125 -750) (450 1500)) + ) + terminal(B + rect(l3 (-125 -750) (250 1500)) + ) + ) + device(D$PMOS$1 PMOS + terminal(S + rect(l2 (-575 -750) (450 1500)) + ) + terminal(G + rect(l4 (-125 -750) (250 1500)) + ) + terminal(D + rect(l2 (125 -750) (425 1500)) + ) + terminal(B + rect(l3 (-125 -750) (250 1500)) + ) + ) + device(D$PMOS$2 PMOS + terminal(S + rect(l2 (-550 -750) (425 1500)) + ) + terminal(G + rect(l4 (-125 -750) (250 1500)) + ) + terminal(D + rect(l2 (125 -750) (425 1500)) + ) + terminal(B + rect(l3 (-125 -750) (250 1500)) + ) + ) + device(D$NMOS NMOS + terminal(S + rect(l6 (-550 -475) (425 950)) + ) + terminal(G + rect(l4 (-125 -475) (250 950)) + ) + terminal(D + rect(l6 (125 -475) (450 950)) + ) + terminal(B + rect(l7 (-125 -475) (250 950)) + ) + ) + device(D$NMOS$1 NMOS + terminal(S + rect(l6 (-575 -475) (450 950)) + ) + terminal(G + rect(l4 (-125 -475) (250 950)) + ) + terminal(D + rect(l6 (125 -475) (425 950)) + ) + terminal(B + rect(l7 (-125 -475) (250 950)) + ) + ) + device(D$NMOS$2 NMOS + terminal(S + rect(l6 (-550 -475) (425 950)) + ) + terminal(G + rect(l4 (-125 -475) (250 950)) + ) + terminal(D + rect(l6 (125 -475) (425 950)) + ) + terminal(B + rect(l7 (-125 -475) (250 950)) + ) + ) + + # Circuit section + # Circuits are the hierarchical building blocks of the netlist. + circuit(ND2X1 + + # Circuit boundary + rect((-100 400) (2600 7600)) + + # Nets with their geometries + net(1 name(VDD) + rect(l8 (1110 5160) (180 180)) + rect(l8 (-180 920) (180 180)) + rect(l8 (-180 -730) (180 180)) + rect(l11 (-240 -790) (300 1700)) + rect(l11 (-1350 0) (2400 800)) + rect(l11 (-1150 -400) (0 0)) + rect(l2 (-275 -2150) (425 1500)) + rect(l2 (-400 -1500) (425 1500)) + ) + net(2 name(OUT) + rect(l8 (1810 1770) (180 180)) + rect(l8 (-180 370) (180 180)) + rect(l8 (-1580 3760) (180 180)) + rect(l8 (-180 -730) (180 180)) + rect(l8 (-180 -730) (180 180)) + rect(l8 (1220 920) (180 180)) + rect(l8 (-180 -1280) (180 180)) + rect(l8 (-180 370) (180 180)) + polygon(l11 (-240 -4180) (0 1390) (490 0) (0 -300) (-190 0) (0 -1090)) + rect(l11 (-110 1390) (300 1400)) + polygon(l11 (-1890 0) (0 600) (300 0) (0 -300) (1590 0) (0 -300)) + rect(l11 (-140 -500) (0 0)) + rect(l11 (-1750 1100) (300 1400)) + rect(l11 (1100 -1700) (300 300)) + rect(l11 (-300 0) (300 1400)) + rect(l2 (-375 -1450) (425 1500)) + rect(l2 (-1800 -1500) (425 1500)) + rect(l6 (950 -4890) (425 950)) + ) + net(3 name(VSS) + rect(l8 (410 1770) (180 180)) + rect(l8 (-180 370) (180 180)) + rect(l11 (-240 -1300) (300 1360)) + rect(l11 (-650 -2160) (2400 800)) + rect(l11 (-1150 -400) (0 0)) + rect(l6 (-950 860) (425 950)) + ) + net(4 name($4) + rect(l3 (-100 4500) (2600 3500)) + ) + net(5 name(B) + rect(l4 (1425 2860) (250 1940)) + rect(l4 (-345 -950) (300 300)) + rect(l4 (-205 650) (250 2000)) + rect(l4 (-250 -2000) (250 2000)) + rect(l4 (-250 -5390) (250 1450)) + rect(l8 (-285 1050) (180 180)) + rect(l11 (-70 -90) (0 0)) + rect(l11 (-170 -150) (300 300)) + ) + net(6 name(A) + rect(l4 (725 2860) (250 1940)) + rect(l4 (-325 -1850) (300 300)) + rect(l4 (-225 1550) (250 2000)) + rect(l4 (-250 -2000) (250 2000)) + rect(l4 (-250 -5390) (250 1450)) + rect(l8 (-265 150) (180 180)) + rect(l11 (-90 -90) (0 0)) + rect(l11 (-150 -150) (300 300)) + ) + net(7 name(SUBSTRATE)) + net(8 name($I5) + rect(l6 (975 1660) (425 950)) + rect(l6 (-400 -950) (425 950)) + ) + + # Outgoing pins and their connections to nets + pin(1 name(VDD)) + pin(2 name(OUT)) + pin(3 name(VSS)) + pin(4) + pin(5 name(B)) + pin(6 name(A)) + pin(7 name(SUBSTRATE)) + + # Devices and their connections + device(1 D$PMOS + location(850 5800) + param(L 0.25) + param(W 1.5) + param(AS 0.6375) + param(AD 0.3375) + param(PS 3.85) + param(PD 1.95) + terminal(S 2) + terminal(G 6) + terminal(D 1) + terminal(B 4) + ) + device(2 D$PMOS$1 + location(1550 5800) + param(L 0.25) + param(W 1.5) + param(AS 0.3375) + param(AD 0.6375) + param(PS 1.95) + param(PD 3.85) + terminal(S 1) + terminal(G 5) + terminal(D 2) + terminal(B 4) + ) + device(3 D$NMOS + location(850 2135) + param(L 0.25) + param(W 0.95) + param(AS 0.40375) + param(AD 0.21375) + param(PS 2.75) + param(PD 1.4) + terminal(S 3) + terminal(G 6) + terminal(D 8) + terminal(B 7) + ) + device(4 D$NMOS$1 + location(1550 2135) + param(L 0.25) + param(W 0.95) + param(AS 0.21375) + param(AD 0.40375) + param(PS 1.4) + param(PD 2.75) + terminal(S 8) + terminal(G 5) + terminal(D 2) + terminal(B 7) + ) + + ) + circuit(INVX1 + + # Circuit boundary + rect((-100 400) (2000 7600)) + + # Nets with their geometries + net(1 name(VDD) + rect(l8 (410 6260) (180 180)) + rect(l8 (-180 -730) (180 180)) + rect(l8 (-180 -730) (180 180)) + rect(l11 (-240 -240) (300 1400)) + rect(l11 (-650 300) (1800 800)) + rect(l11 (-1450 -1100) (300 300)) + rect(l11 (300 400) (0 0)) + rect(l2 (-650 -2150) (425 1500)) + ) + net(2 name(OUT) + rect(l8 (1110 5160) (180 180)) + rect(l8 (-180 920) (180 180)) + rect(l8 (-180 -730) (180 180)) + rect(l8 (-180 -4120) (180 180)) + rect(l8 (-180 370) (180 180)) + rect(l11 (-240 -790) (300 4790)) + rect(l11 (-150 -2500) (0 0)) + rect(l2 (-225 1050) (425 1500)) + rect(l6 (-425 -4890) (425 950)) + ) + net(3 name(VSS) + rect(l8 (410 1770) (180 180)) + rect(l8 (-180 370) (180 180)) + rect(l11 (-240 -1300) (300 1360)) + rect(l11 (-650 -2160) (1800 800)) + rect(l11 (-850 -400) (0 0)) + rect(l6 (-650 860) (425 950)) + ) + net(4 name($4) + rect(l3 (-100 4500) (2000 3500)) + ) + net(5 name(IN) + rect(l4 (725 2860) (250 1940)) + rect(l4 (-525 -1850) (300 300)) + rect(l4 (-25 1550) (250 2000)) + rect(l4 (-250 -2000) (250 2000)) + rect(l4 (-250 -5390) (250 1450)) + rect(l8 (-465 150) (180 180)) + rect(l11 (-90 -90) (0 0)) + rect(l11 (-150 -150) (300 300)) + ) + net(6 name(SUBSTRATE)) + + # Outgoing pins and their connections to nets + pin(1 name(VDD)) + pin(2 name(OUT)) + pin(3 name(VSS)) + pin(4) + pin(5 name(IN)) + pin(6 name(SUBSTRATE)) + + # Devices and their connections + device(1 D$PMOS$2 + location(850 5800) + param(L 0.25) + param(W 1.5) + param(AS 0.6375) + param(AD 0.6375) + param(PS 3.85) + param(PD 3.85) + terminal(S 1) + terminal(G 5) + terminal(D 2) + terminal(B 4) + ) + device(2 D$NMOS$2 + location(850 2135) + param(L 0.25) + param(W 0.95) + param(AS 0.40375) + param(AD 0.40375) + param(PS 2.75) + param(PD 2.75) + terminal(S 3) + terminal(G 5) + terminal(D 2) + terminal(B 6) + ) + + ) + circuit(RINGO + + # Circuit boundary + rect((0 350) (25800 7650)) + + # Nets with their geometries + net(1 name($1) + rect(l11 (4040 2950) (610 300)) + ) + net(2 name($2) + rect(l11 (5550 2950) (900 300)) + ) + net(3 name($3) + rect(l11 (7350 2950) (900 300)) + ) + net(4 name($4) + rect(l11 (9150 2950) (900 300)) + ) + net(5 name($5) + rect(l11 (10950 2950) (900 300)) + ) + net(6 name($6) + rect(l11 (12750 2950) (900 300)) + ) + net(7 name($7) + rect(l11 (14550 2950) (900 300)) + ) + net(8 name($8) + rect(l11 (16350 2950) (900 300)) + ) + net(9 name($9) + rect(l11 (18150 2950) (900 300)) + ) + net(10 name($10) + rect(l11 (19950 2950) (900 300)) + ) + net(11 name(FB) + rect(l11 (21750 2950) (900 300)) + rect(l11 (-19530 590) (320 320)) + rect(l11 (17820 -320) (320 320)) + rect(l12 (-18400 -260) (200 200)) + rect(l12 (17940 -200) (200 200)) + rect(l13 (-18040 -300) (17740 400)) + rect(l13 (-17920 -200) (0 0)) + rect(l13 (-220 -200) (400 400)) + rect(l13 (17740 -400) (400 400)) + ) + net(12 name(VDD) + rect(l3 (0 4500) (600 3500)) + rect(l3 (23300 -3500) (1400 3500)) + rect(l3 (-100 -3500) (600 3500)) + rect(l3 (-25300 -3500) (1400 3500)) + rect(l8 (22610 -1240) (180 180)) + rect(l8 (-180 370) (180 180)) + rect(l8 (-180 -1280) (180 180)) + rect(l8 (-23580 370) (180 180)) + rect(l8 (-180 370) (180 180)) + rect(l8 (-180 -1280) (180 180)) + rect(l11 (1660 860) (0 0)) + rect(l11 (-2950 -450) (600 800)) + rect(l11 (23400 -800) (1200 800)) + rect(l11 (-750 -1450) (300 1400)) + rect(l11 (-100 -350) (0 0)) + rect(l11 (550 -400) (600 800)) + rect(l11 (-25200 -800) (1200 800)) + rect(l11 (-750 -1450) (300 1400)) + rect(l11 (-100 -350) (0 0)) + rect(l9 (23100 -1100) (500 1500)) + rect(l9 (-23900 -1500) (500 1500)) + ) + net(13 name(OUT) + rect(l11 (23440 3840) (320 320)) + rect(l12 (-260 -260) (200 200)) + rect(l13 (-100 -100) (0 0)) + rect(l13 (-200 -200) (400 400)) + ) + net(14 name(ENABLE) + rect(l11 (2440 2940) (320 320)) + rect(l12 (-260 -260) (200 200)) + rect(l13 (-100 -100) (0 0)) + rect(l13 (-200 -200) (400 400)) + ) + net(15 name(VSS) + rect(l8 (24510 1610) (180 180)) + rect(l8 (-180 -1280) (180 180)) + rect(l8 (-180 370) (180 180)) + rect(l8 (-23580 370) (180 180)) + rect(l8 (-180 -1280) (180 180)) + rect(l8 (-180 370) (180 180)) + rect(l11 (1660 -390) (0 0)) + rect(l11 (21500 -400) (300 1400)) + rect(l11 (-750 -1450) (1200 800)) + rect(l11 (-550 -400) (0 0)) + rect(l11 (550 -400) (600 800)) + rect(l11 (-25800 -800) (600 800)) + rect(l11 (450 -750) (300 1400)) + rect(l11 (-750 -1450) (1200 800)) + rect(l11 (-550 -400) (0 0)) + rect(l10 (23100 -400) (500 1500)) + rect(l10 (-23900 -1500) (500 1500)) + ) + + # Outgoing pins and their connections to nets + pin(11 name(FB)) + pin(12 name(VDD)) + pin(13 name(OUT)) + pin(14 name(ENABLE)) + pin(15 name(VSS)) + + # Subcircuits and their connections + circuit(1 ND2X1 location(1800 0) + pin(0 12) + pin(1 1) + pin(2 15) + pin(3 12) + pin(4 11) + pin(5 14) + pin(6 15) + ) + circuit(2 INVX1 location(4200 0) + pin(0 12) + pin(1 2) + pin(2 15) + pin(3 12) + pin(4 1) + pin(5 15) + ) + circuit(3 INVX1 location(6000 0) + pin(0 12) + pin(1 3) + pin(2 15) + pin(3 12) + pin(4 2) + pin(5 15) + ) + circuit(4 INVX1 location(7800 0) + pin(0 12) + pin(1 4) + pin(2 15) + pin(3 12) + pin(4 3) + pin(5 15) + ) + circuit(5 INVX1 location(9600 0) + pin(0 12) + pin(1 5) + pin(2 15) + pin(3 12) + pin(4 4) + pin(5 15) + ) + circuit(6 INVX1 location(11400 0) + pin(0 12) + pin(1 6) + pin(2 15) + pin(3 12) + pin(4 5) + pin(5 15) + ) + circuit(7 INVX1 location(13200 0) + pin(0 12) + pin(1 7) + pin(2 15) + pin(3 12) + pin(4 6) + pin(5 15) + ) + circuit(8 INVX1 location(15000 0) + pin(0 12) + pin(1 8) + pin(2 15) + pin(3 12) + pin(4 7) + pin(5 15) + ) + circuit(9 INVX1 location(16800 0) + pin(0 12) + pin(1 9) + pin(2 15) + pin(3 12) + pin(4 8) + pin(5 15) + ) + circuit(10 INVX1 location(18600 0) + pin(0 12) + pin(1 10) + pin(2 15) + pin(3 12) + pin(4 9) + pin(5 15) + ) + circuit(11 INVX1 location(20400 0) + pin(0 12) + pin(1 11) + pin(2 15) + pin(3 12) + pin(4 10) + pin(5 15) + ) + circuit(12 INVX1 location(22200 0) + pin(0 12) + pin(1 13) + pin(2 15) + pin(3 12) + pin(4 11) + pin(5 15) + ) + + ) +) + +# Reference netlist +reference( + + # Device class section + class(XPMOS MOS4) + class(NMOS MOS4) + + # Circuit section + # Circuits are the hierarchical building blocks of the netlist. + circuit(ND2X1 + + # Nets + net(1 name(VDD)) + net(2 name(OUT)) + net(3 name(VSS)) + net(4 name(NWELL)) + net(5 name(B)) + net(6 name(A)) + net(7 name(BULK)) + net(8 name('1')) + + # Outgoing pins and their connections to nets + pin(1 name(VDD)) + pin(2 name(OUT)) + pin(3 name(VSS)) + pin(4 name(NWELL)) + pin(5 name(B)) + pin(6 name(A)) + pin(7 name(BULK)) + + # Devices and their connections + device(1 XPMOS + name($1) + param(L 0.25) + param(W 1.5) + param(AS 0) + param(AD 0) + param(PS 0) + param(PD 0) + terminal(S 2) + terminal(G 6) + terminal(D 1) + terminal(B 4) + ) + device(2 XPMOS + name($2) + param(L 0.25) + param(W 1.5) + param(AS 0) + param(AD 0) + param(PS 0) + param(PD 0) + terminal(S 1) + terminal(G 5) + terminal(D 2) + terminal(B 4) + ) + device(3 NMOS + name($3) + param(L 0.25) + param(W 0.95) + param(AS 0) + param(AD 0) + param(PS 0) + param(PD 0) + terminal(S 3) + terminal(G 6) + terminal(D 8) + terminal(B 7) + ) + device(4 NMOS + name($4) + param(L 0.25) + param(W 0.95) + param(AS 0) + param(AD 0) + param(PS 0) + param(PD 0) + terminal(S 8) + terminal(G 5) + terminal(D 2) + terminal(B 7) + ) + + ) + circuit(INVX1 + + # Nets + net(1 name(VDD)) + net(2 name(OUT)) + net(3 name(VSS)) + net(4 name(NWELL)) + net(5 name(IN)) + net(6 name(BULK)) + + # Outgoing pins and their connections to nets + pin(1 name(VDD)) + pin(2 name(OUT)) + pin(3 name(VSS)) + pin(4 name(NWELL)) + pin(5 name(IN)) + pin(6 name(BULK)) + + # Devices and their connections + device(1 XPMOS + name($1) + param(L 0.25) + param(W 1.5) + param(AS 0) + param(AD 0) + param(PS 0) + param(PD 0) + terminal(S 1) + terminal(G 5) + terminal(D 2) + terminal(B 4) + ) + device(2 NMOS + name($2) + param(L 0.25) + param(W 0.95) + param(AS 0) + param(AD 0) + param(PS 0) + param(PD 0) + terminal(S 3) + terminal(G 5) + terminal(D 2) + terminal(B 6) + ) + + ) + circuit(RINGO + + # Nets + net(1 name(VSS)) + net(2 name(VDD)) + net(3 name(FB)) + net(4 name(ENABLE)) + net(5 name(OUT)) + net(6 name('1')) + net(7 name('2')) + net(8 name('3')) + net(9 name('4')) + net(10 name('5')) + net(11 name('6')) + net(12 name('7')) + net(13 name('8')) + net(14 name('9')) + net(15 name('10')) + + # Outgoing pins and their connections to nets + pin(1 name(VSS)) + pin(2 name(VDD)) + pin(3 name(FB)) + pin(4 name(ENABLE)) + pin(5 name(OUT)) + + # Subcircuits and their connections + circuit(1 ND2X1 name($1) + pin(0 2) + pin(1 6) + pin(2 1) + pin(3 2) + pin(4 3) + pin(5 4) + pin(6 1) + ) + circuit(2 INVX1 name($2) + pin(0 2) + pin(1 7) + pin(2 1) + pin(3 2) + pin(4 6) + pin(5 1) + ) + circuit(3 INVX1 name($3) + pin(0 2) + pin(1 8) + pin(2 1) + pin(3 2) + pin(4 7) + pin(5 1) + ) + circuit(4 INVX1 name($4) + pin(0 2) + pin(1 9) + pin(2 1) + pin(3 2) + pin(4 8) + pin(5 1) + ) + circuit(5 INVX1 name($5) + pin(0 2) + pin(1 10) + pin(2 1) + pin(3 2) + pin(4 9) + pin(5 1) + ) + circuit(6 INVX1 name($6) + pin(0 2) + pin(1 11) + pin(2 1) + pin(3 2) + pin(4 10) + pin(5 1) + ) + circuit(7 INVX1 name($7) + pin(0 2) + pin(1 12) + pin(2 1) + pin(3 2) + pin(4 11) + pin(5 1) + ) + circuit(8 INVX1 name($8) + pin(0 2) + pin(1 13) + pin(2 1) + pin(3 2) + pin(4 12) + pin(5 1) + ) + circuit(9 INVX1 name($9) + pin(0 2) + pin(1 14) + pin(2 1) + pin(3 2) + pin(4 13) + pin(5 1) + ) + circuit(10 INVX1 name($10) + pin(0 2) + pin(1 15) + pin(2 1) + pin(3 2) + pin(4 14) + pin(5 1) + ) + circuit(11 INVX1 name($11) + pin(0 2) + pin(1 3) + pin(2 1) + pin(3 2) + pin(4 15) + pin(5 1) + ) + circuit(12 INVX1 name($12) + pin(0 2) + pin(1 5) + pin(2 1) + pin(3 2) + pin(4 3) + pin(5 1) + ) + + ) +) + +# Cross reference +xref( + circuit(INVX1 INVX1 match + xref( + net(4 4 match) + net(5 5 match) + net(2 2 match) + net(6 6 match) + net(1 1 match) + net(3 3 match) + pin(3 3 match) + pin(4 4 match) + pin(1 1 match) + pin(5 5 match) + pin(0 0 match) + pin(2 2 match) + device(2 2 match) + device(1 1 match) + ) + ) + circuit(ND2X1 ND2X1 match + xref( + net(8 8 match) + net(4 4 match) + net(6 6 match) + net(5 5 match) + net(2 2 match) + net(7 7 match) + net(1 1 match) + net(3 3 match) + pin(3 3 match) + pin(5 5 match) + pin(4 4 match) + pin(1 1 match) + pin(6 6 match) + pin(0 0 match) + pin(2 2 match) + device(3 3 match) + device(4 4 match) + device(1 1 match) + device(2 2 match) + ) + ) + circuit(RINGO RINGO match + xref( + net(1 6 match) + net(10 15 match) + net(2 7 match) + net(3 8 match) + net(4 9 match) + net(5 10 match) + net(6 11 match) + net(7 12 match) + net(8 13 match) + net(9 14 match) + net(14 4 match) + net(11 3 match) + net(13 5 match) + net(12 2 match) + net(15 1 match) + pin(3 3 match) + pin(0 2 match) + pin(2 4 match) + pin(1 1 match) + pin(4 0 match) + circuit(2 2 match) + circuit(3 3 match) + circuit(4 4 match) + circuit(5 5 match) + circuit(6 6 match) + circuit(7 7 match) + circuit(8 8 match) + circuit(9 9 match) + circuit(10 10 match) + circuit(11 11 match) + circuit(12 12 match) + circuit(1 1 match) + ) + ) +) diff --git a/testdata/lvs/ringo_layout_var.lvsdb.2 b/testdata/lvs/ringo_layout_var.lvsdb.2 new file mode 100644 index 000000000..51779581c --- /dev/null +++ b/testdata/lvs/ringo_layout_var.lvsdb.2 @@ -0,0 +1,1013 @@ +#%lvsdb-klayout + +# Layout +layout( + top(RINGO) + unit(0.001) + + # Layer section + # This section lists the mask layers (drawing or derived) and their connections. + + # Mask layers + layer(l3 '1/0') + layer(l4 '5/0') + layer(l8 '8/0') + layer(l11 '9/0') + layer(l12 '10/0') + layer(l13 '11/0') + layer(l7) + layer(l2) + layer(l9) + layer(l6) + layer(l10) + + # Mask layer connectivity + connect(l3 l3 l9) + connect(l4 l4 l8) + connect(l8 l4 l8 l11 l2 l9 l6 l10) + connect(l11 l8 l11 l12) + connect(l12 l11 l12 l13) + connect(l13 l12 l13) + connect(l7 l7) + connect(l2 l8 l2) + connect(l9 l3 l8 l9) + connect(l6 l8 l6) + connect(l10 l8 l10) + + # Global nets and connectivity + global(l7 SUBSTRATE) + global(l10 SUBSTRATE) + + # Device class section + class(PMOS MOS4) + class(NMOS MOS4) + + # Device abstracts section + # Device abstracts list the pin shapes of the devices. + device(D$PMOS PMOS + terminal(S + rect(l2 (-550 -750) (425 1500)) + ) + terminal(G + rect(l4 (-125 -750) (250 1500)) + ) + terminal(D + rect(l2 (125 -750) (450 1500)) + ) + terminal(B + rect(l3 (-125 -750) (250 1500)) + ) + ) + device(D$PMOS$1 PMOS + terminal(S + rect(l2 (-575 -750) (450 1500)) + ) + terminal(G + rect(l4 (-125 -750) (250 1500)) + ) + terminal(D + rect(l2 (125 -750) (425 1500)) + ) + terminal(B + rect(l3 (-125 -750) (250 1500)) + ) + ) + device(D$PMOS$2 PMOS + terminal(S + rect(l2 (-550 -750) (425 1500)) + ) + terminal(G + rect(l4 (-125 -750) (250 1500)) + ) + terminal(D + rect(l2 (125 -750) (425 1500)) + ) + terminal(B + rect(l3 (-125 -750) (250 1500)) + ) + ) + device(D$NMOS NMOS + terminal(S + rect(l6 (-550 -475) (425 950)) + ) + terminal(G + rect(l4 (-125 -475) (250 950)) + ) + terminal(D + rect(l6 (125 -475) (450 950)) + ) + terminal(B + rect(l7 (-125 -475) (250 950)) + ) + ) + device(D$NMOS$1 NMOS + terminal(S + rect(l6 (-575 -475) (450 950)) + ) + terminal(G + rect(l4 (-125 -475) (250 950)) + ) + terminal(D + rect(l6 (125 -475) (425 950)) + ) + terminal(B + rect(l7 (-125 -475) (250 950)) + ) + ) + device(D$NMOS$2 NMOS + terminal(S + rect(l6 (-550 -475) (425 950)) + ) + terminal(G + rect(l4 (-125 -475) (250 950)) + ) + terminal(D + rect(l6 (125 -475) (425 950)) + ) + terminal(B + rect(l7 (-125 -475) (250 950)) + ) + ) + + # Circuit section + # Circuits are the hierarchical building blocks of the netlist. + circuit(ND2X1 + + # Circuit boundary + rect((-100 400) (2600 7600)) + + # Nets with their geometries + net(1 name(VDD) + rect(l8 (1110 5160) (180 180)) + rect(l8 (-180 920) (180 180)) + rect(l8 (-180 -730) (180 180)) + rect(l11 (-240 -790) (300 1700)) + rect(l11 (-1350 0) (2400 800)) + rect(l11 (-1150 -400) (0 0)) + rect(l2 (-275 -2150) (425 1500)) + rect(l2 (-400 -1500) (425 1500)) + ) + net(2 name(OUT) + rect(l8 (1810 1770) (180 180)) + rect(l8 (-180 370) (180 180)) + rect(l8 (-1580 3760) (180 180)) + rect(l8 (-180 -730) (180 180)) + rect(l8 (-180 -730) (180 180)) + rect(l8 (1220 920) (180 180)) + rect(l8 (-180 -1280) (180 180)) + rect(l8 (-180 370) (180 180)) + polygon(l11 (-240 -4180) (0 1390) (490 0) (0 -300) (-190 0) (0 -1090)) + rect(l11 (-110 1390) (300 1400)) + polygon(l11 (-1890 0) (0 600) (300 0) (0 -300) (1590 0) (0 -300)) + rect(l11 (-140 -500) (0 0)) + rect(l11 (-1750 1100) (300 1400)) + rect(l11 (1100 -1700) (300 300)) + rect(l11 (-300 0) (300 1400)) + rect(l2 (-375 -1450) (425 1500)) + rect(l2 (-1800 -1500) (425 1500)) + rect(l6 (950 -4890) (425 950)) + ) + net(3 name(VSS) + rect(l8 (410 1770) (180 180)) + rect(l8 (-180 370) (180 180)) + rect(l11 (-240 -1300) (300 1360)) + rect(l11 (-650 -2160) (2400 800)) + rect(l11 (-1150 -400) (0 0)) + rect(l6 (-950 860) (425 950)) + ) + net(4 name($4) + rect(l3 (-100 4500) (2600 3500)) + ) + net(5 name(B) + rect(l4 (1425 2860) (250 1940)) + rect(l4 (-345 -950) (300 300)) + rect(l4 (-205 650) (250 2000)) + rect(l4 (-250 -2000) (250 2000)) + rect(l4 (-250 -5390) (250 1450)) + rect(l8 (-285 1050) (180 180)) + rect(l11 (-70 -90) (0 0)) + rect(l11 (-170 -150) (300 300)) + ) + net(6 name(A) + rect(l4 (725 2860) (250 1940)) + rect(l4 (-325 -1850) (300 300)) + rect(l4 (-225 1550) (250 2000)) + rect(l4 (-250 -2000) (250 2000)) + rect(l4 (-250 -5390) (250 1450)) + rect(l8 (-265 150) (180 180)) + rect(l11 (-90 -90) (0 0)) + rect(l11 (-150 -150) (300 300)) + ) + net(7 name(SUBSTRATE)) + net(8 name($I5) + rect(l6 (975 1660) (425 950)) + rect(l6 (-400 -950) (425 950)) + ) + + # Outgoing pins and their connections to nets + pin(1 name(VDD)) + pin(2 name(OUT)) + pin(3 name(VSS)) + pin(4) + pin(5 name(B)) + pin(6 name(A)) + pin(7 name(SUBSTRATE)) + + # Devices and their connections + device(1 D$PMOS + location(850 5800) + param(L 0.25) + param(W 1.5) + param(AS 0.6375) + param(AD 0.3375) + param(PS 3.85) + param(PD 1.95) + terminal(S 2) + terminal(G 6) + terminal(D 1) + terminal(B 4) + ) + device(2 D$PMOS$1 + location(1550 5800) + param(L 0.25) + param(W 1.5) + param(AS 0.3375) + param(AD 0.6375) + param(PS 1.95) + param(PD 3.85) + terminal(S 1) + terminal(G 5) + terminal(D 2) + terminal(B 4) + ) + device(3 D$NMOS + location(850 2135) + param(L 0.25) + param(W 0.95) + param(AS 0.40375) + param(AD 0.21375) + param(PS 2.75) + param(PD 1.4) + terminal(S 3) + terminal(G 6) + terminal(D 8) + terminal(B 7) + ) + device(4 D$NMOS$1 + location(1550 2135) + param(L 0.25) + param(W 0.95) + param(AS 0.21375) + param(AD 0.40375) + param(PS 1.4) + param(PD 2.75) + terminal(S 8) + terminal(G 5) + terminal(D 2) + terminal(B 7) + ) + + ) + circuit(INVX1 + + # Circuit boundary + rect((-100 400) (2000 7600)) + + # Nets with their geometries + net(1 name(VDD) + rect(l8 (410 6260) (180 180)) + rect(l8 (-180 -730) (180 180)) + rect(l8 (-180 -730) (180 180)) + rect(l11 (-240 -240) (300 1400)) + rect(l11 (-650 300) (1800 800)) + rect(l11 (-1450 -1100) (300 300)) + rect(l11 (300 400) (0 0)) + rect(l2 (-650 -2150) (425 1500)) + ) + net(2 name(OUT) + rect(l8 (1110 5160) (180 180)) + rect(l8 (-180 920) (180 180)) + rect(l8 (-180 -730) (180 180)) + rect(l8 (-180 -4120) (180 180)) + rect(l8 (-180 370) (180 180)) + rect(l11 (-240 -790) (300 4790)) + rect(l11 (-150 -2500) (0 0)) + rect(l2 (-225 1050) (425 1500)) + rect(l6 (-425 -4890) (425 950)) + ) + net(3 name(VSS) + rect(l8 (410 1770) (180 180)) + rect(l8 (-180 370) (180 180)) + rect(l11 (-240 -1300) (300 1360)) + rect(l11 (-650 -2160) (1800 800)) + rect(l11 (-850 -400) (0 0)) + rect(l6 (-650 860) (425 950)) + ) + net(4 name($4) + rect(l3 (-100 4500) (2000 3500)) + ) + net(5 name(IN) + rect(l4 (725 2860) (250 1940)) + rect(l4 (-525 -1850) (300 300)) + rect(l4 (-25 1550) (250 2000)) + rect(l4 (-250 -2000) (250 2000)) + rect(l4 (-250 -5390) (250 1450)) + rect(l8 (-465 150) (180 180)) + rect(l11 (-90 -90) (0 0)) + rect(l11 (-150 -150) (300 300)) + ) + net(6 name(SUBSTRATE)) + + # Outgoing pins and their connections to nets + pin(1 name(VDD)) + pin(2 name(OUT)) + pin(3 name(VSS)) + pin(4) + pin(5 name(IN)) + pin(6 name(SUBSTRATE)) + + # Devices and their connections + device(1 D$PMOS$2 + location(850 5800) + param(L 0.25) + param(W 1.5) + param(AS 0.6375) + param(AD 0.6375) + param(PS 3.85) + param(PD 3.85) + terminal(S 1) + terminal(G 5) + terminal(D 2) + terminal(B 4) + ) + device(2 D$NMOS$2 + location(850 2135) + param(L 0.25) + param(W 0.95) + param(AS 0.40375) + param(AD 0.40375) + param(PS 2.75) + param(PD 2.75) + terminal(S 3) + terminal(G 5) + terminal(D 2) + terminal(B 6) + ) + + ) + circuit(INVX1B + + # Circuit boundary + rect((-100 400) (2000 7600)) + + # Nets with their geometries + net(1 name(VDD) + rect(l8 (410 6260) (180 180)) + rect(l8 (-180 -730) (180 180)) + rect(l8 (-180 -730) (180 180)) + rect(l11 (-240 -240) (300 1400)) + rect(l11 (-650 300) (1800 800)) + rect(l11 (-1450 -1100) (300 300)) + rect(l11 (300 400) (0 0)) + rect(l2 (-650 -2150) (425 1500)) + ) + net(2 name(OUT) + rect(l8 (1110 5160) (180 180)) + rect(l8 (-180 920) (180 180)) + rect(l8 (-180 -730) (180 180)) + rect(l8 (-180 -4120) (180 180)) + rect(l8 (-180 370) (180 180)) + rect(l11 (-240 -790) (300 4790)) + rect(l11 (-150 -2500) (0 0)) + rect(l2 (-225 1050) (425 1500)) + rect(l6 (-425 -4890) (425 950)) + ) + net(3 name(VSS) + rect(l8 (410 1770) (180 180)) + rect(l8 (-180 370) (180 180)) + rect(l11 (-240 -1300) (300 1360)) + rect(l11 (-650 -2160) (1800 800)) + rect(l11 (-850 -400) (0 0)) + rect(l6 (-650 860) (425 950)) + ) + net(4 name($4) + rect(l3 (-100 4500) (2000 3500)) + ) + net(5 name(IN) + rect(l4 (725 2860) (250 1940)) + rect(l4 (-525 -1850) (300 300)) + rect(l4 (-25 1550) (250 2000)) + rect(l4 (-250 -2000) (250 2000)) + rect(l4 (-250 -5390) (250 1450)) + rect(l8 (-465 150) (180 180)) + rect(l11 (-90 -90) (0 0)) + rect(l11 (-150 -150) (300 300)) + ) + net(6 name(SUBSTRATE)) + + # Outgoing pins and their connections to nets + pin(1 name(VDD)) + pin(2 name(OUT)) + pin(3 name(VSS)) + pin(4) + pin(5 name(IN)) + pin(6 name(SUBSTRATE)) + + # Devices and their connections + device(1 D$PMOS$2 + location(850 5800) + param(L 0.25) + param(W 1.5) + param(AS 0.6375) + param(AD 0.6375) + param(PS 3.85) + param(PD 3.85) + terminal(S 1) + terminal(G 5) + terminal(D 2) + terminal(B 4) + ) + device(2 D$NMOS$2 + location(850 2135) + param(L 0.25) + param(W 0.95) + param(AS 0.40375) + param(AD 0.40375) + param(PS 2.75) + param(PD 2.75) + terminal(S 3) + terminal(G 5) + terminal(D 2) + terminal(B 6) + ) + + ) + circuit(RINGO + + # Circuit boundary + rect((0 350) (25800 7650)) + + # Nets with their geometries + net(1 name($1) + rect(l11 (4040 2950) (610 300)) + ) + net(2 name($2) + rect(l11 (5550 2950) (900 300)) + ) + net(3 name($3) + rect(l11 (7350 2950) (900 300)) + ) + net(4 name($4) + rect(l11 (9150 2950) (900 300)) + ) + net(5 name($5) + rect(l11 (10950 2950) (900 300)) + ) + net(6 name($6) + rect(l11 (12750 2950) (900 300)) + ) + net(7 name($7) + rect(l11 (14550 2950) (900 300)) + ) + net(8 name($8) + rect(l11 (16350 2950) (900 300)) + ) + net(9 name($9) + rect(l11 (18150 2950) (900 300)) + ) + net(10 name($10) + rect(l11 (19950 2950) (900 300)) + ) + net(11 name(FB) + rect(l11 (21750 2950) (900 300)) + rect(l11 (-19530 590) (320 320)) + rect(l11 (17820 -320) (320 320)) + rect(l12 (-18400 -260) (200 200)) + rect(l12 (17940 -200) (200 200)) + rect(l13 (-18040 -300) (17740 400)) + rect(l13 (-17920 -200) (0 0)) + rect(l13 (-220 -200) (400 400)) + rect(l13 (17740 -400) (400 400)) + ) + net(12 name(VDD) + rect(l3 (0 4500) (600 3500)) + rect(l3 (-100 -3500) (1400 3500)) + rect(l3 (22000 -3500) (1400 3500)) + rect(l3 (-100 -3500) (600 3500)) + rect(l8 (-24690 -1240) (180 180)) + rect(l8 (-180 370) (180 180)) + rect(l8 (-180 -1280) (180 180)) + rect(l8 (23220 370) (180 180)) + rect(l8 (-180 370) (180 180)) + rect(l8 (-180 -1280) (180 180)) + rect(l11 (-21740 860) (0 0)) + rect(l11 (-2950 -450) (600 800)) + rect(l11 (0 -800) (1200 800)) + rect(l11 (-750 -1450) (300 1400)) + rect(l11 (-100 -350) (0 0)) + rect(l11 (22750 -400) (1200 800)) + rect(l11 (-750 -1450) (300 1400)) + rect(l11 (-100 -350) (0 0)) + rect(l11 (550 -400) (600 800)) + rect(l9 (-24850 -1500) (500 1500)) + rect(l9 (22900 -1500) (500 1500)) + ) + net(13 name(OUT) + rect(l11 (23440 3840) (320 320)) + rect(l12 (-260 -260) (200 200)) + rect(l13 (-100 -100) (0 0)) + rect(l13 (-200 -200) (400 400)) + ) + net(14 name(ENABLE) + rect(l11 (2440 2940) (320 320)) + rect(l12 (-260 -260) (200 200)) + rect(l13 (-100 -100) (0 0)) + rect(l13 (-200 -200) (400 400)) + ) + net(15 name(VSS) + rect(l8 (24510 1610) (180 180)) + rect(l8 (-180 -1280) (180 180)) + rect(l8 (-180 370) (180 180)) + rect(l8 (-23580 370) (180 180)) + rect(l8 (-180 -1280) (180 180)) + rect(l8 (-180 370) (180 180)) + rect(l11 (1660 -390) (0 0)) + rect(l11 (21500 -400) (300 1400)) + rect(l11 (-750 -1450) (1200 800)) + rect(l11 (-550 -400) (0 0)) + rect(l11 (550 -400) (600 800)) + rect(l11 (-25800 -800) (600 800)) + rect(l11 (450 -750) (300 1400)) + rect(l11 (-750 -1450) (1200 800)) + rect(l11 (-550 -400) (0 0)) + rect(l10 (23100 -400) (500 1500)) + rect(l10 (-23900 -1500) (500 1500)) + ) + + # Outgoing pins and their connections to nets + pin(11 name(FB)) + pin(12 name(VDD)) + pin(13 name(OUT)) + pin(14 name(ENABLE)) + pin(15 name(VSS)) + + # Subcircuits and their connections + circuit(1 ND2X1 location(1800 0) + pin(0 12) + pin(1 1) + pin(2 15) + pin(3 12) + pin(4 11) + pin(5 14) + pin(6 15) + ) + circuit(2 INVX1B location(4200 0) + pin(0 12) + pin(1 2) + pin(2 15) + pin(3 12) + pin(4 1) + pin(5 15) + ) + circuit(3 INVX1 location(6000 0) + pin(0 12) + pin(1 3) + pin(2 15) + pin(3 12) + pin(4 2) + pin(5 15) + ) + circuit(4 INVX1B location(7800 0) + pin(0 12) + pin(1 4) + pin(2 15) + pin(3 12) + pin(4 3) + pin(5 15) + ) + circuit(5 INVX1 location(9600 0) + pin(0 12) + pin(1 5) + pin(2 15) + pin(3 12) + pin(4 4) + pin(5 15) + ) + circuit(6 INVX1B location(11400 0) + pin(0 12) + pin(1 6) + pin(2 15) + pin(3 12) + pin(4 5) + pin(5 15) + ) + circuit(7 INVX1 location(13200 0) + pin(0 12) + pin(1 7) + pin(2 15) + pin(3 12) + pin(4 6) + pin(5 15) + ) + circuit(8 INVX1 location(15000 0) + pin(0 12) + pin(1 8) + pin(2 15) + pin(3 12) + pin(4 7) + pin(5 15) + ) + circuit(9 INVX1 location(16800 0) + pin(0 12) + pin(1 9) + pin(2 15) + pin(3 12) + pin(4 8) + pin(5 15) + ) + circuit(10 INVX1 location(18600 0) + pin(0 12) + pin(1 10) + pin(2 15) + pin(3 12) + pin(4 9) + pin(5 15) + ) + circuit(11 INVX1 location(20400 0) + pin(0 12) + pin(1 11) + pin(2 15) + pin(3 12) + pin(4 10) + pin(5 15) + ) + circuit(12 INVX1 location(22200 0) + pin(0 12) + pin(1 13) + pin(2 15) + pin(3 12) + pin(4 11) + pin(5 15) + ) + + ) +) + +# Reference netlist +reference( + + # Device class section + class(PMOS MOS4) + class(NMOS MOS4) + + # Circuit section + # Circuits are the hierarchical building blocks of the netlist. + circuit(ND2X1 + + # Nets + net(1 name(VDD)) + net(2 name(OUT)) + net(3 name(VSS)) + net(4 name(NWELL)) + net(5 name(B)) + net(6 name(A)) + net(7 name(BULK)) + net(8 name('1')) + + # Outgoing pins and their connections to nets + pin(1 name(VDD)) + pin(2 name(OUT)) + pin(3 name(VSS)) + pin(4 name(NWELL)) + pin(5 name(B)) + pin(6 name(A)) + pin(7 name(BULK)) + + # Devices and their connections + device(1 PMOS + name($1) + param(L 0.25) + param(W 1.5) + param(AS 0) + param(AD 0) + param(PS 0) + param(PD 0) + terminal(S 1) + terminal(G 6) + terminal(D 2) + terminal(B 4) + ) + device(2 PMOS + name($2) + param(L 0.25) + param(W 1.5) + param(AS 0) + param(AD 0) + param(PS 0) + param(PD 0) + terminal(S 1) + terminal(G 5) + terminal(D 2) + terminal(B 4) + ) + device(3 NMOS + name($3) + param(L 0.25) + param(W 0.95) + param(AS 0) + param(AD 0) + param(PS 0) + param(PD 0) + terminal(S 3) + terminal(G 6) + terminal(D 8) + terminal(B 7) + ) + device(4 NMOS + name($4) + param(L 0.25) + param(W 0.95) + param(AS 0) + param(AD 0) + param(PS 0) + param(PD 0) + terminal(S 8) + terminal(G 5) + terminal(D 2) + terminal(B 7) + ) + + ) + circuit(INVX1 + + # Nets + net(1 name(VDD)) + net(2 name(OUT)) + net(3 name(VSS)) + net(4 name(NWELL)) + net(5 name(IN)) + net(6 name(BULK)) + + # Outgoing pins and their connections to nets + pin(1 name(VDD)) + pin(2 name(OUT)) + pin(3 name(VSS)) + pin(4 name(NWELL)) + pin(5 name(IN)) + pin(6 name(BULK)) + + # Devices and their connections + device(1 PMOS + name($1) + param(L 0.25) + param(W 1.5) + param(AS 0) + param(AD 0) + param(PS 0) + param(PD 0) + terminal(S 1) + terminal(G 5) + terminal(D 2) + terminal(B 4) + ) + device(2 NMOS + name($2) + param(L 0.25) + param(W 0.95) + param(AS 0) + param(AD 0) + param(PS 0) + param(PD 0) + terminal(S 3) + terminal(G 5) + terminal(D 2) + terminal(B 6) + ) + + ) + circuit(RINGO + + # Nets + net(1 name(VSS)) + net(2 name(VDD)) + net(3 name(FB)) + net(4 name(ENABLE)) + net(5 name(OUT)) + net(6 name('1')) + net(7 name('2')) + net(8 name('3')) + net(9 name('4')) + net(10 name('5')) + net(11 name('6')) + net(12 name('7')) + net(13 name('8')) + net(14 name('9')) + net(15 name('10')) + + # Outgoing pins and their connections to nets + pin(1 name(VSS)) + pin(2 name(VDD)) + pin(3 name(FB)) + pin(4 name(ENABLE)) + pin(5 name(OUT)) + + # Subcircuits and their connections + circuit(1 ND2X1 name($1) + pin(0 2) + pin(1 6) + pin(2 1) + pin(3 2) + pin(4 3) + pin(5 4) + pin(6 1) + ) + circuit(2 INVX1 name($2) + pin(0 2) + pin(1 7) + pin(2 1) + pin(3 2) + pin(4 6) + pin(5 1) + ) + circuit(3 INVX1 name($3) + pin(0 2) + pin(1 8) + pin(2 1) + pin(3 2) + pin(4 7) + pin(5 1) + ) + circuit(4 INVX1 name($4) + pin(0 2) + pin(1 9) + pin(2 1) + pin(3 2) + pin(4 8) + pin(5 1) + ) + circuit(5 INVX1 name($5) + pin(0 2) + pin(1 10) + pin(2 1) + pin(3 2) + pin(4 9) + pin(5 1) + ) + circuit(6 INVX1 name($6) + pin(0 2) + pin(1 11) + pin(2 1) + pin(3 2) + pin(4 10) + pin(5 1) + ) + circuit(7 INVX1 name($7) + pin(0 2) + pin(1 12) + pin(2 1) + pin(3 2) + pin(4 11) + pin(5 1) + ) + circuit(8 INVX1 name($8) + pin(0 2) + pin(1 13) + pin(2 1) + pin(3 2) + pin(4 12) + pin(5 1) + ) + circuit(9 INVX1 name($9) + pin(0 2) + pin(1 14) + pin(2 1) + pin(3 2) + pin(4 13) + pin(5 1) + ) + circuit(10 INVX1 name($10) + pin(0 2) + pin(1 15) + pin(2 1) + pin(3 2) + pin(4 14) + pin(5 1) + ) + circuit(11 INVX1 name($11) + pin(0 2) + pin(1 3) + pin(2 1) + pin(3 2) + pin(4 15) + pin(5 1) + ) + circuit(12 INVX1 name($12) + pin(0 2) + pin(1 5) + pin(2 1) + pin(3 2) + pin(4 3) + pin(5 1) + ) + + ) +) + +# Cross reference +xref( + circuit(INVX1 INVX1 match + xref( + net(4 4 match) + net(5 5 match) + net(2 2 match) + net(6 6 match) + net(1 1 match) + net(3 3 match) + pin(3 3 match) + pin(4 4 match) + pin(1 1 match) + pin(5 5 match) + pin(0 0 match) + pin(2 2 match) + device(2 2 match) + device(1 1 match) + ) + ) + circuit(INVX1B INVX1 match + xref( + net(4 4 match) + net(5 5 match) + net(2 2 match) + net(6 6 match) + net(1 1 match) + net(3 3 match) + pin(3 3 match) + pin(4 4 match) + pin(1 1 match) + pin(5 5 match) + pin(0 0 match) + pin(2 2 match) + device(2 2 match) + device(1 1 match) + ) + ) + circuit(ND2X1 ND2X1 match + xref( + net(8 8 match) + net(4 4 match) + net(6 6 match) + net(5 5 match) + net(2 2 match) + net(7 7 match) + net(1 1 match) + net(3 3 match) + pin(3 3 match) + pin(5 5 match) + pin(4 4 match) + pin(1 1 match) + pin(6 6 match) + pin(0 0 match) + pin(2 2 match) + device(3 3 match) + device(4 4 match) + device(1 1 match) + device(2 2 match) + ) + ) + circuit(RINGO RINGO match + xref( + net(1 6 match) + net(10 15 match) + net(2 7 match) + net(3 8 match) + net(4 9 match) + net(5 10 match) + net(6 11 match) + net(7 12 match) + net(8 13 match) + net(9 14 match) + net(14 4 match) + net(11 3 match) + net(13 5 match) + net(12 2 match) + net(15 1 match) + pin(3 3 match) + pin(0 2 match) + pin(2 4 match) + pin(1 1 match) + pin(4 0 match) + circuit(3 3 match) + circuit(5 5 match) + circuit(7 7 match) + circuit(8 8 match) + circuit(9 9 match) + circuit(10 10 match) + circuit(11 11 match) + circuit(12 12 match) + circuit(2 2 match) + circuit(4 4 match) + circuit(6 6 match) + circuit(1 1 match) + ) + ) +) diff --git a/testdata/lvs/ringo_simple.lvsdb.2 b/testdata/lvs/ringo_simple.lvsdb.2 new file mode 100644 index 000000000..4b945d92e --- /dev/null +++ b/testdata/lvs/ringo_simple.lvsdb.2 @@ -0,0 +1,908 @@ +#%lvsdb-klayout + +# Layout +layout( + top(RINGO) + unit(0.001) + + # Layer section + # This section lists the mask layers (drawing or derived) and their connections. + + # Mask layers + layer(l3 '1/0') + layer(l4 '5/0') + layer(l8 '8/0') + layer(l11 '9/0') + layer(l12 '10/0') + layer(l13 '11/0') + layer(l7) + layer(l2) + layer(l9) + layer(l6) + layer(l10) + + # Mask layer connectivity + connect(l3 l3 l9) + connect(l4 l4 l8) + connect(l8 l4 l8 l11 l2 l9 l6 l10) + connect(l11 l8 l11 l12) + connect(l12 l11 l12 l13) + connect(l13 l12 l13) + connect(l7 l7) + connect(l2 l8 l2) + connect(l9 l3 l8 l9) + connect(l6 l8 l6) + connect(l10 l8 l10) + + # Global nets and connectivity + global(l7 SUBSTRATE) + global(l10 SUBSTRATE) + + # Device class section + class(PMOS MOS4) + class(NMOS MOS4) + + # Device abstracts section + # Device abstracts list the pin shapes of the devices. + device(D$PMOS PMOS + terminal(S + rect(l2 (-550 -750) (425 1500)) + ) + terminal(G + rect(l4 (-125 -750) (250 1500)) + ) + terminal(D + rect(l2 (125 -750) (450 1500)) + ) + terminal(B + rect(l3 (-125 -750) (250 1500)) + ) + ) + device(D$PMOS$1 PMOS + terminal(S + rect(l2 (-575 -750) (450 1500)) + ) + terminal(G + rect(l4 (-125 -750) (250 1500)) + ) + terminal(D + rect(l2 (125 -750) (425 1500)) + ) + terminal(B + rect(l3 (-125 -750) (250 1500)) + ) + ) + device(D$PMOS$2 PMOS + terminal(S + rect(l2 (-550 -750) (425 1500)) + ) + terminal(G + rect(l4 (-125 -750) (250 1500)) + ) + terminal(D + rect(l2 (125 -750) (425 1500)) + ) + terminal(B + rect(l3 (-125 -750) (250 1500)) + ) + ) + device(D$NMOS NMOS + terminal(S + rect(l6 (-550 -475) (425 950)) + ) + terminal(G + rect(l4 (-125 -475) (250 950)) + ) + terminal(D + rect(l6 (125 -475) (450 950)) + ) + terminal(B + rect(l7 (-125 -475) (250 950)) + ) + ) + device(D$NMOS$1 NMOS + terminal(S + rect(l6 (-575 -475) (450 950)) + ) + terminal(G + rect(l4 (-125 -475) (250 950)) + ) + terminal(D + rect(l6 (125 -475) (425 950)) + ) + terminal(B + rect(l7 (-125 -475) (250 950)) + ) + ) + device(D$NMOS$2 NMOS + terminal(S + rect(l6 (-550 -475) (425 950)) + ) + terminal(G + rect(l4 (-125 -475) (250 950)) + ) + terminal(D + rect(l6 (125 -475) (425 950)) + ) + terminal(B + rect(l7 (-125 -475) (250 950)) + ) + ) + + # Circuit section + # Circuits are the hierarchical building blocks of the netlist. + circuit(ND2X1 + + # Circuit boundary + rect((-100 400) (2600 7600)) + + # Nets with their geometries + net(1 name(VDD) + rect(l8 (1110 5160) (180 180)) + rect(l8 (-180 920) (180 180)) + rect(l8 (-180 -730) (180 180)) + rect(l11 (-240 -790) (300 1700)) + rect(l11 (-1350 0) (2400 800)) + rect(l11 (-1150 -400) (0 0)) + rect(l2 (-275 -2150) (425 1500)) + rect(l2 (-400 -1500) (425 1500)) + ) + net(2 name(OUT) + rect(l8 (1810 1770) (180 180)) + rect(l8 (-180 370) (180 180)) + rect(l8 (-1580 3760) (180 180)) + rect(l8 (-180 -730) (180 180)) + rect(l8 (-180 -730) (180 180)) + rect(l8 (1220 920) (180 180)) + rect(l8 (-180 -1280) (180 180)) + rect(l8 (-180 370) (180 180)) + polygon(l11 (-240 -4180) (0 1390) (490 0) (0 -300) (-190 0) (0 -1090)) + rect(l11 (-110 1390) (300 1400)) + polygon(l11 (-1890 0) (0 600) (300 0) (0 -300) (1590 0) (0 -300)) + rect(l11 (-140 -500) (0 0)) + rect(l11 (-1750 1100) (300 1400)) + rect(l11 (1100 -1700) (300 300)) + rect(l11 (-300 0) (300 1400)) + rect(l2 (-375 -1450) (425 1500)) + rect(l2 (-1800 -1500) (425 1500)) + rect(l6 (950 -4890) (425 950)) + ) + net(3 name(VSS) + rect(l8 (410 1770) (180 180)) + rect(l8 (-180 370) (180 180)) + rect(l11 (-240 -1300) (300 1360)) + rect(l11 (-650 -2160) (2400 800)) + rect(l11 (-1150 -400) (0 0)) + rect(l6 (-950 860) (425 950)) + ) + net(4 name($4) + rect(l3 (-100 4500) (2600 3500)) + ) + net(5 name(B) + rect(l4 (1425 2860) (250 1940)) + rect(l4 (-345 -950) (300 300)) + rect(l4 (-205 650) (250 2000)) + rect(l4 (-250 -2000) (250 2000)) + rect(l4 (-250 -5390) (250 1450)) + rect(l8 (-285 1050) (180 180)) + rect(l11 (-70 -90) (0 0)) + rect(l11 (-170 -150) (300 300)) + ) + net(6 name(A) + rect(l4 (725 2860) (250 1940)) + rect(l4 (-325 -1850) (300 300)) + rect(l4 (-225 1550) (250 2000)) + rect(l4 (-250 -2000) (250 2000)) + rect(l4 (-250 -5390) (250 1450)) + rect(l8 (-265 150) (180 180)) + rect(l11 (-90 -90) (0 0)) + rect(l11 (-150 -150) (300 300)) + ) + net(7 name(SUBSTRATE)) + net(8 name($I5) + rect(l6 (975 1660) (425 950)) + rect(l6 (-400 -950) (425 950)) + ) + + # Outgoing pins and their connections to nets + pin(1 name(VDD)) + pin(2 name(OUT)) + pin(3 name(VSS)) + pin(4) + pin(5 name(B)) + pin(6 name(A)) + pin(7 name(SUBSTRATE)) + + # Devices and their connections + device(1 D$PMOS + location(850 5800) + param(L 0.25) + param(W 1.5) + param(AS 0.6375) + param(AD 0.3375) + param(PS 3.85) + param(PD 1.95) + terminal(S 2) + terminal(G 6) + terminal(D 1) + terminal(B 4) + ) + device(2 D$PMOS$1 + location(1550 5800) + param(L 0.25) + param(W 1.5) + param(AS 0.3375) + param(AD 0.6375) + param(PS 1.95) + param(PD 3.85) + terminal(S 1) + terminal(G 5) + terminal(D 2) + terminal(B 4) + ) + device(3 D$NMOS + location(850 2135) + param(L 0.25) + param(W 0.95) + param(AS 0.40375) + param(AD 0.21375) + param(PS 2.75) + param(PD 1.4) + terminal(S 3) + terminal(G 6) + terminal(D 8) + terminal(B 7) + ) + device(4 D$NMOS$1 + location(1550 2135) + param(L 0.25) + param(W 0.95) + param(AS 0.21375) + param(AD 0.40375) + param(PS 1.4) + param(PD 2.75) + terminal(S 8) + terminal(G 5) + terminal(D 2) + terminal(B 7) + ) + + ) + circuit(INVX1 + + # Circuit boundary + rect((-100 400) (2000 7600)) + + # Nets with their geometries + net(1 name(VDD) + rect(l8 (410 6260) (180 180)) + rect(l8 (-180 -730) (180 180)) + rect(l8 (-180 -730) (180 180)) + rect(l11 (-240 -240) (300 1400)) + rect(l11 (-650 300) (1800 800)) + rect(l11 (-1450 -1100) (300 300)) + rect(l11 (300 400) (0 0)) + rect(l2 (-650 -2150) (425 1500)) + ) + net(2 name(OUT) + rect(l8 (1110 5160) (180 180)) + rect(l8 (-180 920) (180 180)) + rect(l8 (-180 -730) (180 180)) + rect(l8 (-180 -4120) (180 180)) + rect(l8 (-180 370) (180 180)) + rect(l11 (-240 -790) (300 4790)) + rect(l11 (-150 -2500) (0 0)) + rect(l2 (-225 1050) (425 1500)) + rect(l6 (-425 -4890) (425 950)) + ) + net(3 name(VSS) + rect(l8 (410 1770) (180 180)) + rect(l8 (-180 370) (180 180)) + rect(l11 (-240 -1300) (300 1360)) + rect(l11 (-650 -2160) (1800 800)) + rect(l11 (-850 -400) (0 0)) + rect(l6 (-650 860) (425 950)) + ) + net(4 name($4) + rect(l3 (-100 4500) (2000 3500)) + ) + net(5 name(IN) + rect(l4 (725 2860) (250 1940)) + rect(l4 (-525 -1850) (300 300)) + rect(l4 (-25 1550) (250 2000)) + rect(l4 (-250 -2000) (250 2000)) + rect(l4 (-250 -5390) (250 1450)) + rect(l8 (-465 150) (180 180)) + rect(l11 (-90 -90) (0 0)) + rect(l11 (-150 -150) (300 300)) + ) + net(6 name(SUBSTRATE)) + + # Outgoing pins and their connections to nets + pin(1 name(VDD)) + pin(2 name(OUT)) + pin(3 name(VSS)) + pin(4) + pin(5 name(IN)) + pin(6 name(SUBSTRATE)) + + # Devices and their connections + device(1 D$PMOS$2 + location(850 5800) + param(L 0.25) + param(W 1.5) + param(AS 0.6375) + param(AD 0.6375) + param(PS 3.85) + param(PD 3.85) + terminal(S 1) + terminal(G 5) + terminal(D 2) + terminal(B 4) + ) + device(2 D$NMOS$2 + location(850 2135) + param(L 0.25) + param(W 0.95) + param(AS 0.40375) + param(AD 0.40375) + param(PS 2.75) + param(PD 2.75) + terminal(S 3) + terminal(G 5) + terminal(D 2) + terminal(B 6) + ) + + ) + circuit(RINGO + + # Circuit boundary + rect((0 350) (25800 7650)) + + # Nets with their geometries + net(1 name($1) + rect(l11 (4040 2950) (610 300)) + ) + net(2 name($2) + rect(l11 (5550 2950) (900 300)) + ) + net(3 name($3) + rect(l11 (7350 2950) (900 300)) + ) + net(4 name($4) + rect(l11 (9150 2950) (900 300)) + ) + net(5 name($5) + rect(l11 (10950 2950) (900 300)) + ) + net(6 name($6) + rect(l11 (12750 2950) (900 300)) + ) + net(7 name($7) + rect(l11 (14550 2950) (900 300)) + ) + net(8 name($8) + rect(l11 (16350 2950) (900 300)) + ) + net(9 name($9) + rect(l11 (18150 2950) (900 300)) + ) + net(10 name($10) + rect(l11 (19950 2950) (900 300)) + ) + net(11 name(FB) + rect(l11 (21750 2950) (900 300)) + rect(l11 (-19530 590) (320 320)) + rect(l11 (17820 -320) (320 320)) + rect(l12 (-18400 -260) (200 200)) + rect(l12 (17940 -200) (200 200)) + rect(l13 (-18040 -300) (17740 400)) + rect(l13 (-17920 -200) (0 0)) + rect(l13 (-220 -200) (400 400)) + rect(l13 (17740 -400) (400 400)) + ) + net(12 name(VDD) + rect(l3 (0 4500) (600 3500)) + rect(l3 (23300 -3500) (1400 3500)) + rect(l3 (-100 -3500) (600 3500)) + rect(l3 (-25300 -3500) (1400 3500)) + rect(l8 (22610 -1240) (180 180)) + rect(l8 (-180 370) (180 180)) + rect(l8 (-180 -1280) (180 180)) + rect(l8 (-23580 370) (180 180)) + rect(l8 (-180 370) (180 180)) + rect(l8 (-180 -1280) (180 180)) + rect(l11 (1660 860) (0 0)) + rect(l11 (-2950 -450) (600 800)) + rect(l11 (23400 -800) (1200 800)) + rect(l11 (-750 -1450) (300 1400)) + rect(l11 (-100 -350) (0 0)) + rect(l11 (550 -400) (600 800)) + rect(l11 (-25200 -800) (1200 800)) + rect(l11 (-750 -1450) (300 1400)) + rect(l11 (-100 -350) (0 0)) + rect(l9 (23100 -1100) (500 1500)) + rect(l9 (-23900 -1500) (500 1500)) + ) + net(13 name(OUT) + rect(l11 (23440 3840) (320 320)) + rect(l12 (-260 -260) (200 200)) + rect(l13 (-100 -100) (0 0)) + rect(l13 (-200 -200) (400 400)) + ) + net(14 name(ENABLE) + rect(l11 (2440 2940) (320 320)) + rect(l12 (-260 -260) (200 200)) + rect(l13 (-100 -100) (0 0)) + rect(l13 (-200 -200) (400 400)) + ) + net(15 name(VSS) + rect(l8 (24510 1610) (180 180)) + rect(l8 (-180 -1280) (180 180)) + rect(l8 (-180 370) (180 180)) + rect(l8 (-23580 370) (180 180)) + rect(l8 (-180 -1280) (180 180)) + rect(l8 (-180 370) (180 180)) + rect(l11 (1660 -390) (0 0)) + rect(l11 (21500 -400) (300 1400)) + rect(l11 (-750 -1450) (1200 800)) + rect(l11 (-550 -400) (0 0)) + rect(l11 (550 -400) (600 800)) + rect(l11 (-25800 -800) (600 800)) + rect(l11 (450 -750) (300 1400)) + rect(l11 (-750 -1450) (1200 800)) + rect(l11 (-550 -400) (0 0)) + rect(l10 (23100 -400) (500 1500)) + rect(l10 (-23900 -1500) (500 1500)) + ) + + # Outgoing pins and their connections to nets + pin(11 name(FB)) + pin(12 name(VDD)) + pin(13 name(OUT)) + pin(14 name(ENABLE)) + pin(15 name(VSS)) + + # Subcircuits and their connections + circuit(1 ND2X1 location(1800 0) + pin(0 12) + pin(1 1) + pin(2 15) + pin(3 12) + pin(4 11) + pin(5 14) + pin(6 15) + ) + circuit(2 INVX1 location(4200 0) + pin(0 12) + pin(1 2) + pin(2 15) + pin(3 12) + pin(4 1) + pin(5 15) + ) + circuit(3 INVX1 location(6000 0) + pin(0 12) + pin(1 3) + pin(2 15) + pin(3 12) + pin(4 2) + pin(5 15) + ) + circuit(4 INVX1 location(7800 0) + pin(0 12) + pin(1 4) + pin(2 15) + pin(3 12) + pin(4 3) + pin(5 15) + ) + circuit(5 INVX1 location(9600 0) + pin(0 12) + pin(1 5) + pin(2 15) + pin(3 12) + pin(4 4) + pin(5 15) + ) + circuit(6 INVX1 location(11400 0) + pin(0 12) + pin(1 6) + pin(2 15) + pin(3 12) + pin(4 5) + pin(5 15) + ) + circuit(7 INVX1 location(13200 0) + pin(0 12) + pin(1 7) + pin(2 15) + pin(3 12) + pin(4 6) + pin(5 15) + ) + circuit(8 INVX1 location(15000 0) + pin(0 12) + pin(1 8) + pin(2 15) + pin(3 12) + pin(4 7) + pin(5 15) + ) + circuit(9 INVX1 location(16800 0) + pin(0 12) + pin(1 9) + pin(2 15) + pin(3 12) + pin(4 8) + pin(5 15) + ) + circuit(10 INVX1 location(18600 0) + pin(0 12) + pin(1 10) + pin(2 15) + pin(3 12) + pin(4 9) + pin(5 15) + ) + circuit(11 INVX1 location(20400 0) + pin(0 12) + pin(1 11) + pin(2 15) + pin(3 12) + pin(4 10) + pin(5 15) + ) + circuit(12 INVX1 location(22200 0) + pin(0 12) + pin(1 13) + pin(2 15) + pin(3 12) + pin(4 11) + pin(5 15) + ) + + ) +) + +# Reference netlist +reference( + + # Device class section + class(PMOS MOS4) + class(NMOS MOS4) + + # Circuit section + # Circuits are the hierarchical building blocks of the netlist. + circuit(ND2X1 + + # Nets + net(1 name(VDD)) + net(2 name(OUT)) + net(3 name(VSS)) + net(4 name(NWELL)) + net(5 name(B)) + net(6 name(A)) + net(7 name(BULK)) + net(8 name('1')) + + # Outgoing pins and their connections to nets + pin(1 name(VDD)) + pin(2 name(OUT)) + pin(3 name(VSS)) + pin(4 name(NWELL)) + pin(5 name(B)) + pin(6 name(A)) + pin(7 name(BULK)) + + # Devices and their connections + device(1 PMOS + name($1) + param(L 0.25) + param(W 1.5) + param(AS 0) + param(AD 0) + param(PS 0) + param(PD 0) + terminal(S 1) + terminal(G 6) + terminal(D 2) + terminal(B 4) + ) + device(2 PMOS + name($2) + param(L 0.25) + param(W 1.5) + param(AS 0) + param(AD 0) + param(PS 0) + param(PD 0) + terminal(S 1) + terminal(G 5) + terminal(D 2) + terminal(B 4) + ) + device(3 NMOS + name($3) + param(L 0.25) + param(W 0.95) + param(AS 0) + param(AD 0) + param(PS 0) + param(PD 0) + terminal(S 3) + terminal(G 6) + terminal(D 8) + terminal(B 7) + ) + device(4 NMOS + name($4) + param(L 0.25) + param(W 0.95) + param(AS 0) + param(AD 0) + param(PS 0) + param(PD 0) + terminal(S 8) + terminal(G 5) + terminal(D 2) + terminal(B 7) + ) + + ) + circuit(INVX1 + + # Nets + net(1 name(VDD)) + net(2 name(OUT)) + net(3 name(VSS)) + net(4 name(NWELL)) + net(5 name(IN)) + net(6 name(BULK)) + + # Outgoing pins and their connections to nets + pin(1 name(VDD)) + pin(2 name(OUT)) + pin(3 name(VSS)) + pin(4 name(NWELL)) + pin(5 name(IN)) + pin(6 name(BULK)) + + # Devices and their connections + device(1 PMOS + name($1) + param(L 0.25) + param(W 1.5) + param(AS 0) + param(AD 0) + param(PS 0) + param(PD 0) + terminal(S 1) + terminal(G 5) + terminal(D 2) + terminal(B 4) + ) + device(2 NMOS + name($2) + param(L 0.25) + param(W 0.95) + param(AS 0) + param(AD 0) + param(PS 0) + param(PD 0) + terminal(S 3) + terminal(G 5) + terminal(D 2) + terminal(B 6) + ) + + ) + circuit(RINGO + + # Nets + net(1 name(VSS)) + net(2 name(VDD)) + net(3 name(FB)) + net(4 name(ENABLE)) + net(5 name(OUT)) + net(6 name('1')) + net(7 name('2')) + net(8 name('3')) + net(9 name('4')) + net(10 name('5')) + net(11 name('6')) + net(12 name('7')) + net(13 name('8')) + net(14 name('9')) + net(15 name('10')) + + # Outgoing pins and their connections to nets + pin(1 name(VSS)) + pin(2 name(VDD)) + pin(3 name(FB)) + pin(4 name(ENABLE)) + pin(5 name(OUT)) + + # Subcircuits and their connections + circuit(1 ND2X1 name($1) + pin(0 2) + pin(1 6) + pin(2 1) + pin(3 2) + pin(4 3) + pin(5 4) + pin(6 1) + ) + circuit(2 INVX1 name($2) + pin(0 2) + pin(1 7) + pin(2 1) + pin(3 2) + pin(4 6) + pin(5 1) + ) + circuit(3 INVX1 name($3) + pin(0 2) + pin(1 8) + pin(2 1) + pin(3 2) + pin(4 7) + pin(5 1) + ) + circuit(4 INVX1 name($4) + pin(0 2) + pin(1 9) + pin(2 1) + pin(3 2) + pin(4 8) + pin(5 1) + ) + circuit(5 INVX1 name($5) + pin(0 2) + pin(1 10) + pin(2 1) + pin(3 2) + pin(4 9) + pin(5 1) + ) + circuit(6 INVX1 name($6) + pin(0 2) + pin(1 11) + pin(2 1) + pin(3 2) + pin(4 10) + pin(5 1) + ) + circuit(7 INVX1 name($7) + pin(0 2) + pin(1 12) + pin(2 1) + pin(3 2) + pin(4 11) + pin(5 1) + ) + circuit(8 INVX1 name($8) + pin(0 2) + pin(1 13) + pin(2 1) + pin(3 2) + pin(4 12) + pin(5 1) + ) + circuit(9 INVX1 name($9) + pin(0 2) + pin(1 14) + pin(2 1) + pin(3 2) + pin(4 13) + pin(5 1) + ) + circuit(10 INVX1 name($10) + pin(0 2) + pin(1 15) + pin(2 1) + pin(3 2) + pin(4 14) + pin(5 1) + ) + circuit(11 INVX1 name($11) + pin(0 2) + pin(1 3) + pin(2 1) + pin(3 2) + pin(4 15) + pin(5 1) + ) + circuit(12 INVX1 name($12) + pin(0 2) + pin(1 5) + pin(2 1) + pin(3 2) + pin(4 3) + pin(5 1) + ) + + ) +) + +# Cross reference +xref( + circuit(INVX1 INVX1 match + xref( + net(4 4 match) + net(5 5 match) + net(2 2 match) + net(6 6 match) + net(1 1 match) + net(3 3 match) + pin(3 3 match) + pin(4 4 match) + pin(1 1 match) + pin(5 5 match) + pin(0 0 match) + pin(2 2 match) + device(2 2 match) + device(1 1 match) + ) + ) + circuit(ND2X1 ND2X1 match + xref( + net(8 8 match) + net(4 4 match) + net(6 6 match) + net(5 5 match) + net(2 2 match) + net(7 7 match) + net(1 1 match) + net(3 3 match) + pin(3 3 match) + pin(5 5 match) + pin(4 4 match) + pin(1 1 match) + pin(6 6 match) + pin(0 0 match) + pin(2 2 match) + device(3 3 match) + device(4 4 match) + device(1 1 match) + device(2 2 match) + ) + ) + circuit(RINGO RINGO match + xref( + net(1 6 match) + net(10 15 match) + net(2 7 match) + net(3 8 match) + net(4 9 match) + net(5 10 match) + net(6 11 match) + net(7 12 match) + net(8 13 match) + net(9 14 match) + net(14 4 match) + net(11 3 match) + net(13 5 match) + net(12 2 match) + net(15 1 match) + pin(3 3 match) + pin(0 2 match) + pin(2 4 match) + pin(1 1 match) + pin(4 0 match) + circuit(2 2 match) + circuit(3 3 match) + circuit(4 4 match) + circuit(5 5 match) + circuit(6 6 match) + circuit(7 7 match) + circuit(8 8 match) + circuit(9 9 match) + circuit(10 10 match) + circuit(11 11 match) + circuit(12 12 match) + circuit(1 1 match) + ) + ) +) diff --git a/testdata/lvs/ringo_simple_compare2.lvsdb.2 b/testdata/lvs/ringo_simple_compare2.lvsdb.2 new file mode 100644 index 000000000..4b945d92e --- /dev/null +++ b/testdata/lvs/ringo_simple_compare2.lvsdb.2 @@ -0,0 +1,908 @@ +#%lvsdb-klayout + +# Layout +layout( + top(RINGO) + unit(0.001) + + # Layer section + # This section lists the mask layers (drawing or derived) and their connections. + + # Mask layers + layer(l3 '1/0') + layer(l4 '5/0') + layer(l8 '8/0') + layer(l11 '9/0') + layer(l12 '10/0') + layer(l13 '11/0') + layer(l7) + layer(l2) + layer(l9) + layer(l6) + layer(l10) + + # Mask layer connectivity + connect(l3 l3 l9) + connect(l4 l4 l8) + connect(l8 l4 l8 l11 l2 l9 l6 l10) + connect(l11 l8 l11 l12) + connect(l12 l11 l12 l13) + connect(l13 l12 l13) + connect(l7 l7) + connect(l2 l8 l2) + connect(l9 l3 l8 l9) + connect(l6 l8 l6) + connect(l10 l8 l10) + + # Global nets and connectivity + global(l7 SUBSTRATE) + global(l10 SUBSTRATE) + + # Device class section + class(PMOS MOS4) + class(NMOS MOS4) + + # Device abstracts section + # Device abstracts list the pin shapes of the devices. + device(D$PMOS PMOS + terminal(S + rect(l2 (-550 -750) (425 1500)) + ) + terminal(G + rect(l4 (-125 -750) (250 1500)) + ) + terminal(D + rect(l2 (125 -750) (450 1500)) + ) + terminal(B + rect(l3 (-125 -750) (250 1500)) + ) + ) + device(D$PMOS$1 PMOS + terminal(S + rect(l2 (-575 -750) (450 1500)) + ) + terminal(G + rect(l4 (-125 -750) (250 1500)) + ) + terminal(D + rect(l2 (125 -750) (425 1500)) + ) + terminal(B + rect(l3 (-125 -750) (250 1500)) + ) + ) + device(D$PMOS$2 PMOS + terminal(S + rect(l2 (-550 -750) (425 1500)) + ) + terminal(G + rect(l4 (-125 -750) (250 1500)) + ) + terminal(D + rect(l2 (125 -750) (425 1500)) + ) + terminal(B + rect(l3 (-125 -750) (250 1500)) + ) + ) + device(D$NMOS NMOS + terminal(S + rect(l6 (-550 -475) (425 950)) + ) + terminal(G + rect(l4 (-125 -475) (250 950)) + ) + terminal(D + rect(l6 (125 -475) (450 950)) + ) + terminal(B + rect(l7 (-125 -475) (250 950)) + ) + ) + device(D$NMOS$1 NMOS + terminal(S + rect(l6 (-575 -475) (450 950)) + ) + terminal(G + rect(l4 (-125 -475) (250 950)) + ) + terminal(D + rect(l6 (125 -475) (425 950)) + ) + terminal(B + rect(l7 (-125 -475) (250 950)) + ) + ) + device(D$NMOS$2 NMOS + terminal(S + rect(l6 (-550 -475) (425 950)) + ) + terminal(G + rect(l4 (-125 -475) (250 950)) + ) + terminal(D + rect(l6 (125 -475) (425 950)) + ) + terminal(B + rect(l7 (-125 -475) (250 950)) + ) + ) + + # Circuit section + # Circuits are the hierarchical building blocks of the netlist. + circuit(ND2X1 + + # Circuit boundary + rect((-100 400) (2600 7600)) + + # Nets with their geometries + net(1 name(VDD) + rect(l8 (1110 5160) (180 180)) + rect(l8 (-180 920) (180 180)) + rect(l8 (-180 -730) (180 180)) + rect(l11 (-240 -790) (300 1700)) + rect(l11 (-1350 0) (2400 800)) + rect(l11 (-1150 -400) (0 0)) + rect(l2 (-275 -2150) (425 1500)) + rect(l2 (-400 -1500) (425 1500)) + ) + net(2 name(OUT) + rect(l8 (1810 1770) (180 180)) + rect(l8 (-180 370) (180 180)) + rect(l8 (-1580 3760) (180 180)) + rect(l8 (-180 -730) (180 180)) + rect(l8 (-180 -730) (180 180)) + rect(l8 (1220 920) (180 180)) + rect(l8 (-180 -1280) (180 180)) + rect(l8 (-180 370) (180 180)) + polygon(l11 (-240 -4180) (0 1390) (490 0) (0 -300) (-190 0) (0 -1090)) + rect(l11 (-110 1390) (300 1400)) + polygon(l11 (-1890 0) (0 600) (300 0) (0 -300) (1590 0) (0 -300)) + rect(l11 (-140 -500) (0 0)) + rect(l11 (-1750 1100) (300 1400)) + rect(l11 (1100 -1700) (300 300)) + rect(l11 (-300 0) (300 1400)) + rect(l2 (-375 -1450) (425 1500)) + rect(l2 (-1800 -1500) (425 1500)) + rect(l6 (950 -4890) (425 950)) + ) + net(3 name(VSS) + rect(l8 (410 1770) (180 180)) + rect(l8 (-180 370) (180 180)) + rect(l11 (-240 -1300) (300 1360)) + rect(l11 (-650 -2160) (2400 800)) + rect(l11 (-1150 -400) (0 0)) + rect(l6 (-950 860) (425 950)) + ) + net(4 name($4) + rect(l3 (-100 4500) (2600 3500)) + ) + net(5 name(B) + rect(l4 (1425 2860) (250 1940)) + rect(l4 (-345 -950) (300 300)) + rect(l4 (-205 650) (250 2000)) + rect(l4 (-250 -2000) (250 2000)) + rect(l4 (-250 -5390) (250 1450)) + rect(l8 (-285 1050) (180 180)) + rect(l11 (-70 -90) (0 0)) + rect(l11 (-170 -150) (300 300)) + ) + net(6 name(A) + rect(l4 (725 2860) (250 1940)) + rect(l4 (-325 -1850) (300 300)) + rect(l4 (-225 1550) (250 2000)) + rect(l4 (-250 -2000) (250 2000)) + rect(l4 (-250 -5390) (250 1450)) + rect(l8 (-265 150) (180 180)) + rect(l11 (-90 -90) (0 0)) + rect(l11 (-150 -150) (300 300)) + ) + net(7 name(SUBSTRATE)) + net(8 name($I5) + rect(l6 (975 1660) (425 950)) + rect(l6 (-400 -950) (425 950)) + ) + + # Outgoing pins and their connections to nets + pin(1 name(VDD)) + pin(2 name(OUT)) + pin(3 name(VSS)) + pin(4) + pin(5 name(B)) + pin(6 name(A)) + pin(7 name(SUBSTRATE)) + + # Devices and their connections + device(1 D$PMOS + location(850 5800) + param(L 0.25) + param(W 1.5) + param(AS 0.6375) + param(AD 0.3375) + param(PS 3.85) + param(PD 1.95) + terminal(S 2) + terminal(G 6) + terminal(D 1) + terminal(B 4) + ) + device(2 D$PMOS$1 + location(1550 5800) + param(L 0.25) + param(W 1.5) + param(AS 0.3375) + param(AD 0.6375) + param(PS 1.95) + param(PD 3.85) + terminal(S 1) + terminal(G 5) + terminal(D 2) + terminal(B 4) + ) + device(3 D$NMOS + location(850 2135) + param(L 0.25) + param(W 0.95) + param(AS 0.40375) + param(AD 0.21375) + param(PS 2.75) + param(PD 1.4) + terminal(S 3) + terminal(G 6) + terminal(D 8) + terminal(B 7) + ) + device(4 D$NMOS$1 + location(1550 2135) + param(L 0.25) + param(W 0.95) + param(AS 0.21375) + param(AD 0.40375) + param(PS 1.4) + param(PD 2.75) + terminal(S 8) + terminal(G 5) + terminal(D 2) + terminal(B 7) + ) + + ) + circuit(INVX1 + + # Circuit boundary + rect((-100 400) (2000 7600)) + + # Nets with their geometries + net(1 name(VDD) + rect(l8 (410 6260) (180 180)) + rect(l8 (-180 -730) (180 180)) + rect(l8 (-180 -730) (180 180)) + rect(l11 (-240 -240) (300 1400)) + rect(l11 (-650 300) (1800 800)) + rect(l11 (-1450 -1100) (300 300)) + rect(l11 (300 400) (0 0)) + rect(l2 (-650 -2150) (425 1500)) + ) + net(2 name(OUT) + rect(l8 (1110 5160) (180 180)) + rect(l8 (-180 920) (180 180)) + rect(l8 (-180 -730) (180 180)) + rect(l8 (-180 -4120) (180 180)) + rect(l8 (-180 370) (180 180)) + rect(l11 (-240 -790) (300 4790)) + rect(l11 (-150 -2500) (0 0)) + rect(l2 (-225 1050) (425 1500)) + rect(l6 (-425 -4890) (425 950)) + ) + net(3 name(VSS) + rect(l8 (410 1770) (180 180)) + rect(l8 (-180 370) (180 180)) + rect(l11 (-240 -1300) (300 1360)) + rect(l11 (-650 -2160) (1800 800)) + rect(l11 (-850 -400) (0 0)) + rect(l6 (-650 860) (425 950)) + ) + net(4 name($4) + rect(l3 (-100 4500) (2000 3500)) + ) + net(5 name(IN) + rect(l4 (725 2860) (250 1940)) + rect(l4 (-525 -1850) (300 300)) + rect(l4 (-25 1550) (250 2000)) + rect(l4 (-250 -2000) (250 2000)) + rect(l4 (-250 -5390) (250 1450)) + rect(l8 (-465 150) (180 180)) + rect(l11 (-90 -90) (0 0)) + rect(l11 (-150 -150) (300 300)) + ) + net(6 name(SUBSTRATE)) + + # Outgoing pins and their connections to nets + pin(1 name(VDD)) + pin(2 name(OUT)) + pin(3 name(VSS)) + pin(4) + pin(5 name(IN)) + pin(6 name(SUBSTRATE)) + + # Devices and their connections + device(1 D$PMOS$2 + location(850 5800) + param(L 0.25) + param(W 1.5) + param(AS 0.6375) + param(AD 0.6375) + param(PS 3.85) + param(PD 3.85) + terminal(S 1) + terminal(G 5) + terminal(D 2) + terminal(B 4) + ) + device(2 D$NMOS$2 + location(850 2135) + param(L 0.25) + param(W 0.95) + param(AS 0.40375) + param(AD 0.40375) + param(PS 2.75) + param(PD 2.75) + terminal(S 3) + terminal(G 5) + terminal(D 2) + terminal(B 6) + ) + + ) + circuit(RINGO + + # Circuit boundary + rect((0 350) (25800 7650)) + + # Nets with their geometries + net(1 name($1) + rect(l11 (4040 2950) (610 300)) + ) + net(2 name($2) + rect(l11 (5550 2950) (900 300)) + ) + net(3 name($3) + rect(l11 (7350 2950) (900 300)) + ) + net(4 name($4) + rect(l11 (9150 2950) (900 300)) + ) + net(5 name($5) + rect(l11 (10950 2950) (900 300)) + ) + net(6 name($6) + rect(l11 (12750 2950) (900 300)) + ) + net(7 name($7) + rect(l11 (14550 2950) (900 300)) + ) + net(8 name($8) + rect(l11 (16350 2950) (900 300)) + ) + net(9 name($9) + rect(l11 (18150 2950) (900 300)) + ) + net(10 name($10) + rect(l11 (19950 2950) (900 300)) + ) + net(11 name(FB) + rect(l11 (21750 2950) (900 300)) + rect(l11 (-19530 590) (320 320)) + rect(l11 (17820 -320) (320 320)) + rect(l12 (-18400 -260) (200 200)) + rect(l12 (17940 -200) (200 200)) + rect(l13 (-18040 -300) (17740 400)) + rect(l13 (-17920 -200) (0 0)) + rect(l13 (-220 -200) (400 400)) + rect(l13 (17740 -400) (400 400)) + ) + net(12 name(VDD) + rect(l3 (0 4500) (600 3500)) + rect(l3 (23300 -3500) (1400 3500)) + rect(l3 (-100 -3500) (600 3500)) + rect(l3 (-25300 -3500) (1400 3500)) + rect(l8 (22610 -1240) (180 180)) + rect(l8 (-180 370) (180 180)) + rect(l8 (-180 -1280) (180 180)) + rect(l8 (-23580 370) (180 180)) + rect(l8 (-180 370) (180 180)) + rect(l8 (-180 -1280) (180 180)) + rect(l11 (1660 860) (0 0)) + rect(l11 (-2950 -450) (600 800)) + rect(l11 (23400 -800) (1200 800)) + rect(l11 (-750 -1450) (300 1400)) + rect(l11 (-100 -350) (0 0)) + rect(l11 (550 -400) (600 800)) + rect(l11 (-25200 -800) (1200 800)) + rect(l11 (-750 -1450) (300 1400)) + rect(l11 (-100 -350) (0 0)) + rect(l9 (23100 -1100) (500 1500)) + rect(l9 (-23900 -1500) (500 1500)) + ) + net(13 name(OUT) + rect(l11 (23440 3840) (320 320)) + rect(l12 (-260 -260) (200 200)) + rect(l13 (-100 -100) (0 0)) + rect(l13 (-200 -200) (400 400)) + ) + net(14 name(ENABLE) + rect(l11 (2440 2940) (320 320)) + rect(l12 (-260 -260) (200 200)) + rect(l13 (-100 -100) (0 0)) + rect(l13 (-200 -200) (400 400)) + ) + net(15 name(VSS) + rect(l8 (24510 1610) (180 180)) + rect(l8 (-180 -1280) (180 180)) + rect(l8 (-180 370) (180 180)) + rect(l8 (-23580 370) (180 180)) + rect(l8 (-180 -1280) (180 180)) + rect(l8 (-180 370) (180 180)) + rect(l11 (1660 -390) (0 0)) + rect(l11 (21500 -400) (300 1400)) + rect(l11 (-750 -1450) (1200 800)) + rect(l11 (-550 -400) (0 0)) + rect(l11 (550 -400) (600 800)) + rect(l11 (-25800 -800) (600 800)) + rect(l11 (450 -750) (300 1400)) + rect(l11 (-750 -1450) (1200 800)) + rect(l11 (-550 -400) (0 0)) + rect(l10 (23100 -400) (500 1500)) + rect(l10 (-23900 -1500) (500 1500)) + ) + + # Outgoing pins and their connections to nets + pin(11 name(FB)) + pin(12 name(VDD)) + pin(13 name(OUT)) + pin(14 name(ENABLE)) + pin(15 name(VSS)) + + # Subcircuits and their connections + circuit(1 ND2X1 location(1800 0) + pin(0 12) + pin(1 1) + pin(2 15) + pin(3 12) + pin(4 11) + pin(5 14) + pin(6 15) + ) + circuit(2 INVX1 location(4200 0) + pin(0 12) + pin(1 2) + pin(2 15) + pin(3 12) + pin(4 1) + pin(5 15) + ) + circuit(3 INVX1 location(6000 0) + pin(0 12) + pin(1 3) + pin(2 15) + pin(3 12) + pin(4 2) + pin(5 15) + ) + circuit(4 INVX1 location(7800 0) + pin(0 12) + pin(1 4) + pin(2 15) + pin(3 12) + pin(4 3) + pin(5 15) + ) + circuit(5 INVX1 location(9600 0) + pin(0 12) + pin(1 5) + pin(2 15) + pin(3 12) + pin(4 4) + pin(5 15) + ) + circuit(6 INVX1 location(11400 0) + pin(0 12) + pin(1 6) + pin(2 15) + pin(3 12) + pin(4 5) + pin(5 15) + ) + circuit(7 INVX1 location(13200 0) + pin(0 12) + pin(1 7) + pin(2 15) + pin(3 12) + pin(4 6) + pin(5 15) + ) + circuit(8 INVX1 location(15000 0) + pin(0 12) + pin(1 8) + pin(2 15) + pin(3 12) + pin(4 7) + pin(5 15) + ) + circuit(9 INVX1 location(16800 0) + pin(0 12) + pin(1 9) + pin(2 15) + pin(3 12) + pin(4 8) + pin(5 15) + ) + circuit(10 INVX1 location(18600 0) + pin(0 12) + pin(1 10) + pin(2 15) + pin(3 12) + pin(4 9) + pin(5 15) + ) + circuit(11 INVX1 location(20400 0) + pin(0 12) + pin(1 11) + pin(2 15) + pin(3 12) + pin(4 10) + pin(5 15) + ) + circuit(12 INVX1 location(22200 0) + pin(0 12) + pin(1 13) + pin(2 15) + pin(3 12) + pin(4 11) + pin(5 15) + ) + + ) +) + +# Reference netlist +reference( + + # Device class section + class(PMOS MOS4) + class(NMOS MOS4) + + # Circuit section + # Circuits are the hierarchical building blocks of the netlist. + circuit(ND2X1 + + # Nets + net(1 name(VDD)) + net(2 name(OUT)) + net(3 name(VSS)) + net(4 name(NWELL)) + net(5 name(B)) + net(6 name(A)) + net(7 name(BULK)) + net(8 name('1')) + + # Outgoing pins and their connections to nets + pin(1 name(VDD)) + pin(2 name(OUT)) + pin(3 name(VSS)) + pin(4 name(NWELL)) + pin(5 name(B)) + pin(6 name(A)) + pin(7 name(BULK)) + + # Devices and their connections + device(1 PMOS + name($1) + param(L 0.25) + param(W 1.5) + param(AS 0) + param(AD 0) + param(PS 0) + param(PD 0) + terminal(S 1) + terminal(G 6) + terminal(D 2) + terminal(B 4) + ) + device(2 PMOS + name($2) + param(L 0.25) + param(W 1.5) + param(AS 0) + param(AD 0) + param(PS 0) + param(PD 0) + terminal(S 1) + terminal(G 5) + terminal(D 2) + terminal(B 4) + ) + device(3 NMOS + name($3) + param(L 0.25) + param(W 0.95) + param(AS 0) + param(AD 0) + param(PS 0) + param(PD 0) + terminal(S 3) + terminal(G 6) + terminal(D 8) + terminal(B 7) + ) + device(4 NMOS + name($4) + param(L 0.25) + param(W 0.95) + param(AS 0) + param(AD 0) + param(PS 0) + param(PD 0) + terminal(S 8) + terminal(G 5) + terminal(D 2) + terminal(B 7) + ) + + ) + circuit(INVX1 + + # Nets + net(1 name(VDD)) + net(2 name(OUT)) + net(3 name(VSS)) + net(4 name(NWELL)) + net(5 name(IN)) + net(6 name(BULK)) + + # Outgoing pins and their connections to nets + pin(1 name(VDD)) + pin(2 name(OUT)) + pin(3 name(VSS)) + pin(4 name(NWELL)) + pin(5 name(IN)) + pin(6 name(BULK)) + + # Devices and their connections + device(1 PMOS + name($1) + param(L 0.25) + param(W 1.5) + param(AS 0) + param(AD 0) + param(PS 0) + param(PD 0) + terminal(S 1) + terminal(G 5) + terminal(D 2) + terminal(B 4) + ) + device(2 NMOS + name($2) + param(L 0.25) + param(W 0.95) + param(AS 0) + param(AD 0) + param(PS 0) + param(PD 0) + terminal(S 3) + terminal(G 5) + terminal(D 2) + terminal(B 6) + ) + + ) + circuit(RINGO + + # Nets + net(1 name(VSS)) + net(2 name(VDD)) + net(3 name(FB)) + net(4 name(ENABLE)) + net(5 name(OUT)) + net(6 name('1')) + net(7 name('2')) + net(8 name('3')) + net(9 name('4')) + net(10 name('5')) + net(11 name('6')) + net(12 name('7')) + net(13 name('8')) + net(14 name('9')) + net(15 name('10')) + + # Outgoing pins and their connections to nets + pin(1 name(VSS)) + pin(2 name(VDD)) + pin(3 name(FB)) + pin(4 name(ENABLE)) + pin(5 name(OUT)) + + # Subcircuits and their connections + circuit(1 ND2X1 name($1) + pin(0 2) + pin(1 6) + pin(2 1) + pin(3 2) + pin(4 3) + pin(5 4) + pin(6 1) + ) + circuit(2 INVX1 name($2) + pin(0 2) + pin(1 7) + pin(2 1) + pin(3 2) + pin(4 6) + pin(5 1) + ) + circuit(3 INVX1 name($3) + pin(0 2) + pin(1 8) + pin(2 1) + pin(3 2) + pin(4 7) + pin(5 1) + ) + circuit(4 INVX1 name($4) + pin(0 2) + pin(1 9) + pin(2 1) + pin(3 2) + pin(4 8) + pin(5 1) + ) + circuit(5 INVX1 name($5) + pin(0 2) + pin(1 10) + pin(2 1) + pin(3 2) + pin(4 9) + pin(5 1) + ) + circuit(6 INVX1 name($6) + pin(0 2) + pin(1 11) + pin(2 1) + pin(3 2) + pin(4 10) + pin(5 1) + ) + circuit(7 INVX1 name($7) + pin(0 2) + pin(1 12) + pin(2 1) + pin(3 2) + pin(4 11) + pin(5 1) + ) + circuit(8 INVX1 name($8) + pin(0 2) + pin(1 13) + pin(2 1) + pin(3 2) + pin(4 12) + pin(5 1) + ) + circuit(9 INVX1 name($9) + pin(0 2) + pin(1 14) + pin(2 1) + pin(3 2) + pin(4 13) + pin(5 1) + ) + circuit(10 INVX1 name($10) + pin(0 2) + pin(1 15) + pin(2 1) + pin(3 2) + pin(4 14) + pin(5 1) + ) + circuit(11 INVX1 name($11) + pin(0 2) + pin(1 3) + pin(2 1) + pin(3 2) + pin(4 15) + pin(5 1) + ) + circuit(12 INVX1 name($12) + pin(0 2) + pin(1 5) + pin(2 1) + pin(3 2) + pin(4 3) + pin(5 1) + ) + + ) +) + +# Cross reference +xref( + circuit(INVX1 INVX1 match + xref( + net(4 4 match) + net(5 5 match) + net(2 2 match) + net(6 6 match) + net(1 1 match) + net(3 3 match) + pin(3 3 match) + pin(4 4 match) + pin(1 1 match) + pin(5 5 match) + pin(0 0 match) + pin(2 2 match) + device(2 2 match) + device(1 1 match) + ) + ) + circuit(ND2X1 ND2X1 match + xref( + net(8 8 match) + net(4 4 match) + net(6 6 match) + net(5 5 match) + net(2 2 match) + net(7 7 match) + net(1 1 match) + net(3 3 match) + pin(3 3 match) + pin(5 5 match) + pin(4 4 match) + pin(1 1 match) + pin(6 6 match) + pin(0 0 match) + pin(2 2 match) + device(3 3 match) + device(4 4 match) + device(1 1 match) + device(2 2 match) + ) + ) + circuit(RINGO RINGO match + xref( + net(1 6 match) + net(10 15 match) + net(2 7 match) + net(3 8 match) + net(4 9 match) + net(5 10 match) + net(6 11 match) + net(7 12 match) + net(8 13 match) + net(9 14 match) + net(14 4 match) + net(11 3 match) + net(13 5 match) + net(12 2 match) + net(15 1 match) + pin(3 3 match) + pin(0 2 match) + pin(2 4 match) + pin(1 1 match) + pin(4 0 match) + circuit(2 2 match) + circuit(3 3 match) + circuit(4 4 match) + circuit(5 5 match) + circuit(6 6 match) + circuit(7 7 match) + circuit(8 8 match) + circuit(9 9 match) + circuit(10 10 match) + circuit(11 11 match) + circuit(12 12 match) + circuit(1 1 match) + ) + ) +) diff --git a/testdata/lvs/ringo_simple_dmos.lvsdb.2 b/testdata/lvs/ringo_simple_dmos.lvsdb.2 new file mode 100644 index 000000000..3b4143039 --- /dev/null +++ b/testdata/lvs/ringo_simple_dmos.lvsdb.2 @@ -0,0 +1,889 @@ +#%lvsdb-klayout + +# Layout +layout( + top(RINGO) + unit(0.001) + + # Layer section + # This section lists the mask layers (drawing or derived) and their connections. + + # Mask layers + layer(l4 '1/0') + layer(l5 '5/0') + layer(l10 '8/0') + layer(l13 '9/0') + layer(l14 '10/0') + layer(l15 '11/0') + layer(l9) + layer(l3) + layer(l1) + layer(l11) + layer(l8) + layer(l6) + layer(l12) + + # Mask layer connectivity + connect(l4 l4 l11) + connect(l5 l5 l10) + connect(l10 l5 l10 l13 l3 l1 l11 l8 l6 l12) + connect(l13 l10 l13 l14) + connect(l14 l13 l14 l15) + connect(l15 l14 l15) + connect(l9 l9) + connect(l3 l10 l3) + connect(l1 l10 l1) + connect(l11 l4 l10 l11) + connect(l8 l10 l8) + connect(l6 l10 l6) + connect(l12 l10 l12) + + # Global nets and connectivity + global(l9 SUBSTRATE) + global(l12 SUBSTRATE) + + # Device class section + class(PMOS MOS4) + class(NMOS MOS4) + + # Device abstracts section + # Device abstracts list the pin shapes of the devices. + device(D$PMOS PMOS + terminal(S + rect(l3 (125 -750) (450 1500)) + ) + terminal(G + rect(l5 (-125 -750) (250 1500)) + ) + terminal(D + rect(l1 (-550 -750) (425 1500)) + ) + terminal(B + rect(l4 (-125 -750) (250 1500)) + ) + ) + device(D$PMOS$1 PMOS + terminal(S + rect(l3 (-575 -750) (450 1500)) + ) + terminal(G + rect(l5 (-125 -750) (250 1500)) + ) + terminal(D + rect(l1 (125 -750) (425 1500)) + ) + terminal(B + rect(l4 (-125 -750) (250 1500)) + ) + ) + device(D$PMOS$2 PMOS + terminal(S + rect(l3 (-550 -750) (425 1500)) + ) + terminal(G + rect(l5 (-125 -750) (250 1500)) + ) + terminal(D + rect(l1 (125 -750) (425 1500)) + ) + terminal(B + rect(l4 (-125 -750) (250 1500)) + ) + ) + device(D$NMOS NMOS + terminal(S + rect(l8 (125 -475) (450 950)) + ) + terminal(G + rect(l5 (-125 -475) (250 950)) + ) + terminal(D + rect(l6 (-550 -475) (425 950)) + ) + terminal(B + rect(l9 (-125 -475) (250 950)) + ) + ) + device(D$NMOS$1 NMOS + terminal(S + rect(l8 (-575 -475) (450 950)) + ) + terminal(G + rect(l5 (-125 -475) (250 950)) + ) + terminal(D + rect(l6 (125 -475) (425 950)) + ) + terminal(B + rect(l9 (-125 -475) (250 950)) + ) + ) + device(D$NMOS$2 NMOS + terminal(S + rect(l8 (-550 -475) (425 950)) + ) + terminal(G + rect(l5 (-125 -475) (250 950)) + ) + terminal(D + rect(l6 (125 -475) (425 950)) + ) + terminal(B + rect(l9 (-125 -475) (250 950)) + ) + ) + + # Circuit section + # Circuits are the hierarchical building blocks of the netlist. + circuit(ND2X1 + + # Circuit boundary + rect((-100 400) (2600 7600)) + + # Nets with their geometries + net(1 name(VDD) + rect(l10 (1110 5160) (180 180)) + rect(l10 (-180 920) (180 180)) + rect(l10 (-180 -730) (180 180)) + rect(l13 (-240 -790) (300 1700)) + rect(l13 (-1350 0) (2400 800)) + rect(l13 (-1150 -400) (0 0)) + rect(l3 (-250 -2150) (425 1500)) + rect(l3 (-450 -1500) (425 1500)) + ) + net(2 name(OUT) + rect(l10 (1810 1770) (180 180)) + rect(l10 (-180 370) (180 180)) + rect(l10 (-1580 3760) (180 180)) + rect(l10 (-180 -730) (180 180)) + rect(l10 (-180 -730) (180 180)) + rect(l10 (1220 920) (180 180)) + rect(l10 (-180 -1280) (180 180)) + rect(l10 (-180 370) (180 180)) + polygon(l13 (-240 -4180) (0 1390) (490 0) (0 -300) (-190 0) (0 -1090)) + rect(l13 (-110 1390) (300 1400)) + polygon(l13 (-1890 0) (0 600) (300 0) (0 -300) (1590 0) (0 -300)) + rect(l13 (-140 -500) (0 0)) + rect(l13 (-1750 1100) (300 1400)) + rect(l13 (1100 -1700) (300 300)) + rect(l13 (-300 0) (300 1400)) + rect(l1 (-1750 -1450) (425 1500)) + rect(l1 (950 -1500) (425 1500)) + rect(l6 (-425 -4890) (425 950)) + ) + net(3 name(VSS) + rect(l10 (410 1770) (180 180)) + rect(l10 (-180 370) (180 180)) + rect(l13 (-240 -1300) (300 1360)) + rect(l13 (-650 -2160) (2400 800)) + rect(l13 (-1150 -400) (0 0)) + rect(l6 (-950 860) (425 950)) + ) + net(4 name($4) + rect(l8 (1000 1660) (425 950)) + rect(l8 (-450 -950) (425 950)) + ) + net(5 name($5) + rect(l4 (-100 4500) (2600 3500)) + ) + net(6 name(B) + rect(l5 (1425 2860) (250 1940)) + rect(l5 (-345 -950) (300 300)) + rect(l5 (-205 650) (250 2000)) + rect(l5 (-250 -2000) (250 2000)) + rect(l5 (-250 -5390) (250 1450)) + rect(l10 (-285 1050) (180 180)) + rect(l13 (-70 -90) (0 0)) + rect(l13 (-170 -150) (300 300)) + ) + net(7 name(A) + rect(l5 (725 2860) (250 1940)) + rect(l5 (-325 -1850) (300 300)) + rect(l5 (-225 1550) (250 2000)) + rect(l5 (-250 -2000) (250 2000)) + rect(l5 (-250 -5390) (250 1450)) + rect(l10 (-265 150) (180 180)) + rect(l13 (-90 -90) (0 0)) + rect(l13 (-150 -150) (300 300)) + ) + net(8 name(SUBSTRATE)) + + # Outgoing pins and their connections to nets + pin(1 name(VDD)) + pin(2 name(OUT)) + pin(3 name(VSS)) + pin(5) + pin(6 name(B)) + pin(7 name(A)) + pin(8 name(SUBSTRATE)) + + # Devices and their connections + device(1 D$PMOS + location(850 5800) + param(L 0.25) + param(W 1.5) + param(AS 0.3375) + param(AD 0.6375) + param(PS 1.95) + param(PD 3.85) + terminal(S 1) + terminal(G 7) + terminal(D 2) + terminal(B 5) + ) + device(2 D$PMOS$1 + location(1550 5800) + param(L 0.25) + param(W 1.5) + param(AS 0.3375) + param(AD 0.6375) + param(PS 1.95) + param(PD 3.85) + terminal(S 1) + terminal(G 6) + terminal(D 2) + terminal(B 5) + ) + device(3 D$NMOS + location(850 2135) + param(L 0.25) + param(W 0.95) + param(AS 0.21375) + param(AD 0.40375) + param(PS 1.4) + param(PD 2.75) + terminal(S 4) + terminal(G 7) + terminal(D 3) + terminal(B 8) + ) + device(4 D$NMOS$1 + location(1550 2135) + param(L 0.25) + param(W 0.95) + param(AS 0.21375) + param(AD 0.40375) + param(PS 1.4) + param(PD 2.75) + terminal(S 4) + terminal(G 6) + terminal(D 2) + terminal(B 8) + ) + + ) + circuit(INVX1 + + # Circuit boundary + rect((-100 400) (2000 7600)) + + # Nets with their geometries + net(1 name(VDD) + rect(l10 (410 6260) (180 180)) + rect(l10 (-180 -730) (180 180)) + rect(l10 (-180 -730) (180 180)) + rect(l13 (-240 -240) (300 1400)) + rect(l13 (-650 300) (1800 800)) + rect(l13 (-1450 -1100) (300 300)) + rect(l13 (300 400) (0 0)) + rect(l3 (-650 -2150) (425 1500)) + ) + net(2 name(OUT) + rect(l10 (1110 5160) (180 180)) + rect(l10 (-180 920) (180 180)) + rect(l10 (-180 -730) (180 180)) + rect(l10 (-180 -4120) (180 180)) + rect(l10 (-180 370) (180 180)) + rect(l13 (-240 -790) (300 4790)) + rect(l13 (-150 -2500) (0 0)) + rect(l1 (-225 1050) (425 1500)) + rect(l6 (-425 -4890) (425 950)) + ) + net(3 name(VSS) + rect(l10 (410 1770) (180 180)) + rect(l10 (-180 370) (180 180)) + rect(l13 (-240 -1300) (300 1360)) + rect(l13 (-650 -2160) (1800 800)) + rect(l13 (-850 -400) (0 0)) + rect(l8 (-650 860) (425 950)) + ) + net(4 name($4) + rect(l4 (-100 4500) (2000 3500)) + ) + net(5 name(IN) + rect(l5 (725 2860) (250 1940)) + rect(l5 (-525 -1850) (300 300)) + rect(l5 (-25 1550) (250 2000)) + rect(l5 (-250 -2000) (250 2000)) + rect(l5 (-250 -5390) (250 1450)) + rect(l10 (-465 150) (180 180)) + rect(l13 (-90 -90) (0 0)) + rect(l13 (-150 -150) (300 300)) + ) + net(6 name(SUBSTRATE)) + + # Outgoing pins and their connections to nets + pin(1 name(VDD)) + pin(2 name(OUT)) + pin(3 name(VSS)) + pin(4) + pin(5 name(IN)) + pin(6 name(SUBSTRATE)) + + # Devices and their connections + device(1 D$PMOS$2 + location(850 5800) + param(L 0.25) + param(W 1.5) + param(AS 0.6375) + param(AD 0.6375) + param(PS 3.85) + param(PD 3.85) + terminal(S 1) + terminal(G 5) + terminal(D 2) + terminal(B 4) + ) + device(2 D$NMOS$2 + location(850 2135) + param(L 0.25) + param(W 0.95) + param(AS 0.40375) + param(AD 0.40375) + param(PS 2.75) + param(PD 2.75) + terminal(S 3) + terminal(G 5) + terminal(D 2) + terminal(B 6) + ) + + ) + circuit(RINGO + + # Circuit boundary + rect((0 350) (25800 7650)) + + # Nets with their geometries + net(1 name($1) + rect(l13 (4040 2950) (610 300)) + ) + net(2 name($2) + rect(l13 (5550 2950) (900 300)) + ) + net(3 name($3) + rect(l13 (7350 2950) (900 300)) + ) + net(4 name($4) + rect(l13 (9150 2950) (900 300)) + ) + net(5 name($5) + rect(l13 (10950 2950) (900 300)) + ) + net(6 name($6) + rect(l13 (12750 2950) (900 300)) + ) + net(7 name($7) + rect(l13 (14550 2950) (900 300)) + ) + net(8 name($8) + rect(l13 (16350 2950) (900 300)) + ) + net(9 name($9) + rect(l13 (18150 2950) (900 300)) + ) + net(10 name($10) + rect(l13 (19950 2950) (900 300)) + ) + net(11 name(FB) + rect(l13 (21750 2950) (900 300)) + rect(l13 (-19530 590) (320 320)) + rect(l13 (17820 -320) (320 320)) + rect(l14 (-18400 -260) (200 200)) + rect(l14 (17940 -200) (200 200)) + rect(l15 (-18040 -300) (17740 400)) + rect(l15 (-17920 -200) (0 0)) + rect(l15 (-220 -200) (400 400)) + rect(l15 (17740 -400) (400 400)) + ) + net(12 name(VDD) + rect(l4 (0 4500) (600 3500)) + rect(l4 (23300 -3500) (1400 3500)) + rect(l4 (-100 -3500) (600 3500)) + rect(l4 (-25300 -3500) (1400 3500)) + rect(l10 (22610 -1240) (180 180)) + rect(l10 (-180 370) (180 180)) + rect(l10 (-180 -1280) (180 180)) + rect(l10 (-23580 370) (180 180)) + rect(l10 (-180 370) (180 180)) + rect(l10 (-180 -1280) (180 180)) + rect(l13 (1660 860) (0 0)) + rect(l13 (-2950 -450) (600 800)) + rect(l13 (23400 -800) (1200 800)) + rect(l13 (-750 -1450) (300 1400)) + rect(l13 (-100 -350) (0 0)) + rect(l13 (550 -400) (600 800)) + rect(l13 (-25200 -800) (1200 800)) + rect(l13 (-750 -1450) (300 1400)) + rect(l13 (-100 -350) (0 0)) + rect(l11 (23100 -1100) (500 1500)) + rect(l11 (-23900 -1500) (500 1500)) + ) + net(13 name(OUT) + rect(l13 (23440 3840) (320 320)) + rect(l14 (-260 -260) (200 200)) + rect(l15 (-100 -100) (0 0)) + rect(l15 (-200 -200) (400 400)) + ) + net(14 name(ENABLE) + rect(l13 (2440 2940) (320 320)) + rect(l14 (-260 -260) (200 200)) + rect(l15 (-100 -100) (0 0)) + rect(l15 (-200 -200) (400 400)) + ) + net(15 name(VSS) + rect(l10 (24510 1610) (180 180)) + rect(l10 (-180 -1280) (180 180)) + rect(l10 (-180 370) (180 180)) + rect(l10 (-23580 370) (180 180)) + rect(l10 (-180 -1280) (180 180)) + rect(l10 (-180 370) (180 180)) + rect(l13 (1660 -390) (0 0)) + rect(l13 (21500 -400) (300 1400)) + rect(l13 (-750 -1450) (1200 800)) + rect(l13 (-550 -400) (0 0)) + rect(l13 (550 -400) (600 800)) + rect(l13 (-25800 -800) (600 800)) + rect(l13 (450 -750) (300 1400)) + rect(l13 (-750 -1450) (1200 800)) + rect(l13 (-550 -400) (0 0)) + rect(l12 (23100 -400) (500 1500)) + rect(l12 (-23900 -1500) (500 1500)) + ) + + # Outgoing pins and their connections to nets + pin(11 name(FB)) + pin(12 name(VDD)) + pin(13 name(OUT)) + pin(14 name(ENABLE)) + pin(15 name(VSS)) + + # Subcircuits and their connections + circuit(1 ND2X1 location(1800 0) + pin(0 12) + pin(1 1) + pin(2 15) + pin(3 12) + pin(4 11) + pin(5 14) + pin(6 15) + ) + circuit(2 INVX1 location(4200 0) + pin(0 12) + pin(1 2) + pin(2 15) + pin(3 12) + pin(4 1) + pin(5 15) + ) + circuit(3 INVX1 location(6000 0) + pin(0 12) + pin(1 3) + pin(2 15) + pin(3 12) + pin(4 2) + pin(5 15) + ) + circuit(4 INVX1 location(7800 0) + pin(0 12) + pin(1 4) + pin(2 15) + pin(3 12) + pin(4 3) + pin(5 15) + ) + circuit(5 INVX1 location(9600 0) + pin(0 12) + pin(1 5) + pin(2 15) + pin(3 12) + pin(4 4) + pin(5 15) + ) + circuit(6 INVX1 location(11400 0) + pin(0 12) + pin(1 6) + pin(2 15) + pin(3 12) + pin(4 5) + pin(5 15) + ) + circuit(7 INVX1 location(13200 0) + pin(0 12) + pin(1 7) + pin(2 15) + pin(3 12) + pin(4 6) + pin(5 15) + ) + circuit(8 INVX1 location(15000 0) + pin(0 12) + pin(1 8) + pin(2 15) + pin(3 12) + pin(4 7) + pin(5 15) + ) + circuit(9 INVX1 location(16800 0) + pin(0 12) + pin(1 9) + pin(2 15) + pin(3 12) + pin(4 8) + pin(5 15) + ) + circuit(10 INVX1 location(18600 0) + pin(0 12) + pin(1 10) + pin(2 15) + pin(3 12) + pin(4 9) + pin(5 15) + ) + circuit(11 INVX1 location(20400 0) + pin(0 12) + pin(1 11) + pin(2 15) + pin(3 12) + pin(4 10) + pin(5 15) + ) + circuit(12 INVX1 location(22200 0) + pin(0 12) + pin(1 13) + pin(2 15) + pin(3 12) + pin(4 11) + pin(5 15) + ) + + ) +) + +# Reference netlist +reference( + + # Device class section + class(PMOS MOS4) + class(NMOS MOS4) + + # Circuit section + # Circuits are the hierarchical building blocks of the netlist. + circuit(ND2X1 + + # Nets + net(1 name(VDD)) + net(2 name(OUT)) + net(3 name(VSS)) + net(4 name(NWELL)) + net(5 name(B)) + net(6 name(A)) + net(7 name(BULK)) + net(8 name('1')) + + # Outgoing pins and their connections to nets + pin(1 name(VDD)) + pin(2 name(OUT)) + pin(3 name(VSS)) + pin(4 name(NWELL)) + pin(5 name(B)) + pin(6 name(A)) + pin(7 name(BULK)) + + # Devices and their connections + device(1 PMOS + name($1) + param(L 0.25) + param(W 1.5) + param(AS 0) + param(AD 0) + param(PS 0) + param(PD 0) + terminal(S 1) + terminal(G 6) + terminal(D 2) + terminal(B 4) + ) + device(2 PMOS + name($2) + param(L 0.25) + param(W 1.5) + param(AS 0) + param(AD 0) + param(PS 0) + param(PD 0) + terminal(S 1) + terminal(G 5) + terminal(D 2) + terminal(B 4) + ) + device(3 NMOS + name($3) + param(L 0.25) + param(W 0.95) + param(AS 0) + param(AD 0) + param(PS 0) + param(PD 0) + terminal(S 3) + terminal(G 6) + terminal(D 8) + terminal(B 7) + ) + device(4 NMOS + name($4) + param(L 0.25) + param(W 0.95) + param(AS 0) + param(AD 0) + param(PS 0) + param(PD 0) + terminal(S 8) + terminal(G 5) + terminal(D 2) + terminal(B 7) + ) + + ) + circuit(INVX1 + + # Nets + net(1 name(VDD)) + net(2 name(OUT)) + net(3 name(VSS)) + net(4 name(NWELL)) + net(5 name(IN)) + net(6 name(BULK)) + + # Outgoing pins and their connections to nets + pin(1 name(VDD)) + pin(2 name(OUT)) + pin(3 name(VSS)) + pin(4 name(NWELL)) + pin(5 name(IN)) + pin(6 name(BULK)) + + # Devices and their connections + device(1 PMOS + name($1) + param(L 0.25) + param(W 1.5) + param(AS 0) + param(AD 0) + param(PS 0) + param(PD 0) + terminal(S 1) + terminal(G 5) + terminal(D 2) + terminal(B 4) + ) + device(2 NMOS + name($2) + param(L 0.25) + param(W 0.95) + param(AS 0) + param(AD 0) + param(PS 0) + param(PD 0) + terminal(S 3) + terminal(G 5) + terminal(D 2) + terminal(B 6) + ) + + ) + circuit(RINGO + + # Nets + net(1 name(VSS)) + net(2 name(VDD)) + net(3 name(FB)) + net(4 name(ENABLE)) + net(5 name(OUT)) + net(6 name('1')) + net(7 name('2')) + net(8 name('3')) + net(9 name('4')) + net(10 name('5')) + net(11 name('6')) + net(12 name('7')) + net(13 name('8')) + net(14 name('9')) + net(15 name('10')) + + # Outgoing pins and their connections to nets + pin(1 name(VSS)) + pin(2 name(VDD)) + pin(3 name(FB)) + pin(4 name(ENABLE)) + pin(5 name(OUT)) + + # Subcircuits and their connections + circuit(1 ND2X1 name($1) + pin(0 2) + pin(1 6) + pin(2 1) + pin(3 2) + pin(4 3) + pin(5 4) + pin(6 1) + ) + circuit(2 INVX1 name($2) + pin(0 2) + pin(1 7) + pin(2 1) + pin(3 2) + pin(4 6) + pin(5 1) + ) + circuit(3 INVX1 name($3) + pin(0 2) + pin(1 8) + pin(2 1) + pin(3 2) + pin(4 7) + pin(5 1) + ) + circuit(4 INVX1 name($4) + pin(0 2) + pin(1 9) + pin(2 1) + pin(3 2) + pin(4 8) + pin(5 1) + ) + circuit(5 INVX1 name($5) + pin(0 2) + pin(1 10) + pin(2 1) + pin(3 2) + pin(4 9) + pin(5 1) + ) + circuit(6 INVX1 name($6) + pin(0 2) + pin(1 11) + pin(2 1) + pin(3 2) + pin(4 10) + pin(5 1) + ) + circuit(7 INVX1 name($7) + pin(0 2) + pin(1 12) + pin(2 1) + pin(3 2) + pin(4 11) + pin(5 1) + ) + circuit(8 INVX1 name($8) + pin(0 2) + pin(1 13) + pin(2 1) + pin(3 2) + pin(4 12) + pin(5 1) + ) + circuit(9 INVX1 name($9) + pin(0 2) + pin(1 14) + pin(2 1) + pin(3 2) + pin(4 13) + pin(5 1) + ) + circuit(10 INVX1 name($10) + pin(0 2) + pin(1 15) + pin(2 1) + pin(3 2) + pin(4 14) + pin(5 1) + ) + circuit(11 INVX1 name($11) + pin(0 2) + pin(1 3) + pin(2 1) + pin(3 2) + pin(4 15) + pin(5 1) + ) + circuit(12 INVX1 name($12) + pin(0 2) + pin(1 5) + pin(2 1) + pin(3 2) + pin(4 3) + pin(5 1) + ) + + ) +) + +# Cross reference +xref( + log( + entry(error description('Circuits RINGO and RINGO could not be compared because the following subcircuits failed to compare:\n A: ND2X1\n B: ND2X1')) + ) + circuit(INVX1 INVX1 match + xref( + net(4 4 match) + net(5 5 match) + net(2 2 match) + net(6 6 match) + net(1 1 match) + net(3 3 match) + pin(3 3 match) + pin(4 4 match) + pin(1 1 match) + pin(5 5 match) + pin(0 0 match) + pin(2 2 match) + device(2 2 match) + device(1 1 match) + ) + ) + circuit(ND2X1 ND2X1 nomatch + log( + entry(error description('No equivalent pin VSS from netlist found in reference netlist.\nThis is an indication that additional physical connections are made to the subcircuit cell.')) + entry(info description('Potential invalid connection in circuit RINGO, subcircuit cell reference at r0 *1 1.8,0')) + entry(error description('No equivalent pin VSS from reference netlist found in netlist.\nThis is an indication that a physical connection is not made to the subcircuit.')) + ) + xref( + net(5 4 match) + net(4 3 mismatch) + net(7 6 match) + net(6 5 match) + net(2 2 match) + net(8 7 mismatch) + net(1 1 match) + net(3 8 mismatch) + pin(() 2 mismatch) + pin(3 3 match) + pin(5 5 match) + pin(4 4 match) + pin(1 1 match) + pin(6 6 match) + pin(0 0 match) + pin(2 () mismatch) + device(3 3 match) + device(4 4 mismatch) + device(1 1 match) + device(2 2 match) + ) + ) + circuit(RINGO RINGO skipped description('Circuits RINGO and RINGO could not be compared because the following subcircuits failed to compare:\n A: ND2X1\n B: ND2X1') + xref( + ) + ) +) diff --git a/testdata/lvs/ringo_simple_dummy_device.lvsdb.2 b/testdata/lvs/ringo_simple_dummy_device.lvsdb.2 new file mode 100644 index 000000000..2e3bcb76d --- /dev/null +++ b/testdata/lvs/ringo_simple_dummy_device.lvsdb.2 @@ -0,0 +1,965 @@ +#%lvsdb-klayout + +# Layout +layout( + top(RINGO) + unit(0.001) + + # Layer section + # This section lists the mask layers (drawing or derived) and their connections. + + # Mask layers + layer(l3 '1/0') + layer(l4 '5/0') + layer(l8 '8/0') + layer(l11 '9/0') + layer(l12 '10/0') + layer(l13 '11/0') + layer(l7) + layer(l2) + layer(l9) + layer(l6) + layer(l10) + + # Mask layer connectivity + connect(l3 l3 l9) + connect(l4 l4 l8) + connect(l8 l4 l8 l11 l2 l9 l6 l10) + connect(l11 l8 l11 l12) + connect(l12 l11 l12 l13) + connect(l13 l12 l13) + connect(l7 l7) + connect(l2 l8 l2) + connect(l9 l3 l8 l9) + connect(l6 l8 l6) + connect(l10 l8 l10) + + # Global nets and connectivity + global(l7 SUBSTRATE) + global(l10 SUBSTRATE) + + # Device class section + class(PMOS MOS4) + class(NMOS MOS4) + + # Device abstracts section + # Device abstracts list the pin shapes of the devices. + device(D$PMOS PMOS + terminal(S + rect(l2 (-550 -750) (425 1500)) + ) + terminal(G + rect(l4 (-125 -750) (250 1500)) + ) + terminal(D + rect(l2 (125 -750) (450 1500)) + ) + terminal(B + rect(l3 (-125 -750) (250 1500)) + ) + ) + device(D$PMOS$1 PMOS + terminal(S + rect(l2 (-575 -750) (450 1500)) + ) + terminal(G + rect(l4 (-125 -750) (250 1500)) + ) + terminal(D + rect(l2 (125 -750) (425 1500)) + ) + terminal(B + rect(l3 (-125 -750) (250 1500)) + ) + ) + device(D$PMOS$2 PMOS + terminal(S + rect(l2 (-550 -750) (425 1500)) + ) + terminal(G + rect(l4 (-125 -750) (250 1500)) + ) + terminal(D + rect(l2 (125 -750) (425 1500)) + ) + terminal(B + rect(l3 (-125 -750) (250 1500)) + ) + ) + device(D$NMOS NMOS + terminal(S + rect(l6 (-550 -475) (425 950)) + ) + terminal(G + rect(l4 (-125 -475) (250 950)) + ) + terminal(D + rect(l6 (125 -475) (425 950)) + ) + terminal(B + rect(l7 (-125 -475) (250 950)) + ) + ) + device(D$NMOS$1 NMOS + terminal(S + rect(l6 (-550 -475) (425 950)) + ) + terminal(G + rect(l4 (-125 -475) (250 950)) + ) + terminal(D + rect(l6 (125 -475) (450 950)) + ) + terminal(B + rect(l7 (-125 -475) (250 950)) + ) + ) + device(D$NMOS$2 NMOS + terminal(S + rect(l6 (-575 -475) (450 950)) + ) + terminal(G + rect(l4 (-125 -475) (250 950)) + ) + terminal(D + rect(l6 (125 -475) (425 950)) + ) + terminal(B + rect(l7 (-125 -475) (250 950)) + ) + ) + + # Circuit section + # Circuits are the hierarchical building blocks of the netlist. + circuit(ND2X1 + + # Circuit boundary + rect((-100 400) (2600 7600)) + + # Nets with their geometries + net(1 name(VDD) + rect(l8 (1110 5160) (180 180)) + rect(l8 (-180 920) (180 180)) + rect(l8 (-180 -730) (180 180)) + rect(l11 (-240 -790) (300 1700)) + rect(l11 (-1350 0) (2400 800)) + rect(l11 (-1150 -400) (0 0)) + rect(l2 (-275 -2150) (425 1500)) + rect(l2 (-400 -1500) (425 1500)) + ) + net(2 name(OUT) + rect(l8 (1810 1770) (180 180)) + rect(l8 (-180 370) (180 180)) + rect(l8 (-1580 3760) (180 180)) + rect(l8 (-180 -730) (180 180)) + rect(l8 (-180 -730) (180 180)) + rect(l8 (1220 920) (180 180)) + rect(l8 (-180 -1280) (180 180)) + rect(l8 (-180 370) (180 180)) + polygon(l11 (-240 -4180) (0 1390) (490 0) (0 -300) (-190 0) (0 -1090)) + rect(l11 (-110 1390) (300 1400)) + polygon(l11 (-1890 0) (0 600) (300 0) (0 -300) (1590 0) (0 -300)) + rect(l11 (-140 -500) (0 0)) + rect(l11 (-1750 1100) (300 1400)) + rect(l11 (1100 -1700) (300 300)) + rect(l11 (-300 0) (300 1400)) + rect(l2 (-375 -1450) (425 1500)) + rect(l2 (-1800 -1500) (425 1500)) + rect(l6 (950 -4890) (425 950)) + ) + net(3 name(VSS) + rect(l8 (410 1770) (180 180)) + rect(l8 (-180 370) (180 180)) + rect(l11 (-240 -1300) (300 1360)) + rect(l11 (-650 -2160) (2400 800)) + rect(l11 (-1150 -400) (0 0)) + rect(l6 (-950 860) (425 950)) + ) + net(4 name($4) + rect(l3 (-100 4500) (2600 3500)) + ) + net(5 name(B) + rect(l4 (1425 2860) (250 1940)) + rect(l4 (-345 -950) (300 300)) + rect(l4 (-205 650) (250 2000)) + rect(l4 (-250 -2000) (250 2000)) + rect(l4 (-250 -5390) (250 1450)) + rect(l8 (-285 1050) (180 180)) + rect(l11 (-70 -90) (0 0)) + rect(l11 (-170 -150) (300 300)) + ) + net(6 name(A) + rect(l4 (725 2860) (250 1940)) + rect(l4 (-325 -1850) (300 300)) + rect(l4 (-225 1550) (250 2000)) + rect(l4 (-250 -2000) (250 2000)) + rect(l4 (-250 -5390) (250 1450)) + rect(l8 (-265 150) (180 180)) + rect(l11 (-90 -90) (0 0)) + rect(l11 (-150 -150) (300 300)) + ) + net(7 name(SUBSTRATE)) + net(8 name($I5) + rect(l6 (975 1660) (425 950)) + rect(l6 (-400 -950) (425 950)) + ) + + # Outgoing pins and their connections to nets + pin(1 name(VDD)) + pin(2 name(OUT)) + pin(3 name(VSS)) + pin(4) + pin(5 name(B)) + pin(6 name(A)) + pin(7 name(SUBSTRATE)) + + # Devices and their connections + device(1 D$PMOS + location(850 5800) + param(L 0.25) + param(W 1.5) + param(AS 0.6375) + param(AD 0.3375) + param(PS 3.85) + param(PD 1.95) + terminal(S 2) + terminal(G 6) + terminal(D 1) + terminal(B 4) + ) + device(2 D$PMOS$1 + location(1550 5800) + param(L 0.25) + param(W 1.5) + param(AS 0.3375) + param(AD 0.6375) + param(PS 1.95) + param(PD 3.85) + terminal(S 1) + terminal(G 5) + terminal(D 2) + terminal(B 4) + ) + device(3 D$NMOS$1 + location(850 2135) + param(L 0.25) + param(W 0.95) + param(AS 0.40375) + param(AD 0.21375) + param(PS 2.75) + param(PD 1.4) + terminal(S 3) + terminal(G 6) + terminal(D 8) + terminal(B 7) + ) + device(4 D$NMOS$2 + location(1550 2135) + param(L 0.25) + param(W 0.95) + param(AS 0.21375) + param(AD 0.40375) + param(PS 1.4) + param(PD 2.75) + terminal(S 8) + terminal(G 5) + terminal(D 2) + terminal(B 7) + ) + + ) + circuit(INVX1 + + # Circuit boundary + rect((-100 400) (2000 7600)) + + # Nets with their geometries + net(1 name(VDD) + rect(l8 (410 6260) (180 180)) + rect(l8 (-180 -730) (180 180)) + rect(l8 (-180 -730) (180 180)) + rect(l11 (-240 -240) (300 1400)) + rect(l11 (-650 300) (1800 800)) + rect(l11 (-1450 -1100) (300 300)) + rect(l11 (300 400) (0 0)) + rect(l2 (-650 -2150) (425 1500)) + ) + net(2 name(OUT) + rect(l8 (1110 5160) (180 180)) + rect(l8 (-180 920) (180 180)) + rect(l8 (-180 -730) (180 180)) + rect(l8 (-180 -4120) (180 180)) + rect(l8 (-180 370) (180 180)) + rect(l11 (-240 -790) (300 4790)) + rect(l11 (-150 -2500) (0 0)) + rect(l2 (-225 1050) (425 1500)) + rect(l6 (-425 -4890) (425 950)) + ) + net(3 name(VSS) + rect(l8 (410 1770) (180 180)) + rect(l8 (-180 370) (180 180)) + rect(l11 (-240 -1300) (300 1360)) + rect(l11 (-650 -2160) (1800 800)) + rect(l11 (-850 -400) (0 0)) + rect(l6 (-650 860) (425 950)) + ) + net(4 name($4) + rect(l3 (-100 4500) (2000 3500)) + ) + net(5 name(IN) + rect(l4 (725 2860) (250 1940)) + rect(l4 (-525 -1850) (300 300)) + rect(l4 (-25 1550) (250 2000)) + rect(l4 (-250 -2000) (250 2000)) + rect(l4 (-250 -5390) (250 1450)) + rect(l8 (-465 150) (180 180)) + rect(l11 (-90 -90) (0 0)) + rect(l11 (-150 -150) (300 300)) + ) + net(6 name(SUBSTRATE)) + + # Outgoing pins and their connections to nets + pin(1 name(VDD)) + pin(2 name(OUT)) + pin(3 name(VSS)) + pin(4) + pin(5 name(IN)) + pin(6 name(SUBSTRATE)) + + # Devices and their connections + device(1 D$PMOS$2 + location(850 5800) + param(L 0.25) + param(W 1.5) + param(AS 0.6375) + param(AD 0.6375) + param(PS 3.85) + param(PD 3.85) + terminal(S 1) + terminal(G 5) + terminal(D 2) + terminal(B 4) + ) + device(2 D$NMOS + location(850 2135) + param(L 0.25) + param(W 0.95) + param(AS 0.40375) + param(AD 0.40375) + param(PS 2.75) + param(PD 2.75) + terminal(S 3) + terminal(G 5) + terminal(D 2) + terminal(B 6) + ) + + ) + circuit(RINGO + + # Circuit boundary + rect((0 350) (27600 7650)) + + # Nets with their geometries + net(1 name($3) + rect(l4 (26050 2800) (525 550)) + rect(l4 (-525 -300) (300 300)) + rect(l4 (-25 -2000) (250 1450)) + rect(l8 (-465 310) (180 180)) + rect(l11 (-240 -240) (300 300)) + ) + net(2 name($4) + rect(l11 (4040 2950) (610 300)) + ) + net(3 name($5) + rect(l11 (5550 2950) (900 300)) + ) + net(4 name($6) + rect(l11 (7350 2950) (900 300)) + ) + net(5 name($7) + rect(l11 (9150 2950) (900 300)) + ) + net(6 name($8) + rect(l11 (10950 2950) (900 300)) + ) + net(7 name($9) + rect(l11 (12750 2950) (900 300)) + ) + net(8 name($10) + rect(l11 (14550 2950) (900 300)) + ) + net(9 name($11) + rect(l11 (16350 2950) (900 300)) + ) + net(10 name($12) + rect(l11 (18150 2950) (900 300)) + ) + net(11 name($13) + rect(l11 (19950 2950) (900 300)) + ) + net(12 name(FB) + rect(l11 (21750 2950) (900 300)) + rect(l11 (-19530 590) (320 320)) + rect(l11 (17820 -320) (320 320)) + rect(l12 (-18400 -260) (200 200)) + rect(l12 (17940 -200) (200 200)) + rect(l13 (-18040 -300) (17740 400)) + rect(l13 (-17920 -200) (0 0)) + rect(l13 (-220 -200) (400 400)) + rect(l13 (17740 -400) (400 400)) + ) + net(13 name(VDD) + rect(l3 (27000 4500) (600 3500)) + rect(l3 (-1200 -3500) (600 3500)) + rect(l3 (-1200 -3500) (600 3500)) + rect(l3 (-26400 -3500) (600 3500)) + rect(l3 (23300 -3500) (1400 3500)) + rect(l3 (-100 -3500) (600 3500)) + rect(l3 (-25300 -3500) (1400 3500)) + rect(l8 (22610 -1240) (180 180)) + rect(l8 (-180 370) (180 180)) + rect(l8 (-180 -1280) (180 180)) + rect(l8 (-23580 370) (180 180)) + rect(l8 (-180 370) (180 180)) + rect(l8 (-180 -1280) (180 180)) + rect(l11 (1660 860) (0 0)) + rect(l11 (24050 -450) (600 800)) + rect(l11 (-1200 -800) (600 800)) + rect(l11 (-1200 -800) (600 800)) + rect(l11 (-26400 -800) (600 800)) + rect(l11 (23400 -800) (1200 800)) + rect(l11 (-750 -1450) (300 1400)) + rect(l11 (-100 -350) (0 0)) + rect(l11 (550 -400) (600 800)) + rect(l11 (-25200 -800) (1200 800)) + rect(l11 (-750 -1450) (300 1400)) + rect(l11 (-100 -350) (0 0)) + rect(l9 (23100 -1100) (500 1500)) + rect(l9 (-23900 -1500) (500 1500)) + ) + net(14 name(OUT) + rect(l11 (23440 3840) (320 320)) + rect(l12 (-260 -260) (200 200)) + rect(l13 (-100 -100) (0 0)) + rect(l13 (-200 -200) (400 400)) + ) + net(15 name(ENABLE) + rect(l11 (2440 2940) (320 320)) + rect(l12 (-260 -260) (200 200)) + rect(l13 (-100 -100) (0 0)) + rect(l13 (-200 -200) (400 400)) + ) + net(16 name(VSS) + rect(l8 (26010 1770) (180 180)) + rect(l8 (-180 370) (180 180)) + rect(l8 (520 -730) (180 180)) + rect(l8 (-180 370) (180 180)) + rect(l8 (-2380 -890) (180 180)) + rect(l8 (-180 -1280) (180 180)) + rect(l8 (-180 370) (180 180)) + rect(l8 (-23580 370) (180 180)) + rect(l8 (-180 -1280) (180 180)) + rect(l8 (-180 370) (180 180)) + rect(l11 (24660 -40) (300 1360)) + rect(l11 (400 -1360) (300 1360)) + rect(l11 (-24000 -1710) (0 0)) + rect(l11 (21500 -400) (300 1400)) + rect(l11 (-750 -1450) (1200 800)) + rect(l11 (-550 -400) (0 0)) + rect(l11 (550 -400) (600 800)) + rect(l11 (1200 -800) (600 800)) + rect(l11 (-1200 -800) (600 800)) + rect(l11 (-1200 -800) (600 800)) + rect(l11 (-26400 -800) (600 800)) + rect(l11 (450 -750) (300 1400)) + rect(l11 (-750 -1450) (1200 800)) + rect(l11 (-550 -400) (0 0)) + rect(l6 (25325 800) (425 950)) + rect(l6 (-1100 -950) (425 950)) + rect(l10 (-1975 -2150) (500 1500)) + rect(l10 (-23900 -1500) (500 1500)) + ) + + # Outgoing pins and their connections to nets + pin(12 name(FB)) + pin(13 name(VDD)) + pin(14 name(OUT)) + pin(15 name(ENABLE)) + pin(16 name(VSS)) + + # Devices and their connections + device(1 D$NMOS + location(26450 2075) + param(L 0.25) + param(W 0.95) + param(AS 0.40375) + param(AD 0.40375) + param(PS 2.75) + param(PD 2.75) + terminal(S 16) + terminal(G 1) + terminal(D 16) + terminal(B 16) + ) + + # Subcircuits and their connections + circuit(3 ND2X1 location(1800 0) + pin(0 13) + pin(1 2) + pin(2 16) + pin(3 13) + pin(4 12) + pin(5 15) + pin(6 16) + ) + circuit(4 INVX1 location(4200 0) + pin(0 13) + pin(1 3) + pin(2 16) + pin(3 13) + pin(4 2) + pin(5 16) + ) + circuit(5 INVX1 location(6000 0) + pin(0 13) + pin(1 4) + pin(2 16) + pin(3 13) + pin(4 3) + pin(5 16) + ) + circuit(6 INVX1 location(7800 0) + pin(0 13) + pin(1 5) + pin(2 16) + pin(3 13) + pin(4 4) + pin(5 16) + ) + circuit(7 INVX1 location(9600 0) + pin(0 13) + pin(1 6) + pin(2 16) + pin(3 13) + pin(4 5) + pin(5 16) + ) + circuit(8 INVX1 location(11400 0) + pin(0 13) + pin(1 7) + pin(2 16) + pin(3 13) + pin(4 6) + pin(5 16) + ) + circuit(9 INVX1 location(13200 0) + pin(0 13) + pin(1 8) + pin(2 16) + pin(3 13) + pin(4 7) + pin(5 16) + ) + circuit(10 INVX1 location(15000 0) + pin(0 13) + pin(1 9) + pin(2 16) + pin(3 13) + pin(4 8) + pin(5 16) + ) + circuit(11 INVX1 location(16800 0) + pin(0 13) + pin(1 10) + pin(2 16) + pin(3 13) + pin(4 9) + pin(5 16) + ) + circuit(12 INVX1 location(18600 0) + pin(0 13) + pin(1 11) + pin(2 16) + pin(3 13) + pin(4 10) + pin(5 16) + ) + circuit(13 INVX1 location(20400 0) + pin(0 13) + pin(1 12) + pin(2 16) + pin(3 13) + pin(4 11) + pin(5 16) + ) + circuit(14 INVX1 location(22200 0) + pin(0 13) + pin(1 14) + pin(2 16) + pin(3 13) + pin(4 12) + pin(5 16) + ) + + ) +) + +# Reference netlist +reference( + + # Device class section + class(PMOS MOS4) + class(NMOS MOS4) + + # Circuit section + # Circuits are the hierarchical building blocks of the netlist. + circuit(ND2X1 + + # Nets + net(1 name(VDD)) + net(2 name(OUT)) + net(3 name(VSS)) + net(4 name(NWELL)) + net(5 name(B)) + net(6 name(A)) + net(7 name(BULK)) + net(8 name('1')) + + # Outgoing pins and their connections to nets + pin(1 name(VDD)) + pin(2 name(OUT)) + pin(3 name(VSS)) + pin(4 name(NWELL)) + pin(5 name(B)) + pin(6 name(A)) + pin(7 name(BULK)) + + # Devices and their connections + device(1 PMOS + name($1) + param(L 0.25) + param(W 1.5) + param(AS 0) + param(AD 0) + param(PS 0) + param(PD 0) + terminal(S 1) + terminal(G 6) + terminal(D 2) + terminal(B 4) + ) + device(2 PMOS + name($2) + param(L 0.25) + param(W 1.5) + param(AS 0) + param(AD 0) + param(PS 0) + param(PD 0) + terminal(S 2) + terminal(G 5) + terminal(D 1) + terminal(B 4) + ) + device(3 NMOS + name($3) + param(L 0.25) + param(W 0.95) + param(AS 0) + param(AD 0) + param(PS 0) + param(PD 0) + terminal(S 8) + terminal(G 6) + terminal(D 3) + terminal(B 7) + ) + device(4 NMOS + name($4) + param(L 0.25) + param(W 0.95) + param(AS 0) + param(AD 0) + param(PS 0) + param(PD 0) + terminal(S 2) + terminal(G 5) + terminal(D 8) + terminal(B 7) + ) + + ) + circuit(INVX1 + + # Nets + net(1 name(VDD)) + net(2 name(OUT)) + net(3 name(VSS)) + net(4 name(NWELL)) + net(5 name(IN)) + net(6 name(BULK)) + + # Outgoing pins and their connections to nets + pin(1 name(VDD)) + pin(2 name(OUT)) + pin(3 name(VSS)) + pin(4 name(NWELL)) + pin(5 name(IN)) + pin(6 name(BULK)) + + # Devices and their connections + device(1 PMOS + name($1) + param(L 0.25) + param(W 1.5) + param(AS 0) + param(AD 0) + param(PS 0) + param(PD 0) + terminal(S 2) + terminal(G 5) + terminal(D 1) + terminal(B 4) + ) + device(2 NMOS + name($2) + param(L 0.25) + param(W 0.95) + param(AS 0) + param(AD 0) + param(PS 0) + param(PD 0) + terminal(S 2) + terminal(G 5) + terminal(D 3) + terminal(B 6) + ) + + ) + circuit(RINGO + + # Nets + net(1 name(VSS)) + net(2 name(VDD)) + net(3 name(FB)) + net(4 name(ENABLE)) + net(5 name(OUT)) + net(6 name('1')) + net(7 name('2')) + net(8 name('3')) + net(9 name('4')) + net(10 name('5')) + net(11 name('6')) + net(12 name('7')) + net(13 name('8')) + net(14 name('9')) + net(15 name('10')) + net(16 name(DUMMY)) + + # Outgoing pins and their connections to nets + pin(1 name(VSS)) + pin(2 name(VDD)) + pin(3 name(FB)) + pin(4 name(ENABLE)) + pin(5 name(OUT)) + + # Devices and their connections + device(1 NMOS + name($1) + param(L 0.25) + param(W 0.95) + param(AS 0) + param(AD 0) + param(PS 0) + param(PD 0) + terminal(S 1) + terminal(G 16) + terminal(D 1) + terminal(B 1) + ) + + # Subcircuits and their connections + circuit(1 ND2X1 name($1) + pin(0 2) + pin(1 6) + pin(2 1) + pin(3 2) + pin(4 3) + pin(5 4) + pin(6 1) + ) + circuit(2 INVX1 name($2) + pin(0 2) + pin(1 7) + pin(2 1) + pin(3 2) + pin(4 6) + pin(5 1) + ) + circuit(3 INVX1 name($3) + pin(0 2) + pin(1 8) + pin(2 1) + pin(3 2) + pin(4 7) + pin(5 1) + ) + circuit(4 INVX1 name($4) + pin(0 2) + pin(1 9) + pin(2 1) + pin(3 2) + pin(4 8) + pin(5 1) + ) + circuit(5 INVX1 name($5) + pin(0 2) + pin(1 10) + pin(2 1) + pin(3 2) + pin(4 9) + pin(5 1) + ) + circuit(6 INVX1 name($6) + pin(0 2) + pin(1 11) + pin(2 1) + pin(3 2) + pin(4 10) + pin(5 1) + ) + circuit(7 INVX1 name($7) + pin(0 2) + pin(1 12) + pin(2 1) + pin(3 2) + pin(4 11) + pin(5 1) + ) + circuit(8 INVX1 name($8) + pin(0 2) + pin(1 13) + pin(2 1) + pin(3 2) + pin(4 12) + pin(5 1) + ) + circuit(9 INVX1 name($9) + pin(0 2) + pin(1 14) + pin(2 1) + pin(3 2) + pin(4 13) + pin(5 1) + ) + circuit(10 INVX1 name($10) + pin(0 2) + pin(1 15) + pin(2 1) + pin(3 2) + pin(4 14) + pin(5 1) + ) + circuit(11 INVX1 name($11) + pin(0 2) + pin(1 3) + pin(2 1) + pin(3 2) + pin(4 15) + pin(5 1) + ) + circuit(12 INVX1 name($12) + pin(0 2) + pin(1 5) + pin(2 1) + pin(3 2) + pin(4 3) + pin(5 1) + ) + + ) +) + +# Cross reference +xref( + circuit(INVX1 INVX1 match + xref( + net(4 4 match) + net(5 5 match) + net(2 2 match) + net(6 6 match) + net(1 1 match) + net(3 3 match) + pin(3 3 match) + pin(4 4 match) + pin(1 1 match) + pin(5 5 match) + pin(0 0 match) + pin(2 2 match) + device(2 2 match) + device(1 1 match) + ) + ) + circuit(ND2X1 ND2X1 match + xref( + net(8 8 match) + net(4 4 match) + net(6 6 match) + net(5 5 match) + net(2 2 match) + net(7 7 match) + net(1 1 match) + net(3 3 match) + pin(3 3 match) + pin(5 5 match) + pin(4 4 match) + pin(1 1 match) + pin(6 6 match) + pin(0 0 match) + pin(2 2 match) + device(3 3 match) + device(4 4 match) + device(1 1 match) + device(2 2 match) + ) + ) + circuit(RINGO RINGO match + xref( + net(2 6 match) + net(11 15 match) + net(3 7 match) + net(4 8 match) + net(5 9 match) + net(6 10 match) + net(7 11 match) + net(8 12 match) + net(9 13 match) + net(10 14 match) + net(1 16 match) + net(15 4 match) + net(12 3 match) + net(14 5 match) + net(13 2 match) + net(16 1 match) + pin(3 3 match) + pin(0 2 match) + pin(2 4 match) + pin(1 1 match) + pin(4 0 match) + device(1 1 match) + circuit(4 2 match) + circuit(5 3 match) + circuit(6 4 match) + circuit(7 5 match) + circuit(8 6 match) + circuit(9 7 match) + circuit(10 8 match) + circuit(11 9 match) + circuit(12 10 match) + circuit(13 11 match) + circuit(14 12 match) + circuit(3 1 match) + ) + ) +) diff --git a/testdata/lvs/ringo_simple_implicit_connections.lvsdb.2 b/testdata/lvs/ringo_simple_implicit_connections.lvsdb.2 new file mode 100644 index 000000000..8e1d13685 --- /dev/null +++ b/testdata/lvs/ringo_simple_implicit_connections.lvsdb.2 @@ -0,0 +1,930 @@ +#%lvsdb-klayout + +# Layout +layout( + top(RINGO) + unit(0.001) + + # Layer section + # This section lists the mask layers (drawing or derived) and their connections. + + # Mask layers + layer(l3 '1/0') + layer(l4 '5/0') + layer(l8 '8/0') + layer(l11 '9/0') + layer(l12 '10/0') + layer(l13 '11/0') + layer(l7) + layer(l2) + layer(l9) + layer(l6) + layer(l10) + + # Mask layer connectivity + connect(l3 l3 l9) + connect(l4 l4 l8) + connect(l8 l4 l8 l11 l2 l9 l6 l10) + connect(l11 l8 l11 l12) + connect(l12 l11 l12 l13) + connect(l13 l12 l13) + connect(l7 l7) + connect(l2 l8 l2) + connect(l9 l3 l8 l9) + connect(l6 l8 l6) + connect(l10 l8 l10) + + # Global nets and connectivity + global(l7 SUBSTRATE) + global(l10 SUBSTRATE) + + # Log entries + message(warning description('Must-connect subnets of VDD must be connected further up in the hierarchy - this is an error at chip top level') cell(RINGO) cat('must-connect') polygon('(2.95,7.25;2.95,7.4;25.1,7.4;25.1,7.25)')) + + # Device class section + class(PMOS MOS4) + class(NMOS MOS4) + + # Device abstracts section + # Device abstracts list the pin shapes of the devices. + device(D$PMOS PMOS + terminal(S + rect(l2 (-550 -750) (425 1500)) + ) + terminal(G + rect(l4 (-125 -750) (250 1500)) + ) + terminal(D + rect(l2 (125 -750) (450 1500)) + ) + terminal(B + rect(l3 (-125 -750) (250 1500)) + ) + ) + device(D$PMOS$1 PMOS + terminal(S + rect(l2 (-575 -750) (450 1500)) + ) + terminal(G + rect(l4 (-125 -750) (250 1500)) + ) + terminal(D + rect(l2 (125 -750) (425 1500)) + ) + terminal(B + rect(l3 (-125 -750) (250 1500)) + ) + ) + device(D$PMOS$2 PMOS + terminal(S + rect(l2 (-550 -750) (425 1500)) + ) + terminal(G + rect(l4 (-125 -750) (250 1500)) + ) + terminal(D + rect(l2 (125 -750) (425 1500)) + ) + terminal(B + rect(l3 (-125 -750) (250 1500)) + ) + ) + device(D$NMOS NMOS + terminal(S + rect(l6 (-550 -475) (425 950)) + ) + terminal(G + rect(l4 (-125 -475) (250 950)) + ) + terminal(D + rect(l6 (125 -475) (450 950)) + ) + terminal(B + rect(l7 (-125 -475) (250 950)) + ) + ) + device(D$NMOS$1 NMOS + terminal(S + rect(l6 (-575 -475) (450 950)) + ) + terminal(G + rect(l4 (-125 -475) (250 950)) + ) + terminal(D + rect(l6 (125 -475) (425 950)) + ) + terminal(B + rect(l7 (-125 -475) (250 950)) + ) + ) + device(D$NMOS$2 NMOS + terminal(S + rect(l6 (-550 -475) (425 950)) + ) + terminal(G + rect(l4 (-125 -475) (250 950)) + ) + terminal(D + rect(l6 (125 -475) (425 950)) + ) + terminal(B + rect(l7 (-125 -475) (250 950)) + ) + ) + + # Circuit section + # Circuits are the hierarchical building blocks of the netlist. + circuit(ND2X1 + + # Circuit boundary + rect((-100 400) (2600 7600)) + + # Nets with their geometries + net(1 name(VDD) + rect(l8 (1110 5160) (180 180)) + rect(l8 (-180 920) (180 180)) + rect(l8 (-180 -730) (180 180)) + rect(l11 (-240 -790) (300 1700)) + rect(l11 (-1350 0) (2400 800)) + rect(l11 (-1150 -400) (0 0)) + rect(l2 (-275 -2150) (425 1500)) + rect(l2 (-400 -1500) (425 1500)) + ) + net(2 name(OUT) + rect(l8 (1810 1770) (180 180)) + rect(l8 (-180 370) (180 180)) + rect(l8 (-1580 3760) (180 180)) + rect(l8 (-180 -730) (180 180)) + rect(l8 (-180 -730) (180 180)) + rect(l8 (1220 920) (180 180)) + rect(l8 (-180 -1280) (180 180)) + rect(l8 (-180 370) (180 180)) + polygon(l11 (-240 -4180) (0 1390) (490 0) (0 -300) (-190 0) (0 -1090)) + rect(l11 (-110 1390) (300 1400)) + polygon(l11 (-1890 0) (0 600) (300 0) (0 -300) (1590 0) (0 -300)) + rect(l11 (-140 -500) (0 0)) + rect(l11 (-1750 1100) (300 1400)) + rect(l11 (1100 -1700) (300 300)) + rect(l11 (-300 0) (300 1400)) + rect(l2 (-375 -1450) (425 1500)) + rect(l2 (-1800 -1500) (425 1500)) + rect(l6 (950 -4890) (425 950)) + ) + net(3 name(VSS) + rect(l8 (410 1770) (180 180)) + rect(l8 (-180 370) (180 180)) + rect(l11 (-240 -1300) (300 1360)) + rect(l11 (-650 -2160) (2400 800)) + rect(l11 (-1150 -400) (0 0)) + rect(l6 (-950 860) (425 950)) + ) + net(4 name($4) + rect(l3 (-100 4500) (2600 3500)) + ) + net(5 name(B) + rect(l4 (1425 2860) (250 1940)) + rect(l4 (-345 -950) (300 300)) + rect(l4 (-205 650) (250 2000)) + rect(l4 (-250 -2000) (250 2000)) + rect(l4 (-250 -5390) (250 1450)) + rect(l8 (-285 1050) (180 180)) + rect(l11 (-70 -90) (0 0)) + rect(l11 (-170 -150) (300 300)) + ) + net(6 name(A) + rect(l4 (725 2860) (250 1940)) + rect(l4 (-325 -1850) (300 300)) + rect(l4 (-225 1550) (250 2000)) + rect(l4 (-250 -2000) (250 2000)) + rect(l4 (-250 -5390) (250 1450)) + rect(l8 (-265 150) (180 180)) + rect(l11 (-90 -90) (0 0)) + rect(l11 (-150 -150) (300 300)) + ) + net(7 name(SUBSTRATE)) + net(8 name($I5) + rect(l6 (975 1660) (425 950)) + rect(l6 (-400 -950) (425 950)) + ) + + # Outgoing pins and their connections to nets + pin(1 name(VDD)) + pin(2 name(OUT)) + pin(3 name(VSS)) + pin(4) + pin(5 name(B)) + pin(6 name(A)) + pin(7 name(SUBSTRATE)) + + # Devices and their connections + device(1 D$PMOS + location(850 5800) + param(L 0.25) + param(W 1.5) + param(AS 0.6375) + param(AD 0.3375) + param(PS 3.85) + param(PD 1.95) + terminal(S 2) + terminal(G 6) + terminal(D 1) + terminal(B 4) + ) + device(2 D$PMOS$1 + location(1550 5800) + param(L 0.25) + param(W 1.5) + param(AS 0.3375) + param(AD 0.6375) + param(PS 1.95) + param(PD 3.85) + terminal(S 1) + terminal(G 5) + terminal(D 2) + terminal(B 4) + ) + device(3 D$NMOS + location(850 2135) + param(L 0.25) + param(W 0.95) + param(AS 0.40375) + param(AD 0.21375) + param(PS 2.75) + param(PD 1.4) + terminal(S 3) + terminal(G 6) + terminal(D 8) + terminal(B 7) + ) + device(4 D$NMOS$1 + location(1550 2135) + param(L 0.25) + param(W 0.95) + param(AS 0.21375) + param(AD 0.40375) + param(PS 1.4) + param(PD 2.75) + terminal(S 8) + terminal(G 5) + terminal(D 2) + terminal(B 7) + ) + + ) + circuit(INVX1 + + # Circuit boundary + rect((-100 400) (2000 7600)) + + # Nets with their geometries + net(1 name(VDD) + rect(l8 (410 6260) (180 180)) + rect(l8 (-180 -730) (180 180)) + rect(l8 (-180 -730) (180 180)) + rect(l11 (-240 -240) (300 1400)) + rect(l11 (-650 300) (1800 800)) + rect(l11 (-1450 -1100) (300 300)) + rect(l11 (300 400) (0 0)) + rect(l2 (-650 -2150) (425 1500)) + ) + net(2 name(OUT) + rect(l8 (1110 5160) (180 180)) + rect(l8 (-180 920) (180 180)) + rect(l8 (-180 -730) (180 180)) + rect(l8 (-180 -4120) (180 180)) + rect(l8 (-180 370) (180 180)) + rect(l11 (-240 -790) (300 4790)) + rect(l11 (-150 -2500) (0 0)) + rect(l2 (-225 1050) (425 1500)) + rect(l6 (-425 -4890) (425 950)) + ) + net(3 name(VSS) + rect(l8 (410 1770) (180 180)) + rect(l8 (-180 370) (180 180)) + rect(l11 (-240 -1300) (300 1360)) + rect(l11 (-650 -2160) (1800 800)) + rect(l11 (-850 -400) (0 0)) + rect(l6 (-650 860) (425 950)) + ) + net(4 name($4) + rect(l3 (-100 4500) (2000 3500)) + ) + net(5 name(IN) + rect(l4 (725 2860) (250 1940)) + rect(l4 (-525 -1850) (300 300)) + rect(l4 (-25 1550) (250 2000)) + rect(l4 (-250 -2000) (250 2000)) + rect(l4 (-250 -5390) (250 1450)) + rect(l8 (-465 150) (180 180)) + rect(l11 (-90 -90) (0 0)) + rect(l11 (-150 -150) (300 300)) + ) + net(6 name(SUBSTRATE)) + + # Outgoing pins and their connections to nets + pin(1 name(VDD)) + pin(2 name(OUT)) + pin(3 name(VSS)) + pin(4) + pin(5 name(IN)) + pin(6 name(SUBSTRATE)) + + # Devices and their connections + device(1 D$PMOS$2 + location(850 5800) + param(L 0.25) + param(W 1.5) + param(AS 0.6375) + param(AD 0.6375) + param(PS 3.85) + param(PD 3.85) + terminal(S 1) + terminal(G 5) + terminal(D 2) + terminal(B 4) + ) + device(2 D$NMOS$2 + location(850 2135) + param(L 0.25) + param(W 0.95) + param(AS 0.40375) + param(AD 0.40375) + param(PS 2.75) + param(PD 2.75) + terminal(S 3) + terminal(G 5) + terminal(D 2) + terminal(B 6) + ) + + ) + circuit(RINGO + + # Circuit boundary + rect((0 350) (28300 7650)) + + # Nets with their geometries + net(1 name($1) + rect(l11 (4040 2950) (1160 300)) + ) + net(2 name($2) + rect(l11 (6050 2950) (900 300)) + ) + net(3 name($3) + rect(l11 (7850 2950) (900 300)) + ) + net(4 name($4) + rect(l11 (9650 2950) (900 300)) + ) + net(5 name($5) + rect(l11 (11450 2950) (900 300)) + ) + net(6 name($6) + rect(l11 (13250 2950) (900 300)) + ) + net(7 name($7) + rect(l11 (15050 2950) (900 300)) + ) + net(8 name($8) + rect(l11 (16850 2950) (900 300)) + ) + net(9 name($9) + rect(l11 (18650 2950) (900 300)) + ) + net(10 name($10) + rect(l11 (20450 2950) (900 300)) + ) + net(11 name(FB) + rect(l11 (22250 2950) (2900 300)) + rect(l11 (-21980 590) (320 320)) + rect(l11 (18570 -320) (320 320)) + rect(l12 (-19150 -260) (200 200)) + rect(l12 (18690 -200) (200 200)) + rect(l13 (-18840 -300) (18890 400)) + rect(l13 (-19070 -200) (0 0)) + rect(l13 (-170 -200) (400 400)) + rect(l13 (18490 -400) (400 400)) + ) + net(12 name(VDD) + rect(l3 (22600 4500) (1400 3500)) + rect(l3 (3700 -3500) (600 3500)) + rect(l3 (-1900 -3500) (1400 3500)) + rect(l3 (-27300 -3500) (1400 3500)) + rect(l3 (-1900 -3500) (600 3500)) + rect(l8 (22610 -1240) (180 180)) + rect(l8 (-180 370) (180 180)) + rect(l8 (-180 -1280) (180 180)) + rect(l8 (3620 370) (180 180)) + rect(l8 (-180 370) (180 180)) + rect(l8 (-180 -1280) (180 180)) + rect(l8 (-26080 370) (180 180)) + rect(l8 (-180 370) (180 180)) + rect(l8 (-180 -1280) (180 180)) + rect(l11 (21010 1010) (0 0)) + rect(l11 (2800 -50) (0 0)) + rect(l11 (-22150 -100) (0 0)) + rect(l11 (19750 -450) (1200 800)) + rect(l11 (-750 -1450) (300 1400)) + rect(l11 (-100 -350) (0 0)) + rect(l11 (4350 -400) (600 800)) + rect(l11 (-1800 -800) (1200 800)) + rect(l11 (-750 -1450) (300 1400)) + rect(l11 (-100 -350) (0 0)) + rect(l11 (-26550 -400) (1200 800)) + rect(l11 (-750 -1450) (300 1400)) + rect(l11 (-100 -350) (0 0)) + rect(l11 (-1250 -400) (600 800)) + rect(l9 (22450 -1500) (500 1500)) + rect(l9 (3300 -1500) (500 1500)) + rect(l9 (-26400 -1500) (500 1500)) + ) + net(13 name(OUT) + rect(l11 (25990 3840) (320 320)) + rect(l12 (-260 -260) (200 200)) + rect(l13 (-150 -100) (0 0)) + rect(l13 (-150 -200) (400 400)) + ) + net(14 name(ENABLE) + rect(l11 (2490 2940) (320 320)) + rect(l12 (-260 -260) (200 200)) + rect(l13 (-150 -100) (0 0)) + rect(l13 (-150 -200) (400 400)) + ) + net(15 name(VSS) + rect(l8 (1110 1610) (180 180)) + rect(l8 (-180 -1280) (180 180)) + rect(l8 (-180 370) (180 180)) + rect(l8 (21920 370) (180 180)) + rect(l8 (-180 -1280) (180 180)) + rect(l8 (-180 370) (180 180)) + rect(l8 (3620 370) (180 180)) + rect(l8 (-180 -1280) (180 180)) + rect(l8 (-180 370) (180 180)) + rect(l11 (-24240 -390) (0 0)) + rect(l11 (19200 100) (0 0)) + rect(l11 (3850 0) (0 0)) + rect(l11 (-24950 -500) (300 1400)) + rect(l11 (-750 -1450) (1200 800)) + rect(l11 (-550 -400) (0 0)) + rect(l11 (-1250 -400) (600 800)) + rect(l11 (22550 -750) (300 1400)) + rect(l11 (-750 -1450) (1200 800)) + rect(l11 (-550 -400) (0 0)) + rect(l11 (3600 -350) (300 1400)) + rect(l11 (-750 -1450) (1200 800)) + rect(l11 (-550 -400) (0 0)) + rect(l11 (550 -400) (600 800)) + rect(l10 (-27350 -800) (500 1500)) + rect(l10 (21600 -1500) (500 1500)) + rect(l10 (3300 -1500) (500 1500)) + ) + + # Outgoing pins and their connections to nets + pin(11 name(FB)) + pin(12 name(VDD)) + pin(13 name(OUT)) + pin(14 name(ENABLE)) + pin(15 name(VSS)) + + # Subcircuits and their connections + circuit(1 ND2X1 location(1800 0) + pin(0 12) + pin(1 1) + pin(2 15) + pin(3 12) + pin(4 11) + pin(5 14) + pin(6 15) + ) + circuit(2 INVX1 location(4700 0) + pin(0 12) + pin(1 2) + pin(2 15) + pin(3 12) + pin(4 1) + pin(5 15) + ) + circuit(3 INVX1 location(6500 0) + pin(0 12) + pin(1 3) + pin(2 15) + pin(3 12) + pin(4 2) + pin(5 15) + ) + circuit(4 INVX1 location(8300 0) + pin(0 12) + pin(1 4) + pin(2 15) + pin(3 12) + pin(4 3) + pin(5 15) + ) + circuit(5 INVX1 location(10100 0) + pin(0 12) + pin(1 5) + pin(2 15) + pin(3 12) + pin(4 4) + pin(5 15) + ) + circuit(6 INVX1 location(11900 0) + pin(0 12) + pin(1 6) + pin(2 15) + pin(3 12) + pin(4 5) + pin(5 15) + ) + circuit(7 INVX1 location(13700 0) + pin(0 12) + pin(1 7) + pin(2 15) + pin(3 12) + pin(4 6) + pin(5 15) + ) + circuit(8 INVX1 location(15500 0) + pin(0 12) + pin(1 8) + pin(2 15) + pin(3 12) + pin(4 7) + pin(5 15) + ) + circuit(9 INVX1 location(17300 0) + pin(0 12) + pin(1 9) + pin(2 15) + pin(3 12) + pin(4 8) + pin(5 15) + ) + circuit(10 INVX1 location(19100 0) + pin(0 12) + pin(1 10) + pin(2 15) + pin(3 12) + pin(4 9) + pin(5 15) + ) + circuit(11 INVX1 location(20900 0) + pin(0 12) + pin(1 11) + pin(2 15) + pin(3 12) + pin(4 10) + pin(5 15) + ) + circuit(12 INVX1 location(24700 0) + pin(0 12) + pin(1 13) + pin(2 15) + pin(3 12) + pin(4 11) + pin(5 15) + ) + + ) +) + +# Reference netlist +reference( + + # Device class section + class(PMOS MOS4) + class(NMOS MOS4) + + # Circuit section + # Circuits are the hierarchical building blocks of the netlist. + circuit(ND2X1 + + # Nets + net(1 name(VDD)) + net(2 name(OUT)) + net(3 name(VSS)) + net(4 name(NWELL)) + net(5 name(B)) + net(6 name(A)) + net(7 name(BULK)) + net(8 name('1')) + + # Outgoing pins and their connections to nets + pin(1 name(VDD)) + pin(2 name(OUT)) + pin(3 name(VSS)) + pin(4 name(NWELL)) + pin(5 name(B)) + pin(6 name(A)) + pin(7 name(BULK)) + + # Devices and their connections + device(1 PMOS + name($1) + param(L 0.25) + param(W 1.5) + param(AS 0) + param(AD 0) + param(PS 0) + param(PD 0) + terminal(S 1) + terminal(G 6) + terminal(D 2) + terminal(B 4) + ) + device(2 PMOS + name($2) + param(L 0.25) + param(W 1.5) + param(AS 0) + param(AD 0) + param(PS 0) + param(PD 0) + terminal(S 1) + terminal(G 5) + terminal(D 2) + terminal(B 4) + ) + device(3 NMOS + name($3) + param(L 0.25) + param(W 0.95) + param(AS 0) + param(AD 0) + param(PS 0) + param(PD 0) + terminal(S 3) + terminal(G 6) + terminal(D 8) + terminal(B 7) + ) + device(4 NMOS + name($4) + param(L 0.25) + param(W 0.95) + param(AS 0) + param(AD 0) + param(PS 0) + param(PD 0) + terminal(S 8) + terminal(G 5) + terminal(D 2) + terminal(B 7) + ) + + ) + circuit(INVX1 + + # Nets + net(1 name(VDD)) + net(2 name(OUT)) + net(3 name(VSS)) + net(4 name(NWELL)) + net(5 name(IN)) + net(6 name(BULK)) + + # Outgoing pins and their connections to nets + pin(1 name(VDD)) + pin(2 name(OUT)) + pin(3 name(VSS)) + pin(4 name(NWELL)) + pin(5 name(IN)) + pin(6 name(BULK)) + + # Devices and their connections + device(1 PMOS + name($1) + param(L 0.25) + param(W 1.5) + param(AS 0) + param(AD 0) + param(PS 0) + param(PD 0) + terminal(S 1) + terminal(G 5) + terminal(D 2) + terminal(B 4) + ) + device(2 NMOS + name($2) + param(L 0.25) + param(W 0.95) + param(AS 0) + param(AD 0) + param(PS 0) + param(PD 0) + terminal(S 3) + terminal(G 5) + terminal(D 2) + terminal(B 6) + ) + + ) + circuit(RINGO + + # Nets + net(1 name(VSS)) + net(2 name(VDD)) + net(3 name(FB)) + net(4 name(ENABLE)) + net(5 name(OUT)) + net(6 name('1')) + net(7 name('2')) + net(8 name('3')) + net(9 name('4')) + net(10 name('5')) + net(11 name('6')) + net(12 name('7')) + net(13 name('8')) + net(14 name('9')) + net(15 name('10')) + + # Outgoing pins and their connections to nets + pin(1 name(VSS)) + pin(2 name(VDD)) + pin(3 name(FB)) + pin(4 name(ENABLE)) + pin(5 name(OUT)) + + # Subcircuits and their connections + circuit(1 ND2X1 name($1) + pin(0 2) + pin(1 6) + pin(2 1) + pin(3 2) + pin(4 3) + pin(5 4) + pin(6 1) + ) + circuit(2 INVX1 name($2) + pin(0 2) + pin(1 7) + pin(2 1) + pin(3 2) + pin(4 6) + pin(5 1) + ) + circuit(3 INVX1 name($3) + pin(0 2) + pin(1 8) + pin(2 1) + pin(3 2) + pin(4 7) + pin(5 1) + ) + circuit(4 INVX1 name($4) + pin(0 2) + pin(1 9) + pin(2 1) + pin(3 2) + pin(4 8) + pin(5 1) + ) + circuit(5 INVX1 name($5) + pin(0 2) + pin(1 10) + pin(2 1) + pin(3 2) + pin(4 9) + pin(5 1) + ) + circuit(6 INVX1 name($6) + pin(0 2) + pin(1 11) + pin(2 1) + pin(3 2) + pin(4 10) + pin(5 1) + ) + circuit(7 INVX1 name($7) + pin(0 2) + pin(1 12) + pin(2 1) + pin(3 2) + pin(4 11) + pin(5 1) + ) + circuit(8 INVX1 name($8) + pin(0 2) + pin(1 13) + pin(2 1) + pin(3 2) + pin(4 12) + pin(5 1) + ) + circuit(9 INVX1 name($9) + pin(0 2) + pin(1 14) + pin(2 1) + pin(3 2) + pin(4 13) + pin(5 1) + ) + circuit(10 INVX1 name($10) + pin(0 2) + pin(1 15) + pin(2 1) + pin(3 2) + pin(4 14) + pin(5 1) + ) + circuit(11 INVX1 name($11) + pin(0 2) + pin(1 3) + pin(2 1) + pin(3 2) + pin(4 15) + pin(5 1) + ) + circuit(12 INVX1 name($12) + pin(0 2) + pin(1 5) + pin(2 1) + pin(3 2) + pin(4 3) + pin(5 1) + ) + + ) +) + +# Cross reference +xref( + circuit(INVX1 INVX1 match + xref( + net(4 4 match) + net(5 5 match) + net(2 2 match) + net(6 6 match) + net(1 1 match) + net(3 3 match) + pin(3 3 match) + pin(4 4 match) + pin(1 1 match) + pin(5 5 match) + pin(0 0 match) + pin(2 2 match) + device(2 2 match) + device(1 1 match) + ) + ) + circuit(ND2X1 ND2X1 match + xref( + net(8 8 match) + net(4 4 match) + net(6 6 match) + net(5 5 match) + net(2 2 match) + net(7 7 match) + net(1 1 match) + net(3 3 match) + pin(3 3 match) + pin(5 5 match) + pin(4 4 match) + pin(1 1 match) + pin(6 6 match) + pin(0 0 match) + pin(2 2 match) + device(3 3 match) + device(4 4 match) + device(1 1 match) + device(2 2 match) + ) + ) + circuit(RINGO RINGO match + xref( + net(1 6 match) + net(10 15 match) + net(2 7 match) + net(3 8 match) + net(4 9 match) + net(5 10 match) + net(6 11 match) + net(7 12 match) + net(8 13 match) + net(9 14 match) + net(14 4 match) + net(11 3 match) + net(13 5 match) + net(12 2 match) + net(15 1 match) + pin(3 3 match) + pin(0 2 match) + pin(2 4 match) + pin(1 1 match) + pin(4 0 match) + circuit(2 2 match) + circuit(3 3 match) + circuit(4 4 match) + circuit(5 5 match) + circuit(6 6 match) + circuit(7 7 match) + circuit(8 8 match) + circuit(9 9 match) + circuit(10 10 match) + circuit(11 11 match) + circuit(12 12 match) + circuit(1 1 match) + ) + ) +) diff --git a/testdata/lvs/ringo_simple_io.lvsdb.2 b/testdata/lvs/ringo_simple_io.lvsdb.2 new file mode 100644 index 000000000..6c24dcf0b --- /dev/null +++ b/testdata/lvs/ringo_simple_io.lvsdb.2 @@ -0,0 +1,832 @@ +#%lvsdb-klayout +J( + W(RINGO) + U(0.001) + L(l3 '1/0') + L(l4 '5/0') + L(l8 '8/0') + L(l11 '9/0') + L(l12 '10/0') + L(l13 '11/0') + L(l7) + L(l2) + L(l9) + L(l6) + L(l10) + C(l3 l3 l9) + C(l4 l4 l8) + C(l8 l4 l8 l11 l2 l9 l6 l10) + C(l11 l8 l11 l12) + C(l12 l11 l12 l13) + C(l13 l12 l13) + C(l7 l7) + C(l2 l8 l2) + C(l9 l3 l8 l9) + C(l6 l8 l6) + C(l10 l8 l10) + G(l7 SUBSTRATE) + G(l10 SUBSTRATE) + K(PMOS MOS4) + K(NMOS MOS4) + D(D$PMOS PMOS + T(S + R(l2 (-550 -750) (425 1500)) + ) + T(G + R(l4 (-125 -750) (250 1500)) + ) + T(D + R(l2 (125 -750) (450 1500)) + ) + T(B + R(l3 (-125 -750) (250 1500)) + ) + ) + D(D$PMOS$1 PMOS + T(S + R(l2 (-575 -750) (450 1500)) + ) + T(G + R(l4 (-125 -750) (250 1500)) + ) + T(D + R(l2 (125 -750) (425 1500)) + ) + T(B + R(l3 (-125 -750) (250 1500)) + ) + ) + D(D$PMOS$2 PMOS + T(S + R(l2 (-550 -750) (425 1500)) + ) + T(G + R(l4 (-125 -750) (250 1500)) + ) + T(D + R(l2 (125 -750) (425 1500)) + ) + T(B + R(l3 (-125 -750) (250 1500)) + ) + ) + D(D$NMOS NMOS + T(S + R(l6 (-550 -475) (425 950)) + ) + T(G + R(l4 (-125 -475) (250 950)) + ) + T(D + R(l6 (125 -475) (450 950)) + ) + T(B + R(l7 (-125 -475) (250 950)) + ) + ) + D(D$NMOS$1 NMOS + T(S + R(l6 (-575 -475) (450 950)) + ) + T(G + R(l4 (-125 -475) (250 950)) + ) + T(D + R(l6 (125 -475) (425 950)) + ) + T(B + R(l7 (-125 -475) (250 950)) + ) + ) + D(D$NMOS$2 NMOS + T(S + R(l6 (-550 -475) (425 950)) + ) + T(G + R(l4 (-125 -475) (250 950)) + ) + T(D + R(l6 (125 -475) (425 950)) + ) + T(B + R(l7 (-125 -475) (250 950)) + ) + ) + X(ND2X1 + R((-100 400) (2600 7600)) + N(1 I(VDD) + R(l8 (1110 5160) (180 180)) + R(l8 (-180 920) (180 180)) + R(l8 (-180 -730) (180 180)) + R(l11 (-240 -790) (300 1700)) + R(l11 (-1350 0) (2400 800)) + R(l11 (-1150 -400) (0 0)) + R(l2 (-275 -2150) (425 1500)) + R(l2 (-400 -1500) (425 1500)) + ) + N(2 I(OUT) + R(l8 (1810 1770) (180 180)) + R(l8 (-180 370) (180 180)) + R(l8 (-1580 3760) (180 180)) + R(l8 (-180 -730) (180 180)) + R(l8 (-180 -730) (180 180)) + R(l8 (1220 920) (180 180)) + R(l8 (-180 -1280) (180 180)) + R(l8 (-180 370) (180 180)) + Q(l11 (-240 -4180) (0 1390) (490 0) (0 -300) (-190 0) (0 -1090)) + R(l11 (-110 1390) (300 1400)) + Q(l11 (-1890 0) (0 600) (300 0) (0 -300) (1590 0) (0 -300)) + R(l11 (-140 -500) (0 0)) + R(l11 (-1750 1100) (300 1400)) + R(l11 (1100 -1700) (300 300)) + R(l11 (-300 0) (300 1400)) + R(l2 (-375 -1450) (425 1500)) + R(l2 (-1800 -1500) (425 1500)) + R(l6 (950 -4890) (425 950)) + ) + N(3 I(VSS) + R(l8 (410 1770) (180 180)) + R(l8 (-180 370) (180 180)) + R(l11 (-240 -1300) (300 1360)) + R(l11 (-650 -2160) (2400 800)) + R(l11 (-1150 -400) (0 0)) + R(l6 (-950 860) (425 950)) + ) + N(4 I($4) + R(l3 (-100 4500) (2600 3500)) + ) + N(5 I(B) + R(l4 (1425 2860) (250 1940)) + R(l4 (-345 -950) (300 300)) + R(l4 (-205 650) (250 2000)) + R(l4 (-250 -2000) (250 2000)) + R(l4 (-250 -5390) (250 1450)) + R(l8 (-285 1050) (180 180)) + R(l11 (-70 -90) (0 0)) + R(l11 (-170 -150) (300 300)) + ) + N(6 I(A) + R(l4 (725 2860) (250 1940)) + R(l4 (-325 -1850) (300 300)) + R(l4 (-225 1550) (250 2000)) + R(l4 (-250 -2000) (250 2000)) + R(l4 (-250 -5390) (250 1450)) + R(l8 (-265 150) (180 180)) + R(l11 (-90 -90) (0 0)) + R(l11 (-150 -150) (300 300)) + ) + N(7 I(SUBSTRATE)) + N(8 I($I5) + R(l6 (975 1660) (425 950)) + R(l6 (-400 -950) (425 950)) + ) + P(1 I(VDD)) + P(2 I(OUT)) + P(3 I(VSS)) + P(4) + P(5 I(B)) + P(6 I(A)) + P(7 I(SUBSTRATE)) + D(1 D$PMOS + Y(850 5800) + E(L 0.25) + E(W 1.5) + E(AS 0.6375) + E(AD 0.3375) + E(PS 3.85) + E(PD 1.95) + T(S 2) + T(G 6) + T(D 1) + T(B 4) + ) + D(2 D$PMOS$1 + Y(1550 5800) + E(L 0.25) + E(W 1.5) + E(AS 0.3375) + E(AD 0.6375) + E(PS 1.95) + E(PD 3.85) + T(S 1) + T(G 5) + T(D 2) + T(B 4) + ) + D(3 D$NMOS + Y(850 2135) + E(L 0.25) + E(W 0.95) + E(AS 0.40375) + E(AD 0.21375) + E(PS 2.75) + E(PD 1.4) + T(S 3) + T(G 6) + T(D 8) + T(B 7) + ) + D(4 D$NMOS$1 + Y(1550 2135) + E(L 0.25) + E(W 0.95) + E(AS 0.21375) + E(AD 0.40375) + E(PS 1.4) + E(PD 2.75) + T(S 8) + T(G 5) + T(D 2) + T(B 7) + ) + ) + X(INVX1 + R((-100 400) (2000 7600)) + N(1 I(VDD) + R(l8 (410 6260) (180 180)) + R(l8 (-180 -730) (180 180)) + R(l8 (-180 -730) (180 180)) + R(l11 (-240 -240) (300 1400)) + R(l11 (-650 300) (1800 800)) + R(l11 (-1450 -1100) (300 300)) + R(l11 (300 400) (0 0)) + R(l2 (-650 -2150) (425 1500)) + ) + N(2 I(OUT) + R(l8 (1110 5160) (180 180)) + R(l8 (-180 920) (180 180)) + R(l8 (-180 -730) (180 180)) + R(l8 (-180 -4120) (180 180)) + R(l8 (-180 370) (180 180)) + R(l11 (-240 -790) (300 4790)) + R(l11 (-150 -2500) (0 0)) + R(l2 (-225 1050) (425 1500)) + R(l6 (-425 -4890) (425 950)) + ) + N(3 I(VSS) + R(l8 (410 1770) (180 180)) + R(l8 (-180 370) (180 180)) + R(l11 (-240 -1300) (300 1360)) + R(l11 (-650 -2160) (1800 800)) + R(l11 (-850 -400) (0 0)) + R(l6 (-650 860) (425 950)) + ) + N(4 I($4) + R(l3 (-100 4500) (2000 3500)) + ) + N(5 I(IN) + R(l4 (725 2860) (250 1940)) + R(l4 (-525 -1850) (300 300)) + R(l4 (-25 1550) (250 2000)) + R(l4 (-250 -2000) (250 2000)) + R(l4 (-250 -5390) (250 1450)) + R(l8 (-465 150) (180 180)) + R(l11 (-90 -90) (0 0)) + R(l11 (-150 -150) (300 300)) + ) + N(6 I(SUBSTRATE)) + P(1 I(VDD)) + P(2 I(OUT)) + P(3 I(VSS)) + P(4) + P(5 I(IN)) + P(6 I(SUBSTRATE)) + D(1 D$PMOS$2 + Y(850 5800) + E(L 0.25) + E(W 1.5) + E(AS 0.6375) + E(AD 0.6375) + E(PS 3.85) + E(PD 3.85) + T(S 1) + T(G 5) + T(D 2) + T(B 4) + ) + D(2 D$NMOS$2 + Y(850 2135) + E(L 0.25) + E(W 0.95) + E(AS 0.40375) + E(AD 0.40375) + E(PS 2.75) + E(PD 2.75) + T(S 3) + T(G 5) + T(D 2) + T(B 6) + ) + ) + X(RINGO + R((0 350) (25800 7650)) + N(1 I($1) + R(l11 (4040 2950) (610 300)) + ) + N(2 I($2) + R(l11 (5550 2950) (900 300)) + ) + N(3 I($3) + R(l11 (7350 2950) (900 300)) + ) + N(4 I($4) + R(l11 (9150 2950) (900 300)) + ) + N(5 I($5) + R(l11 (10950 2950) (900 300)) + ) + N(6 I($6) + R(l11 (12750 2950) (900 300)) + ) + N(7 I($7) + R(l11 (14550 2950) (900 300)) + ) + N(8 I($8) + R(l11 (16350 2950) (900 300)) + ) + N(9 I($9) + R(l11 (18150 2950) (900 300)) + ) + N(10 I($10) + R(l11 (19950 2950) (900 300)) + ) + N(11 I(FB) + R(l11 (21750 2950) (900 300)) + R(l11 (-19530 590) (320 320)) + R(l11 (17820 -320) (320 320)) + R(l12 (-18400 -260) (200 200)) + R(l12 (17940 -200) (200 200)) + R(l13 (-18040 -300) (17740 400)) + R(l13 (-17920 -200) (0 0)) + R(l13 (-220 -200) (400 400)) + R(l13 (17740 -400) (400 400)) + ) + N(12 I(VDD) + R(l3 (0 4500) (600 3500)) + R(l3 (23300 -3500) (1400 3500)) + R(l3 (-100 -3500) (600 3500)) + R(l3 (-25300 -3500) (1400 3500)) + R(l8 (22610 -1240) (180 180)) + R(l8 (-180 370) (180 180)) + R(l8 (-180 -1280) (180 180)) + R(l8 (-23580 370) (180 180)) + R(l8 (-180 370) (180 180)) + R(l8 (-180 -1280) (180 180)) + R(l11 (1660 860) (0 0)) + R(l11 (-2950 -450) (600 800)) + R(l11 (23400 -800) (1200 800)) + R(l11 (-750 -1450) (300 1400)) + R(l11 (-100 -350) (0 0)) + R(l11 (550 -400) (600 800)) + R(l11 (-25200 -800) (1200 800)) + R(l11 (-750 -1450) (300 1400)) + R(l11 (-100 -350) (0 0)) + R(l9 (23100 -1100) (500 1500)) + R(l9 (-23900 -1500) (500 1500)) + ) + N(13 I(OUT) + R(l11 (23440 3840) (320 320)) + R(l12 (-260 -260) (200 200)) + R(l13 (-100 -100) (0 0)) + R(l13 (-200 -200) (400 400)) + ) + N(14 I(ENABLE) + R(l11 (2440 2940) (320 320)) + R(l12 (-260 -260) (200 200)) + R(l13 (-100 -100) (0 0)) + R(l13 (-200 -200) (400 400)) + ) + N(15 I(VSS) + R(l8 (24510 1610) (180 180)) + R(l8 (-180 -1280) (180 180)) + R(l8 (-180 370) (180 180)) + R(l8 (-23580 370) (180 180)) + R(l8 (-180 -1280) (180 180)) + R(l8 (-180 370) (180 180)) + R(l11 (1660 -390) (0 0)) + R(l11 (21500 -400) (300 1400)) + R(l11 (-750 -1450) (1200 800)) + R(l11 (-550 -400) (0 0)) + R(l11 (550 -400) (600 800)) + R(l11 (-25800 -800) (600 800)) + R(l11 (450 -750) (300 1400)) + R(l11 (-750 -1450) (1200 800)) + R(l11 (-550 -400) (0 0)) + R(l10 (23100 -400) (500 1500)) + R(l10 (-23900 -1500) (500 1500)) + ) + P(11 I(FB)) + P(12 I(VDD)) + P(13 I(OUT)) + P(14 I(ENABLE)) + P(15 I(VSS)) + X(1 ND2X1 Y(1800 0) + P(0 12) + P(1 1) + P(2 15) + P(3 12) + P(4 11) + P(5 14) + P(6 15) + ) + X(2 INVX1 Y(4200 0) + P(0 12) + P(1 2) + P(2 15) + P(3 12) + P(4 1) + P(5 15) + ) + X(3 INVX1 Y(6000 0) + P(0 12) + P(1 3) + P(2 15) + P(3 12) + P(4 2) + P(5 15) + ) + X(4 INVX1 Y(7800 0) + P(0 12) + P(1 4) + P(2 15) + P(3 12) + P(4 3) + P(5 15) + ) + X(5 INVX1 Y(9600 0) + P(0 12) + P(1 5) + P(2 15) + P(3 12) + P(4 4) + P(5 15) + ) + X(6 INVX1 Y(11400 0) + P(0 12) + P(1 6) + P(2 15) + P(3 12) + P(4 5) + P(5 15) + ) + X(7 INVX1 Y(13200 0) + P(0 12) + P(1 7) + P(2 15) + P(3 12) + P(4 6) + P(5 15) + ) + X(8 INVX1 Y(15000 0) + P(0 12) + P(1 8) + P(2 15) + P(3 12) + P(4 7) + P(5 15) + ) + X(9 INVX1 Y(16800 0) + P(0 12) + P(1 9) + P(2 15) + P(3 12) + P(4 8) + P(5 15) + ) + X(10 INVX1 Y(18600 0) + P(0 12) + P(1 10) + P(2 15) + P(3 12) + P(4 9) + P(5 15) + ) + X(11 INVX1 Y(20400 0) + P(0 12) + P(1 11) + P(2 15) + P(3 12) + P(4 10) + P(5 15) + ) + X(12 INVX1 Y(22200 0) + P(0 12) + P(1 13) + P(2 15) + P(3 12) + P(4 11) + P(5 15) + ) + ) +) +H( + K(PMOS MOS4) + K(NMOS MOS4) + X(ND2X1 + N(1 I(VDD)) + N(2 I(OUT)) + N(3 I(VSS)) + N(4 I(NWELL)) + N(5 I(B)) + N(6 I(A)) + N(7 I(BULK)) + N(8 I('1')) + P(1 I(VDD)) + P(2 I(OUT)) + P(3 I(VSS)) + P(4 I(NWELL)) + P(5 I(B)) + P(6 I(A)) + P(7 I(BULK)) + D(1 PMOS + I($1) + E(L 0.25) + E(W 1.5) + E(AS 0) + E(AD 0) + E(PS 0) + E(PD 0) + T(S 1) + T(G 6) + T(D 2) + T(B 4) + ) + D(2 PMOS + I($2) + E(L 0.25) + E(W 1.5) + E(AS 0) + E(AD 0) + E(PS 0) + E(PD 0) + T(S 1) + T(G 5) + T(D 2) + T(B 4) + ) + D(3 NMOS + I($3) + E(L 0.25) + E(W 0.95) + E(AS 0) + E(AD 0) + E(PS 0) + E(PD 0) + T(S 3) + T(G 6) + T(D 8) + T(B 7) + ) + D(4 NMOS + I($4) + E(L 0.25) + E(W 0.95) + E(AS 0) + E(AD 0) + E(PS 0) + E(PD 0) + T(S 8) + T(G 5) + T(D 2) + T(B 7) + ) + ) + X(INVX1 + N(1 I(VDD)) + N(2 I(OUT)) + N(3 I(VSS)) + N(4 I(NWELL)) + N(5 I(IN)) + N(6 I(BULK)) + P(1 I(VDD)) + P(2 I(OUT)) + P(3 I(VSS)) + P(4 I(NWELL)) + P(5 I(IN)) + P(6 I(BULK)) + D(1 PMOS + I($1) + E(L 0.25) + E(W 1.5) + E(AS 0) + E(AD 0) + E(PS 0) + E(PD 0) + T(S 1) + T(G 5) + T(D 2) + T(B 4) + ) + D(2 NMOS + I($2) + E(L 0.25) + E(W 0.95) + E(AS 0) + E(AD 0) + E(PS 0) + E(PD 0) + T(S 3) + T(G 5) + T(D 2) + T(B 6) + ) + ) + X(RINGO + N(1 I(VSS)) + N(2 I(VDD)) + N(3 I(FB)) + N(4 I(ENABLE)) + N(5 I(OUT)) + N(6 I('1')) + N(7 I('2')) + N(8 I('3')) + N(9 I('4')) + N(10 I('5')) + N(11 I('6')) + N(12 I('7')) + N(13 I('8')) + N(14 I('9')) + N(15 I('10')) + P(1 I(VSS)) + P(2 I(VDD)) + P(3 I(FB)) + P(4 I(ENABLE)) + P(5 I(OUT)) + X(1 ND2X1 I($1) + P(0 2) + P(1 6) + P(2 1) + P(3 2) + P(4 3) + P(5 4) + P(6 1) + ) + X(2 INVX1 I($2) + P(0 2) + P(1 7) + P(2 1) + P(3 2) + P(4 6) + P(5 1) + ) + X(3 INVX1 I($3) + P(0 2) + P(1 8) + P(2 1) + P(3 2) + P(4 7) + P(5 1) + ) + X(4 INVX1 I($4) + P(0 2) + P(1 9) + P(2 1) + P(3 2) + P(4 8) + P(5 1) + ) + X(5 INVX1 I($5) + P(0 2) + P(1 10) + P(2 1) + P(3 2) + P(4 9) + P(5 1) + ) + X(6 INVX1 I($6) + P(0 2) + P(1 11) + P(2 1) + P(3 2) + P(4 10) + P(5 1) + ) + X(7 INVX1 I($7) + P(0 2) + P(1 12) + P(2 1) + P(3 2) + P(4 11) + P(5 1) + ) + X(8 INVX1 I($8) + P(0 2) + P(1 13) + P(2 1) + P(3 2) + P(4 12) + P(5 1) + ) + X(9 INVX1 I($9) + P(0 2) + P(1 14) + P(2 1) + P(3 2) + P(4 13) + P(5 1) + ) + X(10 INVX1 I($10) + P(0 2) + P(1 15) + P(2 1) + P(3 2) + P(4 14) + P(5 1) + ) + X(11 INVX1 I($11) + P(0 2) + P(1 3) + P(2 1) + P(3 2) + P(4 15) + P(5 1) + ) + X(12 INVX1 I($12) + P(0 2) + P(1 5) + P(2 1) + P(3 2) + P(4 3) + P(5 1) + ) + ) +) +Z( + X(INVX1 INVX1 1 + Z( + N(4 4 1) + N(5 5 1) + N(2 2 1) + N(6 6 1) + N(1 1 1) + N(3 3 1) + P(3 3 1) + P(4 4 1) + P(1 1 1) + P(5 5 1) + P(0 0 1) + P(2 2 1) + D(2 2 1) + D(1 1 1) + ) + ) + X(ND2X1 ND2X1 1 + Z( + N(8 8 1) + N(4 4 1) + N(6 6 1) + N(5 5 1) + N(2 2 1) + N(7 7 1) + N(1 1 1) + N(3 3 1) + P(3 3 1) + P(5 5 1) + P(4 4 1) + P(1 1 1) + P(6 6 1) + P(0 0 1) + P(2 2 1) + D(3 3 1) + D(4 4 1) + D(1 1 1) + D(2 2 1) + ) + ) + X(RINGO RINGO 1 + Z( + N(1 6 1) + N(10 15 1) + N(2 7 1) + N(3 8 1) + N(4 9 1) + N(5 10 1) + N(6 11 1) + N(7 12 1) + N(8 13 1) + N(9 14 1) + N(14 4 1) + N(11 3 1) + N(13 5 1) + N(12 2 1) + N(15 1 1) + P(3 3 1) + P(0 2 1) + P(2 4 1) + P(1 1 1) + P(4 0 1) + X(2 2 1) + X(3 3 1) + X(4 4 1) + X(5 5 1) + X(6 6 1) + X(7 7 1) + X(8 8 1) + X(9 9 1) + X(10 10 1) + X(11 11 1) + X(12 12 1) + X(1 1 1) + ) + ) +) diff --git a/testdata/lvs/ringo_simple_io2.lvsdb.2 b/testdata/lvs/ringo_simple_io2.lvsdb.2 new file mode 100644 index 000000000..4b945d92e --- /dev/null +++ b/testdata/lvs/ringo_simple_io2.lvsdb.2 @@ -0,0 +1,908 @@ +#%lvsdb-klayout + +# Layout +layout( + top(RINGO) + unit(0.001) + + # Layer section + # This section lists the mask layers (drawing or derived) and their connections. + + # Mask layers + layer(l3 '1/0') + layer(l4 '5/0') + layer(l8 '8/0') + layer(l11 '9/0') + layer(l12 '10/0') + layer(l13 '11/0') + layer(l7) + layer(l2) + layer(l9) + layer(l6) + layer(l10) + + # Mask layer connectivity + connect(l3 l3 l9) + connect(l4 l4 l8) + connect(l8 l4 l8 l11 l2 l9 l6 l10) + connect(l11 l8 l11 l12) + connect(l12 l11 l12 l13) + connect(l13 l12 l13) + connect(l7 l7) + connect(l2 l8 l2) + connect(l9 l3 l8 l9) + connect(l6 l8 l6) + connect(l10 l8 l10) + + # Global nets and connectivity + global(l7 SUBSTRATE) + global(l10 SUBSTRATE) + + # Device class section + class(PMOS MOS4) + class(NMOS MOS4) + + # Device abstracts section + # Device abstracts list the pin shapes of the devices. + device(D$PMOS PMOS + terminal(S + rect(l2 (-550 -750) (425 1500)) + ) + terminal(G + rect(l4 (-125 -750) (250 1500)) + ) + terminal(D + rect(l2 (125 -750) (450 1500)) + ) + terminal(B + rect(l3 (-125 -750) (250 1500)) + ) + ) + device(D$PMOS$1 PMOS + terminal(S + rect(l2 (-575 -750) (450 1500)) + ) + terminal(G + rect(l4 (-125 -750) (250 1500)) + ) + terminal(D + rect(l2 (125 -750) (425 1500)) + ) + terminal(B + rect(l3 (-125 -750) (250 1500)) + ) + ) + device(D$PMOS$2 PMOS + terminal(S + rect(l2 (-550 -750) (425 1500)) + ) + terminal(G + rect(l4 (-125 -750) (250 1500)) + ) + terminal(D + rect(l2 (125 -750) (425 1500)) + ) + terminal(B + rect(l3 (-125 -750) (250 1500)) + ) + ) + device(D$NMOS NMOS + terminal(S + rect(l6 (-550 -475) (425 950)) + ) + terminal(G + rect(l4 (-125 -475) (250 950)) + ) + terminal(D + rect(l6 (125 -475) (450 950)) + ) + terminal(B + rect(l7 (-125 -475) (250 950)) + ) + ) + device(D$NMOS$1 NMOS + terminal(S + rect(l6 (-575 -475) (450 950)) + ) + terminal(G + rect(l4 (-125 -475) (250 950)) + ) + terminal(D + rect(l6 (125 -475) (425 950)) + ) + terminal(B + rect(l7 (-125 -475) (250 950)) + ) + ) + device(D$NMOS$2 NMOS + terminal(S + rect(l6 (-550 -475) (425 950)) + ) + terminal(G + rect(l4 (-125 -475) (250 950)) + ) + terminal(D + rect(l6 (125 -475) (425 950)) + ) + terminal(B + rect(l7 (-125 -475) (250 950)) + ) + ) + + # Circuit section + # Circuits are the hierarchical building blocks of the netlist. + circuit(ND2X1 + + # Circuit boundary + rect((-100 400) (2600 7600)) + + # Nets with their geometries + net(1 name(VDD) + rect(l8 (1110 5160) (180 180)) + rect(l8 (-180 920) (180 180)) + rect(l8 (-180 -730) (180 180)) + rect(l11 (-240 -790) (300 1700)) + rect(l11 (-1350 0) (2400 800)) + rect(l11 (-1150 -400) (0 0)) + rect(l2 (-275 -2150) (425 1500)) + rect(l2 (-400 -1500) (425 1500)) + ) + net(2 name(OUT) + rect(l8 (1810 1770) (180 180)) + rect(l8 (-180 370) (180 180)) + rect(l8 (-1580 3760) (180 180)) + rect(l8 (-180 -730) (180 180)) + rect(l8 (-180 -730) (180 180)) + rect(l8 (1220 920) (180 180)) + rect(l8 (-180 -1280) (180 180)) + rect(l8 (-180 370) (180 180)) + polygon(l11 (-240 -4180) (0 1390) (490 0) (0 -300) (-190 0) (0 -1090)) + rect(l11 (-110 1390) (300 1400)) + polygon(l11 (-1890 0) (0 600) (300 0) (0 -300) (1590 0) (0 -300)) + rect(l11 (-140 -500) (0 0)) + rect(l11 (-1750 1100) (300 1400)) + rect(l11 (1100 -1700) (300 300)) + rect(l11 (-300 0) (300 1400)) + rect(l2 (-375 -1450) (425 1500)) + rect(l2 (-1800 -1500) (425 1500)) + rect(l6 (950 -4890) (425 950)) + ) + net(3 name(VSS) + rect(l8 (410 1770) (180 180)) + rect(l8 (-180 370) (180 180)) + rect(l11 (-240 -1300) (300 1360)) + rect(l11 (-650 -2160) (2400 800)) + rect(l11 (-1150 -400) (0 0)) + rect(l6 (-950 860) (425 950)) + ) + net(4 name($4) + rect(l3 (-100 4500) (2600 3500)) + ) + net(5 name(B) + rect(l4 (1425 2860) (250 1940)) + rect(l4 (-345 -950) (300 300)) + rect(l4 (-205 650) (250 2000)) + rect(l4 (-250 -2000) (250 2000)) + rect(l4 (-250 -5390) (250 1450)) + rect(l8 (-285 1050) (180 180)) + rect(l11 (-70 -90) (0 0)) + rect(l11 (-170 -150) (300 300)) + ) + net(6 name(A) + rect(l4 (725 2860) (250 1940)) + rect(l4 (-325 -1850) (300 300)) + rect(l4 (-225 1550) (250 2000)) + rect(l4 (-250 -2000) (250 2000)) + rect(l4 (-250 -5390) (250 1450)) + rect(l8 (-265 150) (180 180)) + rect(l11 (-90 -90) (0 0)) + rect(l11 (-150 -150) (300 300)) + ) + net(7 name(SUBSTRATE)) + net(8 name($I5) + rect(l6 (975 1660) (425 950)) + rect(l6 (-400 -950) (425 950)) + ) + + # Outgoing pins and their connections to nets + pin(1 name(VDD)) + pin(2 name(OUT)) + pin(3 name(VSS)) + pin(4) + pin(5 name(B)) + pin(6 name(A)) + pin(7 name(SUBSTRATE)) + + # Devices and their connections + device(1 D$PMOS + location(850 5800) + param(L 0.25) + param(W 1.5) + param(AS 0.6375) + param(AD 0.3375) + param(PS 3.85) + param(PD 1.95) + terminal(S 2) + terminal(G 6) + terminal(D 1) + terminal(B 4) + ) + device(2 D$PMOS$1 + location(1550 5800) + param(L 0.25) + param(W 1.5) + param(AS 0.3375) + param(AD 0.6375) + param(PS 1.95) + param(PD 3.85) + terminal(S 1) + terminal(G 5) + terminal(D 2) + terminal(B 4) + ) + device(3 D$NMOS + location(850 2135) + param(L 0.25) + param(W 0.95) + param(AS 0.40375) + param(AD 0.21375) + param(PS 2.75) + param(PD 1.4) + terminal(S 3) + terminal(G 6) + terminal(D 8) + terminal(B 7) + ) + device(4 D$NMOS$1 + location(1550 2135) + param(L 0.25) + param(W 0.95) + param(AS 0.21375) + param(AD 0.40375) + param(PS 1.4) + param(PD 2.75) + terminal(S 8) + terminal(G 5) + terminal(D 2) + terminal(B 7) + ) + + ) + circuit(INVX1 + + # Circuit boundary + rect((-100 400) (2000 7600)) + + # Nets with their geometries + net(1 name(VDD) + rect(l8 (410 6260) (180 180)) + rect(l8 (-180 -730) (180 180)) + rect(l8 (-180 -730) (180 180)) + rect(l11 (-240 -240) (300 1400)) + rect(l11 (-650 300) (1800 800)) + rect(l11 (-1450 -1100) (300 300)) + rect(l11 (300 400) (0 0)) + rect(l2 (-650 -2150) (425 1500)) + ) + net(2 name(OUT) + rect(l8 (1110 5160) (180 180)) + rect(l8 (-180 920) (180 180)) + rect(l8 (-180 -730) (180 180)) + rect(l8 (-180 -4120) (180 180)) + rect(l8 (-180 370) (180 180)) + rect(l11 (-240 -790) (300 4790)) + rect(l11 (-150 -2500) (0 0)) + rect(l2 (-225 1050) (425 1500)) + rect(l6 (-425 -4890) (425 950)) + ) + net(3 name(VSS) + rect(l8 (410 1770) (180 180)) + rect(l8 (-180 370) (180 180)) + rect(l11 (-240 -1300) (300 1360)) + rect(l11 (-650 -2160) (1800 800)) + rect(l11 (-850 -400) (0 0)) + rect(l6 (-650 860) (425 950)) + ) + net(4 name($4) + rect(l3 (-100 4500) (2000 3500)) + ) + net(5 name(IN) + rect(l4 (725 2860) (250 1940)) + rect(l4 (-525 -1850) (300 300)) + rect(l4 (-25 1550) (250 2000)) + rect(l4 (-250 -2000) (250 2000)) + rect(l4 (-250 -5390) (250 1450)) + rect(l8 (-465 150) (180 180)) + rect(l11 (-90 -90) (0 0)) + rect(l11 (-150 -150) (300 300)) + ) + net(6 name(SUBSTRATE)) + + # Outgoing pins and their connections to nets + pin(1 name(VDD)) + pin(2 name(OUT)) + pin(3 name(VSS)) + pin(4) + pin(5 name(IN)) + pin(6 name(SUBSTRATE)) + + # Devices and their connections + device(1 D$PMOS$2 + location(850 5800) + param(L 0.25) + param(W 1.5) + param(AS 0.6375) + param(AD 0.6375) + param(PS 3.85) + param(PD 3.85) + terminal(S 1) + terminal(G 5) + terminal(D 2) + terminal(B 4) + ) + device(2 D$NMOS$2 + location(850 2135) + param(L 0.25) + param(W 0.95) + param(AS 0.40375) + param(AD 0.40375) + param(PS 2.75) + param(PD 2.75) + terminal(S 3) + terminal(G 5) + terminal(D 2) + terminal(B 6) + ) + + ) + circuit(RINGO + + # Circuit boundary + rect((0 350) (25800 7650)) + + # Nets with their geometries + net(1 name($1) + rect(l11 (4040 2950) (610 300)) + ) + net(2 name($2) + rect(l11 (5550 2950) (900 300)) + ) + net(3 name($3) + rect(l11 (7350 2950) (900 300)) + ) + net(4 name($4) + rect(l11 (9150 2950) (900 300)) + ) + net(5 name($5) + rect(l11 (10950 2950) (900 300)) + ) + net(6 name($6) + rect(l11 (12750 2950) (900 300)) + ) + net(7 name($7) + rect(l11 (14550 2950) (900 300)) + ) + net(8 name($8) + rect(l11 (16350 2950) (900 300)) + ) + net(9 name($9) + rect(l11 (18150 2950) (900 300)) + ) + net(10 name($10) + rect(l11 (19950 2950) (900 300)) + ) + net(11 name(FB) + rect(l11 (21750 2950) (900 300)) + rect(l11 (-19530 590) (320 320)) + rect(l11 (17820 -320) (320 320)) + rect(l12 (-18400 -260) (200 200)) + rect(l12 (17940 -200) (200 200)) + rect(l13 (-18040 -300) (17740 400)) + rect(l13 (-17920 -200) (0 0)) + rect(l13 (-220 -200) (400 400)) + rect(l13 (17740 -400) (400 400)) + ) + net(12 name(VDD) + rect(l3 (0 4500) (600 3500)) + rect(l3 (23300 -3500) (1400 3500)) + rect(l3 (-100 -3500) (600 3500)) + rect(l3 (-25300 -3500) (1400 3500)) + rect(l8 (22610 -1240) (180 180)) + rect(l8 (-180 370) (180 180)) + rect(l8 (-180 -1280) (180 180)) + rect(l8 (-23580 370) (180 180)) + rect(l8 (-180 370) (180 180)) + rect(l8 (-180 -1280) (180 180)) + rect(l11 (1660 860) (0 0)) + rect(l11 (-2950 -450) (600 800)) + rect(l11 (23400 -800) (1200 800)) + rect(l11 (-750 -1450) (300 1400)) + rect(l11 (-100 -350) (0 0)) + rect(l11 (550 -400) (600 800)) + rect(l11 (-25200 -800) (1200 800)) + rect(l11 (-750 -1450) (300 1400)) + rect(l11 (-100 -350) (0 0)) + rect(l9 (23100 -1100) (500 1500)) + rect(l9 (-23900 -1500) (500 1500)) + ) + net(13 name(OUT) + rect(l11 (23440 3840) (320 320)) + rect(l12 (-260 -260) (200 200)) + rect(l13 (-100 -100) (0 0)) + rect(l13 (-200 -200) (400 400)) + ) + net(14 name(ENABLE) + rect(l11 (2440 2940) (320 320)) + rect(l12 (-260 -260) (200 200)) + rect(l13 (-100 -100) (0 0)) + rect(l13 (-200 -200) (400 400)) + ) + net(15 name(VSS) + rect(l8 (24510 1610) (180 180)) + rect(l8 (-180 -1280) (180 180)) + rect(l8 (-180 370) (180 180)) + rect(l8 (-23580 370) (180 180)) + rect(l8 (-180 -1280) (180 180)) + rect(l8 (-180 370) (180 180)) + rect(l11 (1660 -390) (0 0)) + rect(l11 (21500 -400) (300 1400)) + rect(l11 (-750 -1450) (1200 800)) + rect(l11 (-550 -400) (0 0)) + rect(l11 (550 -400) (600 800)) + rect(l11 (-25800 -800) (600 800)) + rect(l11 (450 -750) (300 1400)) + rect(l11 (-750 -1450) (1200 800)) + rect(l11 (-550 -400) (0 0)) + rect(l10 (23100 -400) (500 1500)) + rect(l10 (-23900 -1500) (500 1500)) + ) + + # Outgoing pins and their connections to nets + pin(11 name(FB)) + pin(12 name(VDD)) + pin(13 name(OUT)) + pin(14 name(ENABLE)) + pin(15 name(VSS)) + + # Subcircuits and their connections + circuit(1 ND2X1 location(1800 0) + pin(0 12) + pin(1 1) + pin(2 15) + pin(3 12) + pin(4 11) + pin(5 14) + pin(6 15) + ) + circuit(2 INVX1 location(4200 0) + pin(0 12) + pin(1 2) + pin(2 15) + pin(3 12) + pin(4 1) + pin(5 15) + ) + circuit(3 INVX1 location(6000 0) + pin(0 12) + pin(1 3) + pin(2 15) + pin(3 12) + pin(4 2) + pin(5 15) + ) + circuit(4 INVX1 location(7800 0) + pin(0 12) + pin(1 4) + pin(2 15) + pin(3 12) + pin(4 3) + pin(5 15) + ) + circuit(5 INVX1 location(9600 0) + pin(0 12) + pin(1 5) + pin(2 15) + pin(3 12) + pin(4 4) + pin(5 15) + ) + circuit(6 INVX1 location(11400 0) + pin(0 12) + pin(1 6) + pin(2 15) + pin(3 12) + pin(4 5) + pin(5 15) + ) + circuit(7 INVX1 location(13200 0) + pin(0 12) + pin(1 7) + pin(2 15) + pin(3 12) + pin(4 6) + pin(5 15) + ) + circuit(8 INVX1 location(15000 0) + pin(0 12) + pin(1 8) + pin(2 15) + pin(3 12) + pin(4 7) + pin(5 15) + ) + circuit(9 INVX1 location(16800 0) + pin(0 12) + pin(1 9) + pin(2 15) + pin(3 12) + pin(4 8) + pin(5 15) + ) + circuit(10 INVX1 location(18600 0) + pin(0 12) + pin(1 10) + pin(2 15) + pin(3 12) + pin(4 9) + pin(5 15) + ) + circuit(11 INVX1 location(20400 0) + pin(0 12) + pin(1 11) + pin(2 15) + pin(3 12) + pin(4 10) + pin(5 15) + ) + circuit(12 INVX1 location(22200 0) + pin(0 12) + pin(1 13) + pin(2 15) + pin(3 12) + pin(4 11) + pin(5 15) + ) + + ) +) + +# Reference netlist +reference( + + # Device class section + class(PMOS MOS4) + class(NMOS MOS4) + + # Circuit section + # Circuits are the hierarchical building blocks of the netlist. + circuit(ND2X1 + + # Nets + net(1 name(VDD)) + net(2 name(OUT)) + net(3 name(VSS)) + net(4 name(NWELL)) + net(5 name(B)) + net(6 name(A)) + net(7 name(BULK)) + net(8 name('1')) + + # Outgoing pins and their connections to nets + pin(1 name(VDD)) + pin(2 name(OUT)) + pin(3 name(VSS)) + pin(4 name(NWELL)) + pin(5 name(B)) + pin(6 name(A)) + pin(7 name(BULK)) + + # Devices and their connections + device(1 PMOS + name($1) + param(L 0.25) + param(W 1.5) + param(AS 0) + param(AD 0) + param(PS 0) + param(PD 0) + terminal(S 1) + terminal(G 6) + terminal(D 2) + terminal(B 4) + ) + device(2 PMOS + name($2) + param(L 0.25) + param(W 1.5) + param(AS 0) + param(AD 0) + param(PS 0) + param(PD 0) + terminal(S 1) + terminal(G 5) + terminal(D 2) + terminal(B 4) + ) + device(3 NMOS + name($3) + param(L 0.25) + param(W 0.95) + param(AS 0) + param(AD 0) + param(PS 0) + param(PD 0) + terminal(S 3) + terminal(G 6) + terminal(D 8) + terminal(B 7) + ) + device(4 NMOS + name($4) + param(L 0.25) + param(W 0.95) + param(AS 0) + param(AD 0) + param(PS 0) + param(PD 0) + terminal(S 8) + terminal(G 5) + terminal(D 2) + terminal(B 7) + ) + + ) + circuit(INVX1 + + # Nets + net(1 name(VDD)) + net(2 name(OUT)) + net(3 name(VSS)) + net(4 name(NWELL)) + net(5 name(IN)) + net(6 name(BULK)) + + # Outgoing pins and their connections to nets + pin(1 name(VDD)) + pin(2 name(OUT)) + pin(3 name(VSS)) + pin(4 name(NWELL)) + pin(5 name(IN)) + pin(6 name(BULK)) + + # Devices and their connections + device(1 PMOS + name($1) + param(L 0.25) + param(W 1.5) + param(AS 0) + param(AD 0) + param(PS 0) + param(PD 0) + terminal(S 1) + terminal(G 5) + terminal(D 2) + terminal(B 4) + ) + device(2 NMOS + name($2) + param(L 0.25) + param(W 0.95) + param(AS 0) + param(AD 0) + param(PS 0) + param(PD 0) + terminal(S 3) + terminal(G 5) + terminal(D 2) + terminal(B 6) + ) + + ) + circuit(RINGO + + # Nets + net(1 name(VSS)) + net(2 name(VDD)) + net(3 name(FB)) + net(4 name(ENABLE)) + net(5 name(OUT)) + net(6 name('1')) + net(7 name('2')) + net(8 name('3')) + net(9 name('4')) + net(10 name('5')) + net(11 name('6')) + net(12 name('7')) + net(13 name('8')) + net(14 name('9')) + net(15 name('10')) + + # Outgoing pins and their connections to nets + pin(1 name(VSS)) + pin(2 name(VDD)) + pin(3 name(FB)) + pin(4 name(ENABLE)) + pin(5 name(OUT)) + + # Subcircuits and their connections + circuit(1 ND2X1 name($1) + pin(0 2) + pin(1 6) + pin(2 1) + pin(3 2) + pin(4 3) + pin(5 4) + pin(6 1) + ) + circuit(2 INVX1 name($2) + pin(0 2) + pin(1 7) + pin(2 1) + pin(3 2) + pin(4 6) + pin(5 1) + ) + circuit(3 INVX1 name($3) + pin(0 2) + pin(1 8) + pin(2 1) + pin(3 2) + pin(4 7) + pin(5 1) + ) + circuit(4 INVX1 name($4) + pin(0 2) + pin(1 9) + pin(2 1) + pin(3 2) + pin(4 8) + pin(5 1) + ) + circuit(5 INVX1 name($5) + pin(0 2) + pin(1 10) + pin(2 1) + pin(3 2) + pin(4 9) + pin(5 1) + ) + circuit(6 INVX1 name($6) + pin(0 2) + pin(1 11) + pin(2 1) + pin(3 2) + pin(4 10) + pin(5 1) + ) + circuit(7 INVX1 name($7) + pin(0 2) + pin(1 12) + pin(2 1) + pin(3 2) + pin(4 11) + pin(5 1) + ) + circuit(8 INVX1 name($8) + pin(0 2) + pin(1 13) + pin(2 1) + pin(3 2) + pin(4 12) + pin(5 1) + ) + circuit(9 INVX1 name($9) + pin(0 2) + pin(1 14) + pin(2 1) + pin(3 2) + pin(4 13) + pin(5 1) + ) + circuit(10 INVX1 name($10) + pin(0 2) + pin(1 15) + pin(2 1) + pin(3 2) + pin(4 14) + pin(5 1) + ) + circuit(11 INVX1 name($11) + pin(0 2) + pin(1 3) + pin(2 1) + pin(3 2) + pin(4 15) + pin(5 1) + ) + circuit(12 INVX1 name($12) + pin(0 2) + pin(1 5) + pin(2 1) + pin(3 2) + pin(4 3) + pin(5 1) + ) + + ) +) + +# Cross reference +xref( + circuit(INVX1 INVX1 match + xref( + net(4 4 match) + net(5 5 match) + net(2 2 match) + net(6 6 match) + net(1 1 match) + net(3 3 match) + pin(3 3 match) + pin(4 4 match) + pin(1 1 match) + pin(5 5 match) + pin(0 0 match) + pin(2 2 match) + device(2 2 match) + device(1 1 match) + ) + ) + circuit(ND2X1 ND2X1 match + xref( + net(8 8 match) + net(4 4 match) + net(6 6 match) + net(5 5 match) + net(2 2 match) + net(7 7 match) + net(1 1 match) + net(3 3 match) + pin(3 3 match) + pin(5 5 match) + pin(4 4 match) + pin(1 1 match) + pin(6 6 match) + pin(0 0 match) + pin(2 2 match) + device(3 3 match) + device(4 4 match) + device(1 1 match) + device(2 2 match) + ) + ) + circuit(RINGO RINGO match + xref( + net(1 6 match) + net(10 15 match) + net(2 7 match) + net(3 8 match) + net(4 9 match) + net(5 10 match) + net(6 11 match) + net(7 12 match) + net(8 13 match) + net(9 14 match) + net(14 4 match) + net(11 3 match) + net(13 5 match) + net(12 2 match) + net(15 1 match) + pin(3 3 match) + pin(0 2 match) + pin(2 4 match) + pin(1 1 match) + pin(4 0 match) + circuit(2 2 match) + circuit(3 3 match) + circuit(4 4 match) + circuit(5 5 match) + circuit(6 6 match) + circuit(7 7 match) + circuit(8 8 match) + circuit(9 9 match) + circuit(10 10 match) + circuit(11 11 match) + circuit(12 12 match) + circuit(1 1 match) + ) + ) +) diff --git a/testdata/lvs/ringo_simple_net_and_circuit_equivalence.lvsdb.2 b/testdata/lvs/ringo_simple_net_and_circuit_equivalence.lvsdb.2 new file mode 100644 index 000000000..b0a359962 --- /dev/null +++ b/testdata/lvs/ringo_simple_net_and_circuit_equivalence.lvsdb.2 @@ -0,0 +1,908 @@ +#%lvsdb-klayout + +# Layout +layout( + top(top) + unit(0.001) + + # Layer section + # This section lists the mask layers (drawing or derived) and their connections. + + # Mask layers + layer(l3 '1/0') + layer(l4 '5/0') + layer(l8 '8/0') + layer(l11 '9/0') + layer(l12 '10/0') + layer(l13 '11/0') + layer(l7) + layer(l2) + layer(l9) + layer(l6) + layer(l10) + + # Mask layer connectivity + connect(l3 l3 l9) + connect(l4 l4 l8) + connect(l8 l4 l8 l11 l2 l9 l6 l10) + connect(l11 l8 l11 l12) + connect(l12 l11 l12 l13) + connect(l13 l12 l13) + connect(l7 l7) + connect(l2 l8 l2) + connect(l9 l3 l8 l9) + connect(l6 l8 l6) + connect(l10 l8 l10) + + # Global nets and connectivity + global(l7 SUBSTRATE) + global(l10 SUBSTRATE) + + # Device class section + class(PMOS MOS4) + class(NMOS MOS4) + + # Device abstracts section + # Device abstracts list the pin shapes of the devices. + device(D$PMOS PMOS + terminal(S + rect(l2 (-550 -750) (425 1500)) + ) + terminal(G + rect(l4 (-125 -750) (250 1500)) + ) + terminal(D + rect(l2 (125 -750) (450 1500)) + ) + terminal(B + rect(l3 (-125 -750) (250 1500)) + ) + ) + device(D$PMOS$1 PMOS + terminal(S + rect(l2 (-575 -750) (450 1500)) + ) + terminal(G + rect(l4 (-125 -750) (250 1500)) + ) + terminal(D + rect(l2 (125 -750) (425 1500)) + ) + terminal(B + rect(l3 (-125 -750) (250 1500)) + ) + ) + device(D$PMOS$2 PMOS + terminal(S + rect(l2 (-550 -750) (425 1500)) + ) + terminal(G + rect(l4 (-125 -750) (250 1500)) + ) + terminal(D + rect(l2 (125 -750) (425 1500)) + ) + terminal(B + rect(l3 (-125 -750) (250 1500)) + ) + ) + device(D$NMOS NMOS + terminal(S + rect(l6 (-550 -475) (425 950)) + ) + terminal(G + rect(l4 (-125 -475) (250 950)) + ) + terminal(D + rect(l6 (125 -475) (450 950)) + ) + terminal(B + rect(l7 (-125 -475) (250 950)) + ) + ) + device(D$NMOS$1 NMOS + terminal(S + rect(l6 (-575 -475) (450 950)) + ) + terminal(G + rect(l4 (-125 -475) (250 950)) + ) + terminal(D + rect(l6 (125 -475) (425 950)) + ) + terminal(B + rect(l7 (-125 -475) (250 950)) + ) + ) + device(D$NMOS$2 NMOS + terminal(S + rect(l6 (-550 -475) (425 950)) + ) + terminal(G + rect(l4 (-125 -475) (250 950)) + ) + terminal(D + rect(l6 (125 -475) (425 950)) + ) + terminal(B + rect(l7 (-125 -475) (250 950)) + ) + ) + + # Circuit section + # Circuits are the hierarchical building blocks of the netlist. + circuit(nd2X1 + + # Circuit boundary + rect((-100 400) (2600 7600)) + + # Nets with their geometries + net(1 name(VDD) + rect(l8 (1110 5160) (180 180)) + rect(l8 (-180 920) (180 180)) + rect(l8 (-180 -730) (180 180)) + rect(l11 (-240 -790) (300 1700)) + rect(l11 (-1350 0) (2400 800)) + rect(l11 (-1150 -400) (0 0)) + rect(l2 (-275 -2150) (425 1500)) + rect(l2 (-400 -1500) (425 1500)) + ) + net(2 name(OUT) + rect(l8 (1810 1770) (180 180)) + rect(l8 (-180 370) (180 180)) + rect(l8 (-1580 3760) (180 180)) + rect(l8 (-180 -730) (180 180)) + rect(l8 (-180 -730) (180 180)) + rect(l8 (1220 920) (180 180)) + rect(l8 (-180 -1280) (180 180)) + rect(l8 (-180 370) (180 180)) + polygon(l11 (-240 -4180) (0 1390) (490 0) (0 -300) (-190 0) (0 -1090)) + rect(l11 (-110 1390) (300 1400)) + polygon(l11 (-1890 0) (0 600) (300 0) (0 -300) (1590 0) (0 -300)) + rect(l11 (-140 -500) (0 0)) + rect(l11 (-1750 1100) (300 1400)) + rect(l11 (1100 -1700) (300 300)) + rect(l11 (-300 0) (300 1400)) + rect(l2 (-375 -1450) (425 1500)) + rect(l2 (-1800 -1500) (425 1500)) + rect(l6 (950 -4890) (425 950)) + ) + net(3 name(VSS) + rect(l8 (410 1770) (180 180)) + rect(l8 (-180 370) (180 180)) + rect(l11 (-240 -1300) (300 1360)) + rect(l11 (-650 -2160) (2400 800)) + rect(l11 (-1150 -400) (0 0)) + rect(l6 (-950 860) (425 950)) + ) + net(4 name($4) + rect(l3 (-100 4500) (2600 3500)) + ) + net(5 name(B) + rect(l4 (1425 2860) (250 1940)) + rect(l4 (-345 -950) (300 300)) + rect(l4 (-205 650) (250 2000)) + rect(l4 (-250 -2000) (250 2000)) + rect(l4 (-250 -5390) (250 1450)) + rect(l8 (-285 1050) (180 180)) + rect(l11 (-70 -90) (0 0)) + rect(l11 (-170 -150) (300 300)) + ) + net(6 name(A) + rect(l4 (725 2860) (250 1940)) + rect(l4 (-325 -1850) (300 300)) + rect(l4 (-225 1550) (250 2000)) + rect(l4 (-250 -2000) (250 2000)) + rect(l4 (-250 -5390) (250 1450)) + rect(l8 (-265 150) (180 180)) + rect(l11 (-90 -90) (0 0)) + rect(l11 (-150 -150) (300 300)) + ) + net(7 name(SUBSTRATE)) + net(8 name($I5) + rect(l6 (975 1660) (425 950)) + rect(l6 (-400 -950) (425 950)) + ) + + # Outgoing pins and their connections to nets + pin(1 name(VDD)) + pin(2 name(OUT)) + pin(3 name(VSS)) + pin(4) + pin(5 name(B)) + pin(6 name(A)) + pin(7 name(SUBSTRATE)) + + # Devices and their connections + device(1 D$PMOS + location(850 5800) + param(L 0.25) + param(W 1.5) + param(AS 0.6375) + param(AD 0.3375) + param(PS 3.85) + param(PD 1.95) + terminal(S 2) + terminal(G 6) + terminal(D 1) + terminal(B 4) + ) + device(2 D$PMOS$1 + location(1550 5800) + param(L 0.25) + param(W 1.5) + param(AS 0.3375) + param(AD 0.6375) + param(PS 1.95) + param(PD 3.85) + terminal(S 1) + terminal(G 5) + terminal(D 2) + terminal(B 4) + ) + device(3 D$NMOS + location(850 2135) + param(L 0.25) + param(W 0.95) + param(AS 0.40375) + param(AD 0.21375) + param(PS 2.75) + param(PD 1.4) + terminal(S 3) + terminal(G 6) + terminal(D 8) + terminal(B 7) + ) + device(4 D$NMOS$1 + location(1550 2135) + param(L 0.25) + param(W 0.95) + param(AS 0.21375) + param(AD 0.40375) + param(PS 1.4) + param(PD 2.75) + terminal(S 8) + terminal(G 5) + terminal(D 2) + terminal(B 7) + ) + + ) + circuit(INV + + # Circuit boundary + rect((-100 400) (2000 7600)) + + # Nets with their geometries + net(1 name(VDD) + rect(l8 (410 6260) (180 180)) + rect(l8 (-180 -730) (180 180)) + rect(l8 (-180 -730) (180 180)) + rect(l11 (-240 -240) (300 1400)) + rect(l11 (-650 300) (1800 800)) + rect(l11 (-1450 -1100) (300 300)) + rect(l11 (300 400) (0 0)) + rect(l2 (-650 -2150) (425 1500)) + ) + net(2 name(OUT) + rect(l8 (1110 5160) (180 180)) + rect(l8 (-180 920) (180 180)) + rect(l8 (-180 -730) (180 180)) + rect(l8 (-180 -4120) (180 180)) + rect(l8 (-180 370) (180 180)) + rect(l11 (-240 -790) (300 4790)) + rect(l11 (-150 -2500) (0 0)) + rect(l2 (-225 1050) (425 1500)) + rect(l6 (-425 -4890) (425 950)) + ) + net(3 name(VSS) + rect(l8 (410 1770) (180 180)) + rect(l8 (-180 370) (180 180)) + rect(l11 (-240 -1300) (300 1360)) + rect(l11 (-650 -2160) (1800 800)) + rect(l11 (-850 -400) (0 0)) + rect(l6 (-650 860) (425 950)) + ) + net(4 name($4) + rect(l3 (-100 4500) (2000 3500)) + ) + net(5 name(IN) + rect(l4 (725 2860) (250 1940)) + rect(l4 (-525 -1850) (300 300)) + rect(l4 (-25 1550) (250 2000)) + rect(l4 (-250 -2000) (250 2000)) + rect(l4 (-250 -5390) (250 1450)) + rect(l8 (-465 150) (180 180)) + rect(l11 (-90 -90) (0 0)) + rect(l11 (-150 -150) (300 300)) + ) + net(6 name(SUBSTRATE)) + + # Outgoing pins and their connections to nets + pin(1 name(VDD)) + pin(2 name(OUT)) + pin(3 name(VSS)) + pin(4) + pin(5 name(IN)) + pin(6 name(SUBSTRATE)) + + # Devices and their connections + device(1 D$PMOS$2 + location(850 5800) + param(L 0.25) + param(W 1.5) + param(AS 0.6375) + param(AD 0.6375) + param(PS 3.85) + param(PD 3.85) + terminal(S 1) + terminal(G 5) + terminal(D 2) + terminal(B 4) + ) + device(2 D$NMOS$2 + location(850 2135) + param(L 0.25) + param(W 0.95) + param(AS 0.40375) + param(AD 0.40375) + param(PS 2.75) + param(PD 2.75) + terminal(S 3) + terminal(G 5) + terminal(D 2) + terminal(B 6) + ) + + ) + circuit(top + + # Circuit boundary + rect((0 350) (25800 7650)) + + # Nets with their geometries + net(1 name($1) + rect(l11 (4040 2950) (610 300)) + ) + net(2 name($2) + rect(l11 (5550 2950) (900 300)) + ) + net(3 name($3) + rect(l11 (7350 2950) (900 300)) + ) + net(4 name($4) + rect(l11 (9150 2950) (900 300)) + ) + net(5 name($5) + rect(l11 (10950 2950) (900 300)) + ) + net(6 name($6) + rect(l11 (12750 2950) (900 300)) + ) + net(7 name($7) + rect(l11 (14550 2950) (900 300)) + ) + net(8 name($8) + rect(l11 (16350 2950) (900 300)) + ) + net(9 name($9) + rect(l11 (18150 2950) (900 300)) + ) + net(10 name($10) + rect(l11 (19950 2950) (900 300)) + ) + net(11 name(FB) + rect(l11 (21750 2950) (900 300)) + rect(l11 (-19530 590) (320 320)) + rect(l11 (17820 -320) (320 320)) + rect(l12 (-18400 -260) (200 200)) + rect(l12 (17940 -200) (200 200)) + rect(l13 (-18040 -300) (17740 400)) + rect(l13 (-17920 -200) (0 0)) + rect(l13 (-220 -200) (400 400)) + rect(l13 (17740 -400) (400 400)) + ) + net(12 name(VDD) + rect(l3 (0 4500) (600 3500)) + rect(l3 (23300 -3500) (1400 3500)) + rect(l3 (-100 -3500) (600 3500)) + rect(l3 (-25300 -3500) (1400 3500)) + rect(l8 (22610 -1240) (180 180)) + rect(l8 (-180 370) (180 180)) + rect(l8 (-180 -1280) (180 180)) + rect(l8 (-23580 370) (180 180)) + rect(l8 (-180 370) (180 180)) + rect(l8 (-180 -1280) (180 180)) + rect(l11 (1660 860) (0 0)) + rect(l11 (-2950 -450) (600 800)) + rect(l11 (23400 -800) (1200 800)) + rect(l11 (-750 -1450) (300 1400)) + rect(l11 (-100 -350) (0 0)) + rect(l11 (550 -400) (600 800)) + rect(l11 (-25200 -800) (1200 800)) + rect(l11 (-750 -1450) (300 1400)) + rect(l11 (-100 -350) (0 0)) + rect(l9 (23100 -1100) (500 1500)) + rect(l9 (-23900 -1500) (500 1500)) + ) + net(13 name(OUT) + rect(l11 (23440 3840) (320 320)) + rect(l12 (-260 -260) (200 200)) + rect(l13 (-100 -100) (0 0)) + rect(l13 (-200 -200) (400 400)) + ) + net(14 name(ENABLE) + rect(l11 (2440 2940) (320 320)) + rect(l12 (-260 -260) (200 200)) + rect(l13 (-100 -100) (0 0)) + rect(l13 (-200 -200) (400 400)) + ) + net(15 name(VSS) + rect(l8 (24510 1610) (180 180)) + rect(l8 (-180 -1280) (180 180)) + rect(l8 (-180 370) (180 180)) + rect(l8 (-23580 370) (180 180)) + rect(l8 (-180 -1280) (180 180)) + rect(l8 (-180 370) (180 180)) + rect(l11 (1660 -390) (0 0)) + rect(l11 (21500 -400) (300 1400)) + rect(l11 (-750 -1450) (1200 800)) + rect(l11 (-550 -400) (0 0)) + rect(l11 (550 -400) (600 800)) + rect(l11 (-25800 -800) (600 800)) + rect(l11 (450 -750) (300 1400)) + rect(l11 (-750 -1450) (1200 800)) + rect(l11 (-550 -400) (0 0)) + rect(l10 (23100 -400) (500 1500)) + rect(l10 (-23900 -1500) (500 1500)) + ) + + # Outgoing pins and their connections to nets + pin(11 name(FB)) + pin(12 name(VDD)) + pin(13 name(OUT)) + pin(14 name(ENABLE)) + pin(15 name(VSS)) + + # Subcircuits and their connections + circuit(1 nd2X1 location(1800 0) + pin(0 12) + pin(1 1) + pin(2 15) + pin(3 12) + pin(4 11) + pin(5 14) + pin(6 15) + ) + circuit(2 INV location(4200 0) + pin(0 12) + pin(1 2) + pin(2 15) + pin(3 12) + pin(4 1) + pin(5 15) + ) + circuit(3 INV location(6000 0) + pin(0 12) + pin(1 3) + pin(2 15) + pin(3 12) + pin(4 2) + pin(5 15) + ) + circuit(4 INV location(7800 0) + pin(0 12) + pin(1 4) + pin(2 15) + pin(3 12) + pin(4 3) + pin(5 15) + ) + circuit(5 INV location(9600 0) + pin(0 12) + pin(1 5) + pin(2 15) + pin(3 12) + pin(4 4) + pin(5 15) + ) + circuit(6 INV location(11400 0) + pin(0 12) + pin(1 6) + pin(2 15) + pin(3 12) + pin(4 5) + pin(5 15) + ) + circuit(7 INV location(13200 0) + pin(0 12) + pin(1 7) + pin(2 15) + pin(3 12) + pin(4 6) + pin(5 15) + ) + circuit(8 INV location(15000 0) + pin(0 12) + pin(1 8) + pin(2 15) + pin(3 12) + pin(4 7) + pin(5 15) + ) + circuit(9 INV location(16800 0) + pin(0 12) + pin(1 9) + pin(2 15) + pin(3 12) + pin(4 8) + pin(5 15) + ) + circuit(10 INV location(18600 0) + pin(0 12) + pin(1 10) + pin(2 15) + pin(3 12) + pin(4 9) + pin(5 15) + ) + circuit(11 INV location(20400 0) + pin(0 12) + pin(1 11) + pin(2 15) + pin(3 12) + pin(4 10) + pin(5 15) + ) + circuit(12 INV location(22200 0) + pin(0 12) + pin(1 13) + pin(2 15) + pin(3 12) + pin(4 11) + pin(5 15) + ) + + ) +) + +# Reference netlist +reference( + + # Device class section + class(PMOS MOS4) + class(NMOS MOS4) + + # Circuit section + # Circuits are the hierarchical building blocks of the netlist. + circuit(ND2X1 + + # Nets + net(1 name(VDD)) + net(2 name(OUT)) + net(3 name(VSS)) + net(4 name(NWELL)) + net(5 name(B)) + net(6 name(A)) + net(7 name(BULK)) + net(8 name('1')) + + # Outgoing pins and their connections to nets + pin(1 name(VDD)) + pin(2 name(OUT)) + pin(3 name(VSS)) + pin(4 name(NWELL)) + pin(5 name(B)) + pin(6 name(A)) + pin(7 name(BULK)) + + # Devices and their connections + device(1 PMOS + name($1) + param(L 0.25) + param(W 1.5) + param(AS 0) + param(AD 0) + param(PS 0) + param(PD 0) + terminal(S 1) + terminal(G 6) + terminal(D 2) + terminal(B 4) + ) + device(2 PMOS + name($2) + param(L 0.25) + param(W 1.5) + param(AS 0) + param(AD 0) + param(PS 0) + param(PD 0) + terminal(S 1) + terminal(G 5) + terminal(D 2) + terminal(B 4) + ) + device(3 NMOS + name($3) + param(L 0.25) + param(W 0.95) + param(AS 0) + param(AD 0) + param(PS 0) + param(PD 0) + terminal(S 3) + terminal(G 6) + terminal(D 8) + terminal(B 7) + ) + device(4 NMOS + name($4) + param(L 0.25) + param(W 0.95) + param(AS 0) + param(AD 0) + param(PS 0) + param(PD 0) + terminal(S 8) + terminal(G 5) + terminal(D 2) + terminal(B 7) + ) + + ) + circuit(INVX1 + + # Nets + net(1 name(VDD)) + net(2 name(OUT)) + net(3 name(VSS)) + net(4 name(NWELL)) + net(5 name(IN)) + net(6 name(BULK)) + + # Outgoing pins and their connections to nets + pin(1 name(VDD)) + pin(2 name(OUT)) + pin(3 name(VSS)) + pin(4 name(NWELL)) + pin(5 name(IN)) + pin(6 name(BULK)) + + # Devices and their connections + device(1 PMOS + name($1) + param(L 0.25) + param(W 1.5) + param(AS 0) + param(AD 0) + param(PS 0) + param(PD 0) + terminal(S 1) + terminal(G 5) + terminal(D 2) + terminal(B 4) + ) + device(2 NMOS + name($2) + param(L 0.25) + param(W 0.95) + param(AS 0) + param(AD 0) + param(PS 0) + param(PD 0) + terminal(S 3) + terminal(G 5) + terminal(D 2) + terminal(B 6) + ) + + ) + circuit(RINGO + + # Nets + net(1 name(VSS)) + net(2 name(VDD)) + net(3 name(FB)) + net(4 name(ENABLE)) + net(5 name(OUT)) + net(6 name('1')) + net(7 name('2')) + net(8 name('3')) + net(9 name('4')) + net(10 name('5')) + net(11 name('6')) + net(12 name('7')) + net(13 name('8')) + net(14 name('9')) + net(15 name('10')) + + # Outgoing pins and their connections to nets + pin(1 name(VSS)) + pin(2 name(VDD)) + pin(3 name(FB)) + pin(4 name(ENABLE)) + pin(5 name(OUT)) + + # Subcircuits and their connections + circuit(1 ND2X1 name($1) + pin(0 2) + pin(1 6) + pin(2 1) + pin(3 2) + pin(4 3) + pin(5 4) + pin(6 1) + ) + circuit(2 INVX1 name($2) + pin(0 2) + pin(1 7) + pin(2 1) + pin(3 2) + pin(4 6) + pin(5 1) + ) + circuit(3 INVX1 name($3) + pin(0 2) + pin(1 8) + pin(2 1) + pin(3 2) + pin(4 7) + pin(5 1) + ) + circuit(4 INVX1 name($4) + pin(0 2) + pin(1 9) + pin(2 1) + pin(3 2) + pin(4 8) + pin(5 1) + ) + circuit(5 INVX1 name($5) + pin(0 2) + pin(1 10) + pin(2 1) + pin(3 2) + pin(4 9) + pin(5 1) + ) + circuit(6 INVX1 name($6) + pin(0 2) + pin(1 11) + pin(2 1) + pin(3 2) + pin(4 10) + pin(5 1) + ) + circuit(7 INVX1 name($7) + pin(0 2) + pin(1 12) + pin(2 1) + pin(3 2) + pin(4 11) + pin(5 1) + ) + circuit(8 INVX1 name($8) + pin(0 2) + pin(1 13) + pin(2 1) + pin(3 2) + pin(4 12) + pin(5 1) + ) + circuit(9 INVX1 name($9) + pin(0 2) + pin(1 14) + pin(2 1) + pin(3 2) + pin(4 13) + pin(5 1) + ) + circuit(10 INVX1 name($10) + pin(0 2) + pin(1 15) + pin(2 1) + pin(3 2) + pin(4 14) + pin(5 1) + ) + circuit(11 INVX1 name($11) + pin(0 2) + pin(1 3) + pin(2 1) + pin(3 2) + pin(4 15) + pin(5 1) + ) + circuit(12 INVX1 name($12) + pin(0 2) + pin(1 5) + pin(2 1) + pin(3 2) + pin(4 3) + pin(5 1) + ) + + ) +) + +# Cross reference +xref( + circuit(INV INVX1 match + xref( + net(4 4 match) + net(5 5 match) + net(2 2 match) + net(6 6 match) + net(1 1 match) + net(3 3 match) + pin(3 3 match) + pin(4 4 match) + pin(1 1 match) + pin(5 5 match) + pin(0 0 match) + pin(2 2 match) + device(2 2 match) + device(1 1 match) + ) + ) + circuit(nd2X1 ND2X1 match + xref( + net(8 8 match) + net(4 4 match) + net(6 6 match) + net(5 5 match) + net(2 2 match) + net(7 7 match) + net(1 1 match) + net(3 3 match) + pin(3 3 match) + pin(5 5 match) + pin(4 4 match) + pin(1 1 match) + pin(6 6 match) + pin(0 0 match) + pin(2 2 match) + device(3 3 match) + device(4 4 match) + device(1 1 match) + device(2 2 match) + ) + ) + circuit(top RINGO match + xref( + net(1 6 match) + net(10 15 match) + net(2 7 match) + net(3 8 match) + net(4 9 match) + net(5 10 match) + net(6 11 match) + net(7 12 match) + net(8 13 match) + net(9 14 match) + net(14 4 match) + net(11 3 match) + net(13 5 match) + net(12 2 match) + net(15 1 match) + pin(3 3 match) + pin(0 2 match) + pin(2 4 match) + pin(1 1 match) + pin(4 0 match) + circuit(2 2 match) + circuit(3 3 match) + circuit(4 4 match) + circuit(5 5 match) + circuit(6 6 match) + circuit(7 7 match) + circuit(8 8 match) + circuit(9 9 match) + circuit(10 10 match) + circuit(11 11 match) + circuit(12 12 match) + circuit(1 1 match) + ) + ) +) diff --git a/testdata/lvs/ringo_simple_pin_swapping.lvsdb.2 b/testdata/lvs/ringo_simple_pin_swapping.lvsdb.2 new file mode 100644 index 000000000..a4c8a4740 --- /dev/null +++ b/testdata/lvs/ringo_simple_pin_swapping.lvsdb.2 @@ -0,0 +1,908 @@ +#%lvsdb-klayout + +# Layout +layout( + top(RINGO) + unit(0.001) + + # Layer section + # This section lists the mask layers (drawing or derived) and their connections. + + # Mask layers + layer(l3 '1/0') + layer(l4 '5/0') + layer(l8 '8/0') + layer(l11 '9/0') + layer(l12 '10/0') + layer(l13 '11/0') + layer(l7) + layer(l2) + layer(l9) + layer(l6) + layer(l10) + + # Mask layer connectivity + connect(l3 l3 l9) + connect(l4 l4 l8) + connect(l8 l4 l8 l11 l2 l9 l6 l10) + connect(l11 l8 l11 l12) + connect(l12 l11 l12 l13) + connect(l13 l12 l13) + connect(l7 l7) + connect(l2 l8 l2) + connect(l9 l3 l8 l9) + connect(l6 l8 l6) + connect(l10 l8 l10) + + # Global nets and connectivity + global(l7 SUBSTRATE) + global(l10 SUBSTRATE) + + # Device class section + class(PMOS MOS4) + class(NMOS MOS4) + + # Device abstracts section + # Device abstracts list the pin shapes of the devices. + device(D$PMOS PMOS + terminal(S + rect(l2 (-550 -750) (425 1500)) + ) + terminal(G + rect(l4 (-125 -750) (250 1500)) + ) + terminal(D + rect(l2 (125 -750) (450 1500)) + ) + terminal(B + rect(l3 (-125 -750) (250 1500)) + ) + ) + device(D$PMOS$1 PMOS + terminal(S + rect(l2 (-575 -750) (450 1500)) + ) + terminal(G + rect(l4 (-125 -750) (250 1500)) + ) + terminal(D + rect(l2 (125 -750) (425 1500)) + ) + terminal(B + rect(l3 (-125 -750) (250 1500)) + ) + ) + device(D$PMOS$2 PMOS + terminal(S + rect(l2 (-550 -750) (425 1500)) + ) + terminal(G + rect(l4 (-125 -750) (250 1500)) + ) + terminal(D + rect(l2 (125 -750) (425 1500)) + ) + terminal(B + rect(l3 (-125 -750) (250 1500)) + ) + ) + device(D$NMOS NMOS + terminal(S + rect(l6 (-550 -475) (425 950)) + ) + terminal(G + rect(l4 (-125 -475) (250 950)) + ) + terminal(D + rect(l6 (125 -475) (450 950)) + ) + terminal(B + rect(l7 (-125 -475) (250 950)) + ) + ) + device(D$NMOS$1 NMOS + terminal(S + rect(l6 (-575 -475) (450 950)) + ) + terminal(G + rect(l4 (-125 -475) (250 950)) + ) + terminal(D + rect(l6 (125 -475) (425 950)) + ) + terminal(B + rect(l7 (-125 -475) (250 950)) + ) + ) + device(D$NMOS$2 NMOS + terminal(S + rect(l6 (-550 -475) (425 950)) + ) + terminal(G + rect(l4 (-125 -475) (250 950)) + ) + terminal(D + rect(l6 (125 -475) (425 950)) + ) + terminal(B + rect(l7 (-125 -475) (250 950)) + ) + ) + + # Circuit section + # Circuits are the hierarchical building blocks of the netlist. + circuit(ND2X1 + + # Circuit boundary + rect((-100 400) (2600 7600)) + + # Nets with their geometries + net(1 name(VDD) + rect(l8 (1110 5160) (180 180)) + rect(l8 (-180 920) (180 180)) + rect(l8 (-180 -730) (180 180)) + rect(l11 (-240 -790) (300 1700)) + rect(l11 (-1350 0) (2400 800)) + rect(l11 (-1150 -400) (0 0)) + rect(l2 (-275 -2150) (425 1500)) + rect(l2 (-400 -1500) (425 1500)) + ) + net(2 name(OUT) + rect(l8 (1810 1770) (180 180)) + rect(l8 (-180 370) (180 180)) + rect(l8 (-1580 3760) (180 180)) + rect(l8 (-180 -730) (180 180)) + rect(l8 (-180 -730) (180 180)) + rect(l8 (1220 920) (180 180)) + rect(l8 (-180 -1280) (180 180)) + rect(l8 (-180 370) (180 180)) + polygon(l11 (-240 -4180) (0 1390) (490 0) (0 -300) (-190 0) (0 -1090)) + rect(l11 (-110 1390) (300 1400)) + polygon(l11 (-1890 0) (0 600) (300 0) (0 -300) (1590 0) (0 -300)) + rect(l11 (-140 -500) (0 0)) + rect(l11 (-1750 1100) (300 1400)) + rect(l11 (1100 -1700) (300 300)) + rect(l11 (-300 0) (300 1400)) + rect(l2 (-375 -1450) (425 1500)) + rect(l2 (-1800 -1500) (425 1500)) + rect(l6 (950 -4890) (425 950)) + ) + net(3 name(VSS) + rect(l8 (410 1770) (180 180)) + rect(l8 (-180 370) (180 180)) + rect(l11 (-240 -1300) (300 1360)) + rect(l11 (-650 -2160) (2400 800)) + rect(l11 (-1150 -400) (0 0)) + rect(l6 (-950 860) (425 950)) + ) + net(4 name($4) + rect(l3 (-100 4500) (2600 3500)) + ) + net(5 name(B) + rect(l4 (1425 2860) (250 1940)) + rect(l4 (-345 -950) (300 300)) + rect(l4 (-205 650) (250 2000)) + rect(l4 (-250 -2000) (250 2000)) + rect(l4 (-250 -5390) (250 1450)) + rect(l8 (-285 1050) (180 180)) + rect(l11 (-70 -90) (0 0)) + rect(l11 (-170 -150) (300 300)) + ) + net(6 name(A) + rect(l4 (725 2860) (250 1940)) + rect(l4 (-325 -1850) (300 300)) + rect(l4 (-225 1550) (250 2000)) + rect(l4 (-250 -2000) (250 2000)) + rect(l4 (-250 -5390) (250 1450)) + rect(l8 (-265 150) (180 180)) + rect(l11 (-90 -90) (0 0)) + rect(l11 (-150 -150) (300 300)) + ) + net(7 name(SUBSTRATE)) + net(8 name($I5) + rect(l6 (975 1660) (425 950)) + rect(l6 (-400 -950) (425 950)) + ) + + # Outgoing pins and their connections to nets + pin(1 name(VDD)) + pin(2 name(OUT)) + pin(3 name(VSS)) + pin(4) + pin(5 name(B)) + pin(6 name(A)) + pin(7 name(SUBSTRATE)) + + # Devices and their connections + device(1 D$PMOS + location(850 5800) + param(L 0.25) + param(W 1.5) + param(AS 0.6375) + param(AD 0.3375) + param(PS 3.85) + param(PD 1.95) + terminal(S 2) + terminal(G 6) + terminal(D 1) + terminal(B 4) + ) + device(2 D$PMOS$1 + location(1550 5800) + param(L 0.25) + param(W 1.5) + param(AS 0.3375) + param(AD 0.6375) + param(PS 1.95) + param(PD 3.85) + terminal(S 1) + terminal(G 5) + terminal(D 2) + terminal(B 4) + ) + device(3 D$NMOS + location(850 2135) + param(L 0.25) + param(W 0.95) + param(AS 0.40375) + param(AD 0.21375) + param(PS 2.75) + param(PD 1.4) + terminal(S 3) + terminal(G 6) + terminal(D 8) + terminal(B 7) + ) + device(4 D$NMOS$1 + location(1550 2135) + param(L 0.25) + param(W 0.95) + param(AS 0.21375) + param(AD 0.40375) + param(PS 1.4) + param(PD 2.75) + terminal(S 8) + terminal(G 5) + terminal(D 2) + terminal(B 7) + ) + + ) + circuit(INVX1 + + # Circuit boundary + rect((-100 400) (2000 7600)) + + # Nets with their geometries + net(1 name(VDD) + rect(l8 (410 6260) (180 180)) + rect(l8 (-180 -730) (180 180)) + rect(l8 (-180 -730) (180 180)) + rect(l11 (-240 -240) (300 1400)) + rect(l11 (-650 300) (1800 800)) + rect(l11 (-1450 -1100) (300 300)) + rect(l11 (300 400) (0 0)) + rect(l2 (-650 -2150) (425 1500)) + ) + net(2 name(OUT) + rect(l8 (1110 5160) (180 180)) + rect(l8 (-180 920) (180 180)) + rect(l8 (-180 -730) (180 180)) + rect(l8 (-180 -4120) (180 180)) + rect(l8 (-180 370) (180 180)) + rect(l11 (-240 -790) (300 4790)) + rect(l11 (-150 -2500) (0 0)) + rect(l2 (-225 1050) (425 1500)) + rect(l6 (-425 -4890) (425 950)) + ) + net(3 name(VSS) + rect(l8 (410 1770) (180 180)) + rect(l8 (-180 370) (180 180)) + rect(l11 (-240 -1300) (300 1360)) + rect(l11 (-650 -2160) (1800 800)) + rect(l11 (-850 -400) (0 0)) + rect(l6 (-650 860) (425 950)) + ) + net(4 name($4) + rect(l3 (-100 4500) (2000 3500)) + ) + net(5 name(IN) + rect(l4 (725 2860) (250 1940)) + rect(l4 (-525 -1850) (300 300)) + rect(l4 (-25 1550) (250 2000)) + rect(l4 (-250 -2000) (250 2000)) + rect(l4 (-250 -5390) (250 1450)) + rect(l8 (-465 150) (180 180)) + rect(l11 (-90 -90) (0 0)) + rect(l11 (-150 -150) (300 300)) + ) + net(6 name(SUBSTRATE)) + + # Outgoing pins and their connections to nets + pin(1 name(VDD)) + pin(2 name(OUT)) + pin(3 name(VSS)) + pin(4) + pin(5 name(IN)) + pin(6 name(SUBSTRATE)) + + # Devices and their connections + device(1 D$PMOS$2 + location(850 5800) + param(L 0.25) + param(W 1.5) + param(AS 0.6375) + param(AD 0.6375) + param(PS 3.85) + param(PD 3.85) + terminal(S 1) + terminal(G 5) + terminal(D 2) + terminal(B 4) + ) + device(2 D$NMOS$2 + location(850 2135) + param(L 0.25) + param(W 0.95) + param(AS 0.40375) + param(AD 0.40375) + param(PS 2.75) + param(PD 2.75) + terminal(S 3) + terminal(G 5) + terminal(D 2) + terminal(B 6) + ) + + ) + circuit(RINGO + + # Circuit boundary + rect((0 350) (25800 7650)) + + # Nets with their geometries + net(1 name($1) + rect(l11 (4040 2950) (610 300)) + ) + net(2 name($2) + rect(l11 (5550 2950) (900 300)) + ) + net(3 name($3) + rect(l11 (7350 2950) (900 300)) + ) + net(4 name($4) + rect(l11 (9150 2950) (900 300)) + ) + net(5 name($5) + rect(l11 (10950 2950) (900 300)) + ) + net(6 name($6) + rect(l11 (12750 2950) (900 300)) + ) + net(7 name($7) + rect(l11 (14550 2950) (900 300)) + ) + net(8 name($8) + rect(l11 (16350 2950) (900 300)) + ) + net(9 name($9) + rect(l11 (18150 2950) (900 300)) + ) + net(10 name($10) + rect(l11 (19950 2950) (900 300)) + ) + net(11 name(FB) + rect(l11 (21750 2950) (900 300)) + rect(l11 (-19530 590) (320 320)) + rect(l11 (17820 -320) (320 320)) + rect(l12 (-18400 -260) (200 200)) + rect(l12 (17940 -200) (200 200)) + rect(l13 (-18040 -300) (17740 400)) + rect(l13 (-17920 -200) (0 0)) + rect(l13 (-220 -200) (400 400)) + rect(l13 (17740 -400) (400 400)) + ) + net(12 name(VDD) + rect(l3 (0 4500) (600 3500)) + rect(l3 (23300 -3500) (1400 3500)) + rect(l3 (-100 -3500) (600 3500)) + rect(l3 (-25300 -3500) (1400 3500)) + rect(l8 (22610 -1240) (180 180)) + rect(l8 (-180 370) (180 180)) + rect(l8 (-180 -1280) (180 180)) + rect(l8 (-23580 370) (180 180)) + rect(l8 (-180 370) (180 180)) + rect(l8 (-180 -1280) (180 180)) + rect(l11 (1660 860) (0 0)) + rect(l11 (-2950 -450) (600 800)) + rect(l11 (23400 -800) (1200 800)) + rect(l11 (-750 -1450) (300 1400)) + rect(l11 (-100 -350) (0 0)) + rect(l11 (550 -400) (600 800)) + rect(l11 (-25200 -800) (1200 800)) + rect(l11 (-750 -1450) (300 1400)) + rect(l11 (-100 -350) (0 0)) + rect(l9 (23100 -1100) (500 1500)) + rect(l9 (-23900 -1500) (500 1500)) + ) + net(13 name(OUT) + rect(l11 (23440 3840) (320 320)) + rect(l12 (-260 -260) (200 200)) + rect(l13 (-100 -100) (0 0)) + rect(l13 (-200 -200) (400 400)) + ) + net(14 name(ENABLE) + rect(l11 (2440 2940) (320 320)) + rect(l12 (-260 -260) (200 200)) + rect(l13 (-100 -100) (0 0)) + rect(l13 (-200 -200) (400 400)) + ) + net(15 name(VSS) + rect(l8 (24510 1610) (180 180)) + rect(l8 (-180 -1280) (180 180)) + rect(l8 (-180 370) (180 180)) + rect(l8 (-23580 370) (180 180)) + rect(l8 (-180 -1280) (180 180)) + rect(l8 (-180 370) (180 180)) + rect(l11 (1660 -390) (0 0)) + rect(l11 (21500 -400) (300 1400)) + rect(l11 (-750 -1450) (1200 800)) + rect(l11 (-550 -400) (0 0)) + rect(l11 (550 -400) (600 800)) + rect(l11 (-25800 -800) (600 800)) + rect(l11 (450 -750) (300 1400)) + rect(l11 (-750 -1450) (1200 800)) + rect(l11 (-550 -400) (0 0)) + rect(l10 (23100 -400) (500 1500)) + rect(l10 (-23900 -1500) (500 1500)) + ) + + # Outgoing pins and their connections to nets + pin(11 name(FB)) + pin(12 name(VDD)) + pin(13 name(OUT)) + pin(14 name(ENABLE)) + pin(15 name(VSS)) + + # Subcircuits and their connections + circuit(1 ND2X1 location(1800 0) + pin(0 12) + pin(1 1) + pin(2 15) + pin(3 12) + pin(4 11) + pin(5 14) + pin(6 15) + ) + circuit(2 INVX1 location(4200 0) + pin(0 12) + pin(1 2) + pin(2 15) + pin(3 12) + pin(4 1) + pin(5 15) + ) + circuit(3 INVX1 location(6000 0) + pin(0 12) + pin(1 3) + pin(2 15) + pin(3 12) + pin(4 2) + pin(5 15) + ) + circuit(4 INVX1 location(7800 0) + pin(0 12) + pin(1 4) + pin(2 15) + pin(3 12) + pin(4 3) + pin(5 15) + ) + circuit(5 INVX1 location(9600 0) + pin(0 12) + pin(1 5) + pin(2 15) + pin(3 12) + pin(4 4) + pin(5 15) + ) + circuit(6 INVX1 location(11400 0) + pin(0 12) + pin(1 6) + pin(2 15) + pin(3 12) + pin(4 5) + pin(5 15) + ) + circuit(7 INVX1 location(13200 0) + pin(0 12) + pin(1 7) + pin(2 15) + pin(3 12) + pin(4 6) + pin(5 15) + ) + circuit(8 INVX1 location(15000 0) + pin(0 12) + pin(1 8) + pin(2 15) + pin(3 12) + pin(4 7) + pin(5 15) + ) + circuit(9 INVX1 location(16800 0) + pin(0 12) + pin(1 9) + pin(2 15) + pin(3 12) + pin(4 8) + pin(5 15) + ) + circuit(10 INVX1 location(18600 0) + pin(0 12) + pin(1 10) + pin(2 15) + pin(3 12) + pin(4 9) + pin(5 15) + ) + circuit(11 INVX1 location(20400 0) + pin(0 12) + pin(1 11) + pin(2 15) + pin(3 12) + pin(4 10) + pin(5 15) + ) + circuit(12 INVX1 location(22200 0) + pin(0 12) + pin(1 13) + pin(2 15) + pin(3 12) + pin(4 11) + pin(5 15) + ) + + ) +) + +# Reference netlist +reference( + + # Device class section + class(PMOS MOS4) + class(NMOS MOS4) + + # Circuit section + # Circuits are the hierarchical building blocks of the netlist. + circuit(ND2X1 + + # Nets + net(1 name(VDD)) + net(2 name(OUT)) + net(3 name(VSS)) + net(4 name(NWELL)) + net(5 name(A)) + net(6 name(B)) + net(7 name(BULK)) + net(8 name('1')) + + # Outgoing pins and their connections to nets + pin(1 name(VDD)) + pin(2 name(OUT)) + pin(3 name(VSS)) + pin(4 name(NWELL)) + pin(5 name(A)) + pin(6 name(B)) + pin(7 name(BULK)) + + # Devices and their connections + device(1 PMOS + name($1) + param(L 0.25) + param(W 1.5) + param(AS 0) + param(AD 0) + param(PS 0) + param(PD 0) + terminal(S 1) + terminal(G 5) + terminal(D 2) + terminal(B 4) + ) + device(2 PMOS + name($2) + param(L 0.25) + param(W 1.5) + param(AS 0) + param(AD 0) + param(PS 0) + param(PD 0) + terminal(S 2) + terminal(G 6) + terminal(D 1) + terminal(B 4) + ) + device(3 NMOS + name($3) + param(L 0.25) + param(W 0.95) + param(AS 0) + param(AD 0) + param(PS 0) + param(PD 0) + terminal(S 8) + terminal(G 5) + terminal(D 3) + terminal(B 7) + ) + device(4 NMOS + name($4) + param(L 0.25) + param(W 0.95) + param(AS 0) + param(AD 0) + param(PS 0) + param(PD 0) + terminal(S 2) + terminal(G 6) + terminal(D 8) + terminal(B 7) + ) + + ) + circuit(INVX1 + + # Nets + net(1 name(VDD)) + net(2 name(OUT)) + net(3 name(VSS)) + net(4 name(NWELL)) + net(5 name(IN)) + net(6 name(BULK)) + + # Outgoing pins and their connections to nets + pin(1 name(VDD)) + pin(2 name(OUT)) + pin(3 name(VSS)) + pin(4 name(NWELL)) + pin(5 name(IN)) + pin(6 name(BULK)) + + # Devices and their connections + device(1 PMOS + name($1) + param(L 0.25) + param(W 1.5) + param(AS 0) + param(AD 0) + param(PS 0) + param(PD 0) + terminal(S 2) + terminal(G 5) + terminal(D 1) + terminal(B 4) + ) + device(2 NMOS + name($2) + param(L 0.25) + param(W 0.95) + param(AS 0) + param(AD 0) + param(PS 0) + param(PD 0) + terminal(S 2) + terminal(G 5) + terminal(D 3) + terminal(B 6) + ) + + ) + circuit(RINGO + + # Nets + net(1 name(VSS)) + net(2 name(VDD)) + net(3 name(FB)) + net(4 name(ENABLE)) + net(5 name(OUT)) + net(6 name('1')) + net(7 name('2')) + net(8 name('3')) + net(9 name('4')) + net(10 name('5')) + net(11 name('6')) + net(12 name('7')) + net(13 name('8')) + net(14 name('9')) + net(15 name('10')) + + # Outgoing pins and their connections to nets + pin(1 name(VSS)) + pin(2 name(VDD)) + pin(3 name(FB)) + pin(4 name(ENABLE)) + pin(5 name(OUT)) + + # Subcircuits and their connections + circuit(1 ND2X1 name($1) + pin(0 2) + pin(1 6) + pin(2 1) + pin(3 2) + pin(4 3) + pin(5 4) + pin(6 1) + ) + circuit(2 INVX1 name($2) + pin(0 2) + pin(1 7) + pin(2 1) + pin(3 2) + pin(4 6) + pin(5 1) + ) + circuit(3 INVX1 name($3) + pin(0 2) + pin(1 8) + pin(2 1) + pin(3 2) + pin(4 7) + pin(5 1) + ) + circuit(4 INVX1 name($4) + pin(0 2) + pin(1 9) + pin(2 1) + pin(3 2) + pin(4 8) + pin(5 1) + ) + circuit(5 INVX1 name($5) + pin(0 2) + pin(1 10) + pin(2 1) + pin(3 2) + pin(4 9) + pin(5 1) + ) + circuit(6 INVX1 name($6) + pin(0 2) + pin(1 11) + pin(2 1) + pin(3 2) + pin(4 10) + pin(5 1) + ) + circuit(7 INVX1 name($7) + pin(0 2) + pin(1 12) + pin(2 1) + pin(3 2) + pin(4 11) + pin(5 1) + ) + circuit(8 INVX1 name($8) + pin(0 2) + pin(1 13) + pin(2 1) + pin(3 2) + pin(4 12) + pin(5 1) + ) + circuit(9 INVX1 name($9) + pin(0 2) + pin(1 14) + pin(2 1) + pin(3 2) + pin(4 13) + pin(5 1) + ) + circuit(10 INVX1 name($10) + pin(0 2) + pin(1 15) + pin(2 1) + pin(3 2) + pin(4 14) + pin(5 1) + ) + circuit(11 INVX1 name($11) + pin(0 2) + pin(1 3) + pin(2 1) + pin(3 2) + pin(4 15) + pin(5 1) + ) + circuit(12 INVX1 name($12) + pin(0 2) + pin(1 5) + pin(2 1) + pin(3 2) + pin(4 3) + pin(5 1) + ) + + ) +) + +# Cross reference +xref( + circuit(INVX1 INVX1 match + xref( + net(4 4 match) + net(5 5 match) + net(2 2 match) + net(6 6 match) + net(1 1 match) + net(3 3 match) + pin(3 3 match) + pin(4 4 match) + pin(1 1 match) + pin(5 5 match) + pin(0 0 match) + pin(2 2 match) + device(2 2 match) + device(1 1 match) + ) + ) + circuit(ND2X1 ND2X1 match + xref( + net(8 8 match) + net(4 4 match) + net(6 5 match) + net(5 6 match) + net(2 2 match) + net(7 7 match) + net(1 1 match) + net(3 3 match) + pin(3 3 match) + pin(5 4 match) + pin(4 5 match) + pin(1 1 match) + pin(6 6 match) + pin(0 0 match) + pin(2 2 match) + device(3 3 match) + device(4 4 match) + device(1 1 match) + device(2 2 match) + ) + ) + circuit(RINGO RINGO match + xref( + net(1 6 match) + net(10 15 match) + net(2 7 match) + net(3 8 match) + net(4 9 match) + net(5 10 match) + net(6 11 match) + net(7 12 match) + net(8 13 match) + net(9 14 match) + net(14 4 match) + net(11 3 match) + net(13 5 match) + net(12 2 match) + net(15 1 match) + pin(3 3 match) + pin(0 2 match) + pin(2 4 match) + pin(1 1 match) + pin(4 0 match) + circuit(2 2 match) + circuit(3 3 match) + circuit(4 4 match) + circuit(5 5 match) + circuit(6 6 match) + circuit(7 7 match) + circuit(8 8 match) + circuit(9 9 match) + circuit(10 10 match) + circuit(11 11 match) + circuit(12 12 match) + circuit(1 1 match) + ) + ) +) diff --git a/testdata/lvs/ringo_simple_same_device_classes.lvsdb.2 b/testdata/lvs/ringo_simple_same_device_classes.lvsdb.2 new file mode 100644 index 000000000..5eda6da18 --- /dev/null +++ b/testdata/lvs/ringo_simple_same_device_classes.lvsdb.2 @@ -0,0 +1,910 @@ +#%lvsdb-klayout + +# Layout +layout( + top(RINGO) + unit(0.001) + + # Layer section + # This section lists the mask layers (drawing or derived) and their connections. + + # Mask layers + layer(l3 '1/0') + layer(l5 '5/0') + layer(l14 '8/0') + layer(l17 '9/0') + layer(l18 '10/0') + layer(l19 '11/0') + layer(l8) + layer(l4) + layer(l15) + layer(l9) + layer(l16) + + # Mask layer connectivity + connect(l3 l3 l15) + connect(l5 l5 l14) + connect(l14 l5 l14 l17 l4 l15 l9 l16) + connect(l17 l14 l17 l18) + connect(l18 l17 l18 l19) + connect(l19 l18 l19) + connect(l8 l8) + connect(l4 l14 l4) + connect(l15 l3 l14 l15) + connect(l9 l14 l9) + connect(l16 l14 l16) + + # Global nets and connectivity + global(l8 SUBSTRATE) + global(l16 SUBSTRATE) + + # Device class section + class(PM MOS4) + class(NM MOS4) + class(PMHV MOS4) + class(NMHV MOS4) + + # Device abstracts section + # Device abstracts list the pin shapes of the devices. + device(D$PM PM + terminal(S + rect(l4 (-550 -750) (425 1500)) + ) + terminal(G + rect(l5 (-125 -750) (250 1500)) + ) + terminal(D + rect(l4 (125 -750) (450 1500)) + ) + terminal(B + rect(l3 (-125 -750) (250 1500)) + ) + ) + device(D$PM$1 PM + terminal(S + rect(l4 (-575 -750) (450 1500)) + ) + terminal(G + rect(l5 (-125 -750) (250 1500)) + ) + terminal(D + rect(l4 (125 -750) (425 1500)) + ) + terminal(B + rect(l3 (-125 -750) (250 1500)) + ) + ) + device(D$PM$2 PM + terminal(S + rect(l4 (-550 -750) (425 1500)) + ) + terminal(G + rect(l5 (-125 -750) (250 1500)) + ) + terminal(D + rect(l4 (125 -750) (425 1500)) + ) + terminal(B + rect(l3 (-125 -750) (250 1500)) + ) + ) + device(D$NM NM + terminal(S + rect(l9 (-550 -475) (425 950)) + ) + terminal(G + rect(l5 (-125 -475) (250 950)) + ) + terminal(D + rect(l9 (125 -475) (450 950)) + ) + terminal(B + rect(l8 (-125 -475) (250 950)) + ) + ) + device(D$NM$1 NM + terminal(S + rect(l9 (-575 -475) (450 950)) + ) + terminal(G + rect(l5 (-125 -475) (250 950)) + ) + terminal(D + rect(l9 (125 -475) (425 950)) + ) + terminal(B + rect(l8 (-125 -475) (250 950)) + ) + ) + device(D$NM$2 NM + terminal(S + rect(l9 (-550 -475) (425 950)) + ) + terminal(G + rect(l5 (-125 -475) (250 950)) + ) + terminal(D + rect(l9 (125 -475) (425 950)) + ) + terminal(B + rect(l8 (-125 -475) (250 950)) + ) + ) + + # Circuit section + # Circuits are the hierarchical building blocks of the netlist. + circuit(ND2X1 + + # Circuit boundary + rect((-100 400) (2600 7600)) + + # Nets with their geometries + net(1 name(VDD) + rect(l14 (1110 5160) (180 180)) + rect(l14 (-180 920) (180 180)) + rect(l14 (-180 -730) (180 180)) + rect(l17 (-240 -790) (300 1700)) + rect(l17 (-1350 0) (2400 800)) + rect(l17 (-1150 -400) (0 0)) + rect(l4 (-275 -2150) (425 1500)) + rect(l4 (-400 -1500) (425 1500)) + ) + net(2 name(OUT) + rect(l14 (1810 1770) (180 180)) + rect(l14 (-180 370) (180 180)) + rect(l14 (-1580 3760) (180 180)) + rect(l14 (-180 -730) (180 180)) + rect(l14 (-180 -730) (180 180)) + rect(l14 (1220 920) (180 180)) + rect(l14 (-180 -1280) (180 180)) + rect(l14 (-180 370) (180 180)) + polygon(l17 (-240 -4180) (0 1390) (490 0) (0 -300) (-190 0) (0 -1090)) + rect(l17 (-110 1390) (300 1400)) + polygon(l17 (-1890 0) (0 600) (300 0) (0 -300) (1590 0) (0 -300)) + rect(l17 (-140 -500) (0 0)) + rect(l17 (-1750 1100) (300 1400)) + rect(l17 (1100 -1700) (300 300)) + rect(l17 (-300 0) (300 1400)) + rect(l4 (-375 -1450) (425 1500)) + rect(l4 (-1800 -1500) (425 1500)) + rect(l9 (950 -4890) (425 950)) + ) + net(3 name(VSS) + rect(l14 (410 1770) (180 180)) + rect(l14 (-180 370) (180 180)) + rect(l17 (-240 -1300) (300 1360)) + rect(l17 (-650 -2160) (2400 800)) + rect(l17 (-1150 -400) (0 0)) + rect(l9 (-950 860) (425 950)) + ) + net(4 name($4) + rect(l3 (-100 4500) (2600 3500)) + ) + net(5 name(B) + rect(l5 (1425 2860) (250 1940)) + rect(l5 (-345 -950) (300 300)) + rect(l5 (-205 650) (250 2000)) + rect(l5 (-250 -2000) (250 2000)) + rect(l5 (-250 -5390) (250 1450)) + rect(l14 (-285 1050) (180 180)) + rect(l17 (-70 -90) (0 0)) + rect(l17 (-170 -150) (300 300)) + ) + net(6 name(A) + rect(l5 (725 2860) (250 1940)) + rect(l5 (-325 -1850) (300 300)) + rect(l5 (-225 1550) (250 2000)) + rect(l5 (-250 -2000) (250 2000)) + rect(l5 (-250 -5390) (250 1450)) + rect(l14 (-265 150) (180 180)) + rect(l17 (-90 -90) (0 0)) + rect(l17 (-150 -150) (300 300)) + ) + net(7 name(SUBSTRATE)) + net(8 name($I5) + rect(l9 (975 1660) (425 950)) + rect(l9 (-400 -950) (425 950)) + ) + + # Outgoing pins and their connections to nets + pin(1 name(VDD)) + pin(2 name(OUT)) + pin(3 name(VSS)) + pin(4) + pin(5 name(B)) + pin(6 name(A)) + pin(7 name(SUBSTRATE)) + + # Devices and their connections + device(1 D$PM + location(850 5800) + param(L 0.25) + param(W 1.5) + param(AS 0.6375) + param(AD 0.3375) + param(PS 3.85) + param(PD 1.95) + terminal(S 2) + terminal(G 6) + terminal(D 1) + terminal(B 4) + ) + device(2 D$PM$1 + location(1550 5800) + param(L 0.25) + param(W 1.5) + param(AS 0.3375) + param(AD 0.6375) + param(PS 1.95) + param(PD 3.85) + terminal(S 1) + terminal(G 5) + terminal(D 2) + terminal(B 4) + ) + device(3 D$NM + location(850 2135) + param(L 0.25) + param(W 0.95) + param(AS 0.40375) + param(AD 0.21375) + param(PS 2.75) + param(PD 1.4) + terminal(S 3) + terminal(G 6) + terminal(D 8) + terminal(B 7) + ) + device(4 D$NM$1 + location(1550 2135) + param(L 0.25) + param(W 0.95) + param(AS 0.21375) + param(AD 0.40375) + param(PS 1.4) + param(PD 2.75) + terminal(S 8) + terminal(G 5) + terminal(D 2) + terminal(B 7) + ) + + ) + circuit(INVX1 + + # Circuit boundary + rect((-100 400) (2000 7600)) + + # Nets with their geometries + net(1 name(VDD) + rect(l14 (410 6260) (180 180)) + rect(l14 (-180 -730) (180 180)) + rect(l14 (-180 -730) (180 180)) + rect(l17 (-240 -240) (300 1400)) + rect(l17 (-650 300) (1800 800)) + rect(l17 (-1450 -1100) (300 300)) + rect(l17 (300 400) (0 0)) + rect(l4 (-650 -2150) (425 1500)) + ) + net(2 name(OUT) + rect(l14 (1110 5160) (180 180)) + rect(l14 (-180 920) (180 180)) + rect(l14 (-180 -730) (180 180)) + rect(l14 (-180 -4120) (180 180)) + rect(l14 (-180 370) (180 180)) + rect(l17 (-240 -790) (300 4790)) + rect(l17 (-150 -2500) (0 0)) + rect(l4 (-225 1050) (425 1500)) + rect(l9 (-425 -4890) (425 950)) + ) + net(3 name(VSS) + rect(l14 (410 1770) (180 180)) + rect(l14 (-180 370) (180 180)) + rect(l17 (-240 -1300) (300 1360)) + rect(l17 (-650 -2160) (1800 800)) + rect(l17 (-850 -400) (0 0)) + rect(l9 (-650 860) (425 950)) + ) + net(4 name($4) + rect(l3 (-100 4500) (2000 3500)) + ) + net(5 name(IN) + rect(l5 (725 2860) (250 1940)) + rect(l5 (-525 -1850) (300 300)) + rect(l5 (-25 1550) (250 2000)) + rect(l5 (-250 -2000) (250 2000)) + rect(l5 (-250 -5390) (250 1450)) + rect(l14 (-465 150) (180 180)) + rect(l17 (-90 -90) (0 0)) + rect(l17 (-150 -150) (300 300)) + ) + net(6 name(SUBSTRATE)) + + # Outgoing pins and their connections to nets + pin(1 name(VDD)) + pin(2 name(OUT)) + pin(3 name(VSS)) + pin(4) + pin(5 name(IN)) + pin(6 name(SUBSTRATE)) + + # Devices and their connections + device(1 D$PM$2 + location(850 5800) + param(L 0.25) + param(W 1.5) + param(AS 0.6375) + param(AD 0.6375) + param(PS 3.85) + param(PD 3.85) + terminal(S 1) + terminal(G 5) + terminal(D 2) + terminal(B 4) + ) + device(2 D$NM$2 + location(850 2135) + param(L 0.25) + param(W 0.95) + param(AS 0.40375) + param(AD 0.40375) + param(PS 2.75) + param(PD 2.75) + terminal(S 3) + terminal(G 5) + terminal(D 2) + terminal(B 6) + ) + + ) + circuit(RINGO + + # Circuit boundary + rect((0 350) (25800 7650)) + + # Nets with their geometries + net(1 name($1) + rect(l17 (4040 2950) (610 300)) + ) + net(2 name($2) + rect(l17 (5550 2950) (900 300)) + ) + net(3 name($3) + rect(l17 (7350 2950) (900 300)) + ) + net(4 name($4) + rect(l17 (9150 2950) (900 300)) + ) + net(5 name($5) + rect(l17 (10950 2950) (900 300)) + ) + net(6 name($6) + rect(l17 (12750 2950) (900 300)) + ) + net(7 name($7) + rect(l17 (14550 2950) (900 300)) + ) + net(8 name($8) + rect(l17 (16350 2950) (900 300)) + ) + net(9 name($9) + rect(l17 (18150 2950) (900 300)) + ) + net(10 name($10) + rect(l17 (19950 2950) (900 300)) + ) + net(11 name(FB) + rect(l17 (21750 2950) (900 300)) + rect(l17 (-19530 590) (320 320)) + rect(l17 (17820 -320) (320 320)) + rect(l18 (-18400 -260) (200 200)) + rect(l18 (17940 -200) (200 200)) + rect(l19 (-18040 -300) (17740 400)) + rect(l19 (-17920 -200) (0 0)) + rect(l19 (-220 -200) (400 400)) + rect(l19 (17740 -400) (400 400)) + ) + net(12 name(VDD) + rect(l3 (0 4500) (600 3500)) + rect(l3 (23300 -3500) (1400 3500)) + rect(l3 (-100 -3500) (600 3500)) + rect(l3 (-25300 -3500) (1400 3500)) + rect(l14 (22610 -1240) (180 180)) + rect(l14 (-180 370) (180 180)) + rect(l14 (-180 -1280) (180 180)) + rect(l14 (-23580 370) (180 180)) + rect(l14 (-180 370) (180 180)) + rect(l14 (-180 -1280) (180 180)) + rect(l17 (1660 860) (0 0)) + rect(l17 (-2950 -450) (600 800)) + rect(l17 (23400 -800) (1200 800)) + rect(l17 (-750 -1450) (300 1400)) + rect(l17 (-100 -350) (0 0)) + rect(l17 (550 -400) (600 800)) + rect(l17 (-25200 -800) (1200 800)) + rect(l17 (-750 -1450) (300 1400)) + rect(l17 (-100 -350) (0 0)) + rect(l15 (23100 -1100) (500 1500)) + rect(l15 (-23900 -1500) (500 1500)) + ) + net(13 name(OUT) + rect(l17 (23440 3840) (320 320)) + rect(l18 (-260 -260) (200 200)) + rect(l19 (-100 -100) (0 0)) + rect(l19 (-200 -200) (400 400)) + ) + net(14 name(ENABLE) + rect(l17 (2440 2940) (320 320)) + rect(l18 (-260 -260) (200 200)) + rect(l19 (-100 -100) (0 0)) + rect(l19 (-200 -200) (400 400)) + ) + net(15 name(VSS) + rect(l14 (24510 1610) (180 180)) + rect(l14 (-180 -1280) (180 180)) + rect(l14 (-180 370) (180 180)) + rect(l14 (-23580 370) (180 180)) + rect(l14 (-180 -1280) (180 180)) + rect(l14 (-180 370) (180 180)) + rect(l17 (1660 -390) (0 0)) + rect(l17 (21500 -400) (300 1400)) + rect(l17 (-750 -1450) (1200 800)) + rect(l17 (-550 -400) (0 0)) + rect(l17 (550 -400) (600 800)) + rect(l17 (-25800 -800) (600 800)) + rect(l17 (450 -750) (300 1400)) + rect(l17 (-750 -1450) (1200 800)) + rect(l17 (-550 -400) (0 0)) + rect(l16 (23100 -400) (500 1500)) + rect(l16 (-23900 -1500) (500 1500)) + ) + + # Outgoing pins and their connections to nets + pin(11 name(FB)) + pin(12 name(VDD)) + pin(13 name(OUT)) + pin(14 name(ENABLE)) + pin(15 name(VSS)) + + # Subcircuits and their connections + circuit(1 ND2X1 location(1800 0) + pin(0 12) + pin(1 1) + pin(2 15) + pin(3 12) + pin(4 11) + pin(5 14) + pin(6 15) + ) + circuit(2 INVX1 location(4200 0) + pin(0 12) + pin(1 2) + pin(2 15) + pin(3 12) + pin(4 1) + pin(5 15) + ) + circuit(3 INVX1 location(6000 0) + pin(0 12) + pin(1 3) + pin(2 15) + pin(3 12) + pin(4 2) + pin(5 15) + ) + circuit(4 INVX1 location(7800 0) + pin(0 12) + pin(1 4) + pin(2 15) + pin(3 12) + pin(4 3) + pin(5 15) + ) + circuit(5 INVX1 location(9600 0) + pin(0 12) + pin(1 5) + pin(2 15) + pin(3 12) + pin(4 4) + pin(5 15) + ) + circuit(6 INVX1 location(11400 0) + pin(0 12) + pin(1 6) + pin(2 15) + pin(3 12) + pin(4 5) + pin(5 15) + ) + circuit(7 INVX1 location(13200 0) + pin(0 12) + pin(1 7) + pin(2 15) + pin(3 12) + pin(4 6) + pin(5 15) + ) + circuit(8 INVX1 location(15000 0) + pin(0 12) + pin(1 8) + pin(2 15) + pin(3 12) + pin(4 7) + pin(5 15) + ) + circuit(9 INVX1 location(16800 0) + pin(0 12) + pin(1 9) + pin(2 15) + pin(3 12) + pin(4 8) + pin(5 15) + ) + circuit(10 INVX1 location(18600 0) + pin(0 12) + pin(1 10) + pin(2 15) + pin(3 12) + pin(4 9) + pin(5 15) + ) + circuit(11 INVX1 location(20400 0) + pin(0 12) + pin(1 11) + pin(2 15) + pin(3 12) + pin(4 10) + pin(5 15) + ) + circuit(12 INVX1 location(22200 0) + pin(0 12) + pin(1 13) + pin(2 15) + pin(3 12) + pin(4 11) + pin(5 15) + ) + + ) +) + +# Reference netlist +reference( + + # Device class section + class(PMOS MOS4) + class(NMOS MOS4) + + # Circuit section + # Circuits are the hierarchical building blocks of the netlist. + circuit(ND2X1 + + # Nets + net(1 name(VDD)) + net(2 name(OUT)) + net(3 name(VSS)) + net(4 name(NWELL)) + net(5 name(B)) + net(6 name(A)) + net(7 name(BULK)) + net(8 name('1')) + + # Outgoing pins and their connections to nets + pin(1 name(VDD)) + pin(2 name(OUT)) + pin(3 name(VSS)) + pin(4 name(NWELL)) + pin(5 name(B)) + pin(6 name(A)) + pin(7 name(BULK)) + + # Devices and their connections + device(1 PMOS + name($1) + param(L 0.25) + param(W 1.5) + param(AS 0) + param(AD 0) + param(PS 0) + param(PD 0) + terminal(S 1) + terminal(G 6) + terminal(D 2) + terminal(B 4) + ) + device(2 PMOS + name($2) + param(L 0.25) + param(W 1.5) + param(AS 0) + param(AD 0) + param(PS 0) + param(PD 0) + terminal(S 1) + terminal(G 5) + terminal(D 2) + terminal(B 4) + ) + device(3 NMOS + name($3) + param(L 0.25) + param(W 0.95) + param(AS 0) + param(AD 0) + param(PS 0) + param(PD 0) + terminal(S 3) + terminal(G 6) + terminal(D 8) + terminal(B 7) + ) + device(4 NMOS + name($4) + param(L 0.25) + param(W 0.95) + param(AS 0) + param(AD 0) + param(PS 0) + param(PD 0) + terminal(S 8) + terminal(G 5) + terminal(D 2) + terminal(B 7) + ) + + ) + circuit(INVX1 + + # Nets + net(1 name(VDD)) + net(2 name(OUT)) + net(3 name(VSS)) + net(4 name(NWELL)) + net(5 name(IN)) + net(6 name(BULK)) + + # Outgoing pins and their connections to nets + pin(1 name(VDD)) + pin(2 name(OUT)) + pin(3 name(VSS)) + pin(4 name(NWELL)) + pin(5 name(IN)) + pin(6 name(BULK)) + + # Devices and their connections + device(1 PMOS + name($1) + param(L 0.25) + param(W 1.5) + param(AS 0) + param(AD 0) + param(PS 0) + param(PD 0) + terminal(S 1) + terminal(G 5) + terminal(D 2) + terminal(B 4) + ) + device(2 NMOS + name($2) + param(L 0.25) + param(W 0.95) + param(AS 0) + param(AD 0) + param(PS 0) + param(PD 0) + terminal(S 3) + terminal(G 5) + terminal(D 2) + terminal(B 6) + ) + + ) + circuit(RINGO + + # Nets + net(1 name(VSS)) + net(2 name(VDD)) + net(3 name(FB)) + net(4 name(ENABLE)) + net(5 name(OUT)) + net(6 name('1')) + net(7 name('2')) + net(8 name('3')) + net(9 name('4')) + net(10 name('5')) + net(11 name('6')) + net(12 name('7')) + net(13 name('8')) + net(14 name('9')) + net(15 name('10')) + + # Outgoing pins and their connections to nets + pin(1 name(VSS)) + pin(2 name(VDD)) + pin(3 name(FB)) + pin(4 name(ENABLE)) + pin(5 name(OUT)) + + # Subcircuits and their connections + circuit(1 ND2X1 name($1) + pin(0 2) + pin(1 6) + pin(2 1) + pin(3 2) + pin(4 3) + pin(5 4) + pin(6 1) + ) + circuit(2 INVX1 name($2) + pin(0 2) + pin(1 7) + pin(2 1) + pin(3 2) + pin(4 6) + pin(5 1) + ) + circuit(3 INVX1 name($3) + pin(0 2) + pin(1 8) + pin(2 1) + pin(3 2) + pin(4 7) + pin(5 1) + ) + circuit(4 INVX1 name($4) + pin(0 2) + pin(1 9) + pin(2 1) + pin(3 2) + pin(4 8) + pin(5 1) + ) + circuit(5 INVX1 name($5) + pin(0 2) + pin(1 10) + pin(2 1) + pin(3 2) + pin(4 9) + pin(5 1) + ) + circuit(6 INVX1 name($6) + pin(0 2) + pin(1 11) + pin(2 1) + pin(3 2) + pin(4 10) + pin(5 1) + ) + circuit(7 INVX1 name($7) + pin(0 2) + pin(1 12) + pin(2 1) + pin(3 2) + pin(4 11) + pin(5 1) + ) + circuit(8 INVX1 name($8) + pin(0 2) + pin(1 13) + pin(2 1) + pin(3 2) + pin(4 12) + pin(5 1) + ) + circuit(9 INVX1 name($9) + pin(0 2) + pin(1 14) + pin(2 1) + pin(3 2) + pin(4 13) + pin(5 1) + ) + circuit(10 INVX1 name($10) + pin(0 2) + pin(1 15) + pin(2 1) + pin(3 2) + pin(4 14) + pin(5 1) + ) + circuit(11 INVX1 name($11) + pin(0 2) + pin(1 3) + pin(2 1) + pin(3 2) + pin(4 15) + pin(5 1) + ) + circuit(12 INVX1 name($12) + pin(0 2) + pin(1 5) + pin(2 1) + pin(3 2) + pin(4 3) + pin(5 1) + ) + + ) +) + +# Cross reference +xref( + circuit(INVX1 INVX1 match + xref( + net(4 4 match) + net(5 5 match) + net(2 2 match) + net(6 6 match) + net(1 1 match) + net(3 3 match) + pin(3 3 match) + pin(4 4 match) + pin(1 1 match) + pin(5 5 match) + pin(0 0 match) + pin(2 2 match) + device(2 2 match) + device(1 1 match) + ) + ) + circuit(ND2X1 ND2X1 match + xref( + net(8 8 match) + net(4 4 match) + net(6 6 match) + net(5 5 match) + net(2 2 match) + net(7 7 match) + net(1 1 match) + net(3 3 match) + pin(3 3 match) + pin(5 5 match) + pin(4 4 match) + pin(1 1 match) + pin(6 6 match) + pin(0 0 match) + pin(2 2 match) + device(3 3 match) + device(4 4 match) + device(1 1 match) + device(2 2 match) + ) + ) + circuit(RINGO RINGO match + xref( + net(1 6 match) + net(10 15 match) + net(2 7 match) + net(3 8 match) + net(4 9 match) + net(5 10 match) + net(6 11 match) + net(7 12 match) + net(8 13 match) + net(9 14 match) + net(14 4 match) + net(11 3 match) + net(13 5 match) + net(12 2 match) + net(15 1 match) + pin(3 3 match) + pin(0 2 match) + pin(2 4 match) + pin(1 1 match) + pin(4 0 match) + circuit(2 2 match) + circuit(3 3 match) + circuit(4 4 match) + circuit(5 5 match) + circuit(6 6 match) + circuit(7 7 match) + circuit(8 8 match) + circuit(9 9 match) + circuit(10 10 match) + circuit(11 11 match) + circuit(12 12 match) + circuit(1 1 match) + ) + ) +) diff --git a/testdata/lvs/ringo_simple_simplification.lvsdb.2 b/testdata/lvs/ringo_simple_simplification.lvsdb.2 new file mode 100644 index 000000000..605d23d24 --- /dev/null +++ b/testdata/lvs/ringo_simple_simplification.lvsdb.2 @@ -0,0 +1,1095 @@ +#%lvsdb-klayout + +# Layout +layout( + top(RINGO) + unit(0.001) + + # Layer section + # This section lists the mask layers (drawing or derived) and their connections. + + # Mask layers + layer(l3 '1/0') + layer(l4 '5/0') + layer(l8 '8/0') + layer(l11 '9/0') + layer(l12 '10/0') + layer(l13 '11/0') + layer(l7) + layer(l2) + layer(l9) + layer(l6) + layer(l10) + + # Mask layer connectivity + connect(l3 l3 l9) + connect(l4 l4 l8) + connect(l8 l4 l8 l11 l2 l9 l6 l10) + connect(l11 l8 l11 l12) + connect(l12 l11 l12 l13) + connect(l13 l12 l13) + connect(l7 l7) + connect(l2 l8 l2) + connect(l9 l3 l8 l9) + connect(l6 l8 l6) + connect(l10 l8 l10) + + # Global nets and connectivity + global(l7 SUBSTRATE) + global(l10 SUBSTRATE) + + # Device class section + class(PMOS MOS4) + class(NMOS MOS4) + + # Device abstracts section + # Device abstracts list the pin shapes of the devices. + device(D$PMOS PMOS + terminal(S + rect(l2 (-550 -750) (425 1500)) + ) + terminal(G + rect(l4 (-125 -750) (250 1500)) + ) + terminal(D + rect(l2 (125 -750) (450 1500)) + ) + terminal(B + rect(l3 (-125 -750) (250 1500)) + ) + ) + device(D$PMOS$1 PMOS + terminal(S + rect(l2 (-575 -750) (450 1500)) + ) + terminal(G + rect(l4 (-125 -750) (250 1500)) + ) + terminal(D + rect(l2 (125 -750) (425 1500)) + ) + terminal(B + rect(l3 (-125 -750) (250 1500)) + ) + ) + device(D$PMOS$2 PMOS + terminal(S + rect(l2 (-550 -750) (425 1500)) + ) + terminal(G + rect(l4 (-125 -750) (250 1500)) + ) + terminal(D + rect(l2 (125 -750) (425 1500)) + ) + terminal(B + rect(l3 (-125 -750) (250 1500)) + ) + ) + device(D$NMOS NMOS + terminal(S + rect(l6 (-550 -475) (425 950)) + ) + terminal(G + rect(l4 (-125 -475) (250 950)) + ) + terminal(D + rect(l6 (125 -475) (450 950)) + ) + terminal(B + rect(l7 (-125 -475) (250 950)) + ) + ) + device(D$NMOS$1 NMOS + terminal(S + rect(l6 (-575 -475) (450 950)) + ) + terminal(G + rect(l4 (-125 -475) (250 950)) + ) + terminal(D + rect(l6 (125 -475) (425 950)) + ) + terminal(B + rect(l7 (-125 -475) (250 950)) + ) + ) + device(D$NMOS$2 NMOS + terminal(S + rect(l6 (-550 -475) (425 950)) + ) + terminal(G + rect(l4 (-125 -475) (250 950)) + ) + terminal(D + rect(l6 (125 -475) (425 950)) + ) + terminal(B + rect(l7 (-125 -475) (250 950)) + ) + ) + + # Circuit section + # Circuits are the hierarchical building blocks of the netlist. + circuit(ND2X1 + + # Circuit boundary + rect((-100 400) (2600 7600)) + + # Nets with their geometries + net(1 name(VDD) + rect(l8 (1110 5160) (180 180)) + rect(l8 (-180 920) (180 180)) + rect(l8 (-180 -730) (180 180)) + rect(l11 (-240 -790) (300 1700)) + rect(l11 (-1350 0) (2400 800)) + rect(l11 (-1150 -400) (0 0)) + rect(l2 (-275 -2150) (425 1500)) + rect(l2 (-400 -1500) (425 1500)) + ) + net(2 name(OUT) + rect(l8 (1810 1770) (180 180)) + rect(l8 (-180 370) (180 180)) + rect(l8 (-1580 3760) (180 180)) + rect(l8 (-180 -730) (180 180)) + rect(l8 (-180 -730) (180 180)) + rect(l8 (1220 920) (180 180)) + rect(l8 (-180 -1280) (180 180)) + rect(l8 (-180 370) (180 180)) + polygon(l11 (-240 -4180) (0 1390) (490 0) (0 -300) (-190 0) (0 -1090)) + rect(l11 (-110 1390) (300 1400)) + polygon(l11 (-1890 0) (0 600) (300 0) (0 -300) (1590 0) (0 -300)) + rect(l11 (-140 -500) (0 0)) + rect(l11 (-1750 1100) (300 1400)) + rect(l11 (1100 -1700) (300 300)) + rect(l11 (-300 0) (300 1400)) + rect(l2 (-375 -1450) (425 1500)) + rect(l2 (-1800 -1500) (425 1500)) + rect(l6 (950 -4890) (425 950)) + ) + net(3 name(VSS) + rect(l8 (410 1770) (180 180)) + rect(l8 (-180 370) (180 180)) + rect(l11 (-240 -1300) (300 1360)) + rect(l11 (-650 -2160) (2400 800)) + rect(l11 (-1150 -400) (0 0)) + rect(l6 (-950 860) (425 950)) + ) + net(4 name($4) + rect(l3 (-100 4500) (2600 3500)) + ) + net(5 name(B) + rect(l4 (1425 2860) (250 1940)) + rect(l4 (-345 -950) (300 300)) + rect(l4 (-205 650) (250 2000)) + rect(l4 (-250 -2000) (250 2000)) + rect(l4 (-250 -5390) (250 1450)) + rect(l8 (-285 1050) (180 180)) + rect(l11 (-70 -90) (0 0)) + rect(l11 (-170 -150) (300 300)) + ) + net(6 name(A) + rect(l4 (725 2860) (250 1940)) + rect(l4 (-325 -1850) (300 300)) + rect(l4 (-225 1550) (250 2000)) + rect(l4 (-250 -2000) (250 2000)) + rect(l4 (-250 -5390) (250 1450)) + rect(l8 (-265 150) (180 180)) + rect(l11 (-90 -90) (0 0)) + rect(l11 (-150 -150) (300 300)) + ) + net(7 name(SUBSTRATE)) + net(8 name($I18) + rect(l6 (975 1660) (425 950)) + rect(l6 (-400 -950) (425 950)) + ) + + # Outgoing pins and their connections to nets + pin(1 name(VDD)) + pin(2 name(OUT)) + pin(3 name(VSS)) + pin(4) + pin(5 name(B)) + pin(6 name(A)) + pin(7 name(SUBSTRATE)) + + # Devices and their connections + device(1 D$PMOS + location(850 5800) + param(L 0.25) + param(W 1.5) + param(AS 0.6375) + param(AD 0.3375) + param(PS 3.85) + param(PD 1.95) + terminal(S 2) + terminal(G 6) + terminal(D 1) + terminal(B 4) + ) + device(2 D$PMOS$1 + location(1550 5800) + param(L 0.25) + param(W 1.5) + param(AS 0.3375) + param(AD 0.6375) + param(PS 1.95) + param(PD 3.85) + terminal(S 1) + terminal(G 5) + terminal(D 2) + terminal(B 4) + ) + device(3 D$NMOS + location(850 2135) + param(L 0.25) + param(W 0.95) + param(AS 0.40375) + param(AD 0.21375) + param(PS 2.75) + param(PD 1.4) + terminal(S 3) + terminal(G 6) + terminal(D 8) + terminal(B 7) + ) + device(4 D$NMOS$1 + location(1550 2135) + param(L 0.25) + param(W 0.95) + param(AS 0.21375) + param(AD 0.40375) + param(PS 1.4) + param(PD 2.75) + terminal(S 8) + terminal(G 5) + terminal(D 2) + terminal(B 7) + ) + + ) + circuit(INVX1 + + # Circuit boundary + rect((-100 400) (2000 7600)) + + # Nets with their geometries + net(1 name(VDD) + rect(l8 (410 6260) (180 180)) + rect(l8 (-180 -730) (180 180)) + rect(l8 (-180 -730) (180 180)) + rect(l11 (-240 -240) (300 1400)) + rect(l11 (-650 300) (1800 800)) + rect(l11 (-1450 -1100) (300 300)) + rect(l11 (300 400) (0 0)) + rect(l2 (-650 -2150) (425 1500)) + ) + net(2 name(OUT) + rect(l8 (1110 5160) (180 180)) + rect(l8 (-180 920) (180 180)) + rect(l8 (-180 -730) (180 180)) + rect(l8 (-180 -4120) (180 180)) + rect(l8 (-180 370) (180 180)) + rect(l11 (-240 -790) (300 4790)) + rect(l11 (-150 -2500) (0 0)) + rect(l2 (-225 1050) (425 1500)) + rect(l6 (-425 -4890) (425 950)) + ) + net(3 name(VSS) + rect(l8 (410 1770) (180 180)) + rect(l8 (-180 370) (180 180)) + rect(l11 (-240 -1300) (300 1360)) + rect(l11 (-650 -2160) (1800 800)) + rect(l11 (-850 -400) (0 0)) + rect(l6 (-650 860) (425 950)) + ) + net(4 name($4) + rect(l3 (-100 4500) (2000 3500)) + ) + net(5 name(IN) + rect(l4 (725 2860) (250 1940)) + rect(l4 (-525 -1850) (300 300)) + rect(l4 (-25 1550) (250 2000)) + rect(l4 (-250 -2000) (250 2000)) + rect(l4 (-250 -5390) (250 1450)) + rect(l8 (-465 150) (180 180)) + rect(l11 (-90 -90) (0 0)) + rect(l11 (-150 -150) (300 300)) + ) + net(6 name(SUBSTRATE)) + + # Outgoing pins and their connections to nets + pin(1 name(VDD)) + pin(2 name(OUT)) + pin(3 name(VSS)) + pin(4) + pin(5 name(IN)) + pin(6 name(SUBSTRATE)) + + # Devices and their connections + device(1 D$PMOS$2 + location(850 5800) + param(L 0.25) + param(W 1.5) + param(AS 0.6375) + param(AD 0.6375) + param(PS 3.85) + param(PD 3.85) + terminal(S 1) + terminal(G 5) + terminal(D 2) + terminal(B 4) + ) + device(2 D$NMOS$2 + location(850 2135) + param(L 0.25) + param(W 0.95) + param(AS 0.40375) + param(AD 0.40375) + param(PS 2.75) + param(PD 2.75) + terminal(S 3) + terminal(G 5) + terminal(D 2) + terminal(B 6) + ) + + ) + circuit(INVX2 + + # Circuit boundary + rect((-100 400) (2600 7600)) + + # Nets with their geometries + net(1 name(IN) + rect(l4 (725 2860) (250 1940)) + rect(l4 (-225 -1300) (675 450)) + rect(l4 (0 -1100) (250 1950)) + rect(l4 (-1225 -1850) (300 300)) + rect(l4 (675 1550) (250 2000)) + rect(l4 (-250 -2000) (250 2000)) + rect(l4 (-950 -2000) (250 2000)) + rect(l4 (-250 -2000) (250 2000)) + rect(l4 (450 -5390) (250 1450)) + rect(l4 (-950 -1450) (250 1450)) + rect(l8 (-465 150) (180 180)) + rect(l11 (-90 -90) (0 0)) + rect(l11 (-150 -150) (300 300)) + ) + net(2 name(VDD) + rect(l8 (410 6260) (180 180)) + rect(l8 (-180 -730) (180 180)) + rect(l8 (-180 -730) (180 180)) + rect(l8 (1220 920) (180 180)) + rect(l8 (-180 -730) (180 180)) + rect(l8 (-180 -730) (180 180)) + rect(l11 (-1640 -240) (300 1400)) + rect(l11 (-650 300) (2400 800)) + rect(l11 (-2050 -1100) (300 300)) + rect(l11 (1100 -300) (300 300)) + rect(l11 (-1100 400) (0 0)) + rect(l11 (800 -2100) (300 1400)) + rect(l2 (-375 -1450) (425 1500)) + rect(l2 (-1800 -1500) (425 1500)) + ) + net(3 name(OUT) + rect(l8 (1110 5160) (180 180)) + rect(l8 (-180 920) (180 180)) + rect(l8 (-180 -730) (180 180)) + rect(l8 (-180 -4120) (180 180)) + rect(l8 (-180 370) (180 180)) + rect(l11 (-240 -790) (300 4790)) + rect(l11 (-150 -2500) (0 0)) + rect(l2 (-225 1050) (425 1500)) + rect(l2 (-400 -1500) (425 1500)) + rect(l6 (-450 -4890) (425 950)) + rect(l6 (-400 -950) (425 950)) + ) + net(4 name(VSS) + rect(l8 (410 1770) (180 180)) + rect(l8 (-180 370) (180 180)) + rect(l8 (1220 -730) (180 180)) + rect(l8 (-180 370) (180 180)) + rect(l11 (-1640 -1300) (300 1360)) + rect(l11 (-650 -2160) (2400 800)) + rect(l11 (-650 0) (300 1360)) + rect(l11 (-1100 -1760) (0 0)) + rect(l6 (725 860) (425 950)) + rect(l6 (-1800 -950) (425 950)) + ) + net(5 name($5) + rect(l3 (-100 4500) (2600 3500)) + ) + net(6 name(SUBSTRATE)) + + # Outgoing pins and their connections to nets + pin(1 name(IN)) + pin(2 name(VDD)) + pin(3 name(OUT)) + pin(4 name(VSS)) + pin(5) + pin(6 name(SUBSTRATE)) + + # Devices and their connections + device(1 D$PMOS + device(D$PMOS$1 location(700 0)) + connect(0 S S) + connect(1 S D) + connect(0 G G) + connect(1 G G) + connect(0 D D) + connect(1 D S) + connect(0 B B) + connect(1 B B) + location(850 5800) + param(L 0.25) + param(W 3) + param(AS 0.975) + param(AD 0.975) + param(PS 5.8) + param(PD 5.8) + terminal(S 2) + terminal(G 1) + terminal(D 3) + terminal(B 5) + ) + device(3 D$NMOS + device(D$NMOS$1 location(700 0)) + connect(0 S S) + connect(1 S D) + connect(0 G G) + connect(1 G G) + connect(0 D D) + connect(1 D S) + connect(0 B B) + connect(1 B B) + location(850 2135) + param(L 0.25) + param(W 1.9) + param(AS 0.6175) + param(AD 0.6175) + param(PS 4.15) + param(PD 4.15) + terminal(S 4) + terminal(G 1) + terminal(D 3) + terminal(B 6) + ) + + ) + circuit(RINGO + + # Circuit boundary + rect((600 350) (25800 7650)) + + # Nets with their geometries + net(1 name($1) + rect(l11 (4040 2950) (610 300)) + ) + net(2 name($2) + rect(l11 (5550 2950) (900 300)) + ) + net(3 name($3) + rect(l11 (18150 2950) (900 300)) + ) + net(4 name($4) + rect(l11 (19950 2950) (900 300)) + ) + net(5 name(FB) + rect(l11 (21750 2950) (900 300)) + rect(l11 (-19530 590) (320 320)) + rect(l11 (17820 -320) (320 320)) + rect(l12 (-18400 -260) (200 200)) + rect(l12 (17940 -200) (200 200)) + rect(l13 (-18040 -300) (17740 400)) + rect(l13 (-17920 -200) (0 0)) + rect(l13 (-220 -200) (400 400)) + rect(l13 (17740 -400) (400 400)) + ) + net(6 name(VDD) + rect(l3 (600 4500) (600 3500)) + rect(l3 (-100 -3500) (1400 3500)) + rect(l3 (22000 -3500) (1400 3500)) + rect(l3 (-100 -3500) (600 3500)) + rect(l8 (-24690 -1240) (180 180)) + rect(l8 (-180 370) (180 180)) + rect(l8 (-180 -1280) (180 180)) + rect(l8 (23220 370) (180 180)) + rect(l8 (-180 370) (180 180)) + rect(l8 (-180 -1280) (180 180)) + rect(l11 (-22340 860) (0 0)) + rect(l11 (-2350 -450) (600 800)) + rect(l11 (0 -800) (1200 800)) + rect(l11 (-750 -1450) (300 1400)) + rect(l11 (-100 -350) (0 0)) + rect(l11 (22750 -400) (1200 800)) + rect(l11 (-750 -1450) (300 1400)) + rect(l11 (-100 -350) (0 0)) + rect(l11 (550 -400) (600 800)) + rect(l9 (-24850 -1500) (500 1500)) + rect(l9 (22900 -1500) (500 1500)) + ) + net(7 name(OUT) + rect(l11 (23440 3840) (320 320)) + rect(l12 (-260 -260) (200 200)) + rect(l13 (-100 -100) (0 0)) + rect(l13 (-200 -200) (400 400)) + ) + net(8 name(ENABLE) + rect(l11 (2440 2940) (320 320)) + rect(l12 (-260 -260) (200 200)) + rect(l13 (-100 -100) (0 0)) + rect(l13 (-200 -200) (400 400)) + ) + net(9 name(VSS) + rect(l8 (25110 1610) (180 180)) + rect(l8 (-180 -1280) (180 180)) + rect(l8 (-180 370) (180 180)) + rect(l8 (-23580 370) (180 180)) + rect(l8 (-180 -1280) (180 180)) + rect(l8 (-180 370) (180 180)) + rect(l11 (1060 -390) (0 0)) + rect(l11 (22100 -400) (300 1400)) + rect(l11 (-750 -1450) (1200 800)) + rect(l11 (-550 -400) (0 0)) + rect(l11 (550 -400) (600 800)) + rect(l11 (-25800 -800) (600 800)) + rect(l11 (450 -750) (300 1400)) + rect(l11 (-750 -1450) (1200 800)) + rect(l11 (-550 -400) (0 0)) + rect(l10 (23100 -400) (500 1500)) + rect(l10 (-23900 -1500) (500 1500)) + ) + net(10 name($I22) + rect(l11 (7350 2950) (900 300)) + ) + net(11 name($I18) + rect(l11 (16350 2950) (900 300)) + ) + net(12 name($I36) + rect(l11 (9150 2950) (900 300)) + ) + net(13 name($I37) + rect(l11 (10950 2950) (900 300)) + ) + net(14 name($I38) + rect(l11 (12750 2950) (900 300)) + ) + net(15 name($I39) + rect(l11 (14550 2950) (900 300)) + ) + + # Outgoing pins and their connections to nets + pin(5 name(FB)) + pin(6 name(VDD)) + pin(7 name(OUT)) + pin(8 name(ENABLE)) + pin(9 name(VSS)) + + # Subcircuits and their connections + circuit(1 ND2X1 location(1800 0) + pin(0 6) + pin(1 1) + pin(2 9) + pin(3 6) + pin(4 5) + pin(5 8) + pin(6 9) + ) + circuit(2 INVX1 location(4200 0) + pin(0 6) + pin(1 2) + pin(2 9) + pin(3 6) + pin(4 1) + pin(5 9) + ) + circuit(3 INVX1 location(6000 0) + pin(0 6) + pin(1 10) + pin(2 9) + pin(3 6) + pin(4 2) + pin(5 9) + ) + circuit(4 INVX1 location(16800 0) + pin(0 6) + pin(1 3) + pin(2 9) + pin(3 6) + pin(4 11) + pin(5 9) + ) + circuit(5 INVX1 location(18600 0) + pin(0 6) + pin(1 4) + pin(2 9) + pin(3 6) + pin(4 3) + pin(5 9) + ) + circuit(6 INVX1 location(20400 0) + pin(0 6) + pin(1 5) + pin(2 9) + pin(3 6) + pin(4 4) + pin(5 9) + ) + circuit(7 INVX2 location(22200 0) + pin(0 5) + pin(1 6) + pin(2 7) + pin(3 9) + pin(4 6) + pin(5 9) + ) + circuit(17 INVX1 location(7800 0) + pin(0 6) + pin(1 12) + pin(2 9) + pin(3 6) + pin(4 10) + pin(5 9) + ) + circuit(18 INVX1 location(9600 0) + pin(0 6) + pin(1 13) + pin(2 9) + pin(3 6) + pin(4 12) + pin(5 9) + ) + circuit(19 INVX1 location(11400 0) + pin(0 6) + pin(1 14) + pin(2 9) + pin(3 6) + pin(4 13) + pin(5 9) + ) + circuit(20 INVX1 location(13200 0) + pin(0 6) + pin(1 15) + pin(2 9) + pin(3 6) + pin(4 14) + pin(5 9) + ) + circuit(21 INVX1 location(15000 0) + pin(0 6) + pin(1 11) + pin(2 9) + pin(3 6) + pin(4 15) + pin(5 9) + ) + + ) +) + +# Reference netlist +reference( + + # Device class section + class(PMOS MOS4) + class(NMOS MOS4) + + # Circuit section + # Circuits are the hierarchical building blocks of the netlist. + circuit(ND2X1 + + # Nets + net(1 name(VDD)) + net(2 name(OUT)) + net(3 name(VSS)) + net(4 name(NWELL)) + net(5 name(B)) + net(6 name(A)) + net(7 name(BULK)) + net(8 name('1')) + + # Outgoing pins and their connections to nets + pin(1 name(VDD)) + pin(2 name(OUT)) + pin(3 name(VSS)) + pin(4 name(NWELL)) + pin(5 name(B)) + pin(6 name(A)) + pin(7 name(BULK)) + + # Devices and their connections + device(1 PMOS + name($1) + param(L 0.25) + param(W 1.5) + param(AS 0) + param(AD 0) + param(PS 0) + param(PD 0) + terminal(S 1) + terminal(G 6) + terminal(D 2) + terminal(B 4) + ) + device(2 PMOS + name($2) + param(L 0.25) + param(W 1.5) + param(AS 0) + param(AD 0) + param(PS 0) + param(PD 0) + terminal(S 2) + terminal(G 5) + terminal(D 1) + terminal(B 4) + ) + device(3 NMOS + name($3) + param(L 0.25) + param(W 0.95) + param(AS 0) + param(AD 0) + param(PS 0) + param(PD 0) + terminal(S 8) + terminal(G 6) + terminal(D 3) + terminal(B 7) + ) + device(4 NMOS + name($4) + param(L 0.25) + param(W 0.95) + param(AS 0) + param(AD 0) + param(PS 0) + param(PD 0) + terminal(S 2) + terminal(G 5) + terminal(D 8) + terminal(B 7) + ) + + ) + circuit(INVX1 + + # Nets + net(1 name(VDD)) + net(2 name(OUT)) + net(3 name(VSS)) + net(4 name(NWELL)) + net(5 name(IN)) + net(6 name(BULK)) + + # Outgoing pins and their connections to nets + pin(1 name(VDD)) + pin(2 name(OUT)) + pin(3 name(VSS)) + pin(4 name(NWELL)) + pin(5 name(IN)) + pin(6 name(BULK)) + + # Devices and their connections + device(1 PMOS + name($1) + param(L 0.25) + param(W 1.5) + param(AS 0) + param(AD 0) + param(PS 0) + param(PD 0) + terminal(S 2) + terminal(G 5) + terminal(D 1) + terminal(B 4) + ) + device(2 NMOS + name($2) + param(L 0.25) + param(W 0.95) + param(AS 0) + param(AD 0) + param(PS 0) + param(PD 0) + terminal(S 2) + terminal(G 5) + terminal(D 3) + terminal(B 6) + ) + + ) + circuit(INVX2 + + # Nets + net(1 name(VDD)) + net(2 name(OUT)) + net(3 name(VSS)) + net(4 name(NWELL)) + net(5 name(IN)) + net(6 name(BULK)) + + # Outgoing pins and their connections to nets + pin(1 name(VDD)) + pin(2 name(OUT)) + pin(3 name(VSS)) + pin(4 name(NWELL)) + pin(5 name(IN)) + pin(6 name(BULK)) + + # Devices and their connections + device(1 PMOS + name($1) + param(L 0.25) + param(W 3) + param(AS 0) + param(AD 0) + param(PS 0) + param(PD 0) + terminal(S 2) + terminal(G 5) + terminal(D 1) + terminal(B 4) + ) + device(2 NMOS + name($2) + param(L 0.25) + param(W 1.9) + param(AS 0) + param(AD 0) + param(PS 0) + param(PD 0) + terminal(S 2) + terminal(G 5) + terminal(D 3) + terminal(B 6) + ) + + ) + circuit(RINGO + + # Nets + net(1 name(VSS)) + net(2 name(VDD)) + net(3 name(FB)) + net(4 name(ENABLE)) + net(5 name(OUT)) + net(6 name('1')) + net(7 name('2')) + net(8 name('3')) + net(9 name('4')) + net(10 name('5')) + net(11 name('6')) + net(12 name('7')) + net(13 name('8')) + net(14 name('9')) + net(15 name('10')) + + # Outgoing pins and their connections to nets + pin(1 name(VSS)) + pin(2 name(VDD)) + pin(3 name(FB)) + pin(4 name(ENABLE)) + pin(5 name(OUT)) + + # Subcircuits and their connections + circuit(1 ND2X1 name($1) + pin(0 2) + pin(1 6) + pin(2 1) + pin(3 2) + pin(4 3) + pin(5 4) + pin(6 1) + ) + circuit(2 INVX1 name($2) + pin(0 2) + pin(1 7) + pin(2 1) + pin(3 2) + pin(4 6) + pin(5 1) + ) + circuit(3 INVX1 name($3) + pin(0 2) + pin(1 8) + pin(2 1) + pin(3 2) + pin(4 7) + pin(5 1) + ) + circuit(4 INVX1 name($4) + pin(0 2) + pin(1 9) + pin(2 1) + pin(3 2) + pin(4 8) + pin(5 1) + ) + circuit(5 INVX1 name($5) + pin(0 2) + pin(1 10) + pin(2 1) + pin(3 2) + pin(4 9) + pin(5 1) + ) + circuit(6 INVX1 name($6) + pin(0 2) + pin(1 11) + pin(2 1) + pin(3 2) + pin(4 10) + pin(5 1) + ) + circuit(7 INVX1 name($7) + pin(0 2) + pin(1 12) + pin(2 1) + pin(3 2) + pin(4 11) + pin(5 1) + ) + circuit(8 INVX1 name($8) + pin(0 2) + pin(1 13) + pin(2 1) + pin(3 2) + pin(4 12) + pin(5 1) + ) + circuit(9 INVX1 name($9) + pin(0 2) + pin(1 14) + pin(2 1) + pin(3 2) + pin(4 13) + pin(5 1) + ) + circuit(10 INVX1 name($10) + pin(0 2) + pin(1 15) + pin(2 1) + pin(3 2) + pin(4 14) + pin(5 1) + ) + circuit(11 INVX1 name($11) + pin(0 2) + pin(1 3) + pin(2 1) + pin(3 2) + pin(4 15) + pin(5 1) + ) + circuit(12 INVX2 name($12) + pin(0 2) + pin(1 5) + pin(2 1) + pin(3 2) + pin(4 3) + pin(5 1) + ) + + ) +) + +# Cross reference +xref( + circuit(INVX1 INVX1 match + xref( + net(4 4 match) + net(5 5 match) + net(2 2 match) + net(6 6 match) + net(1 1 match) + net(3 3 match) + pin(3 3 match) + pin(4 4 match) + pin(1 1 match) + pin(5 5 match) + pin(0 0 match) + pin(2 2 match) + device(2 2 match) + device(1 1 match) + ) + ) + circuit(INVX2 INVX2 match + xref( + net(5 4 match) + net(1 5 match) + net(3 2 match) + net(6 6 match) + net(2 1 match) + net(4 3 match) + pin(4 3 match) + pin(0 4 match) + pin(2 1 match) + pin(5 5 match) + pin(1 0 match) + pin(3 2 match) + device(3 2 match) + device(1 1 match) + ) + ) + circuit(ND2X1 ND2X1 match + xref( + net(8 8 match) + net(4 4 match) + net(6 6 match) + net(5 5 match) + net(2 2 match) + net(7 7 match) + net(1 1 match) + net(3 3 match) + pin(3 3 match) + pin(5 5 match) + pin(4 4 match) + pin(1 1 match) + pin(6 6 match) + pin(0 0 match) + pin(2 2 match) + device(3 3 match) + device(4 4 match) + device(1 1 match) + device(2 2 match) + ) + ) + circuit(RINGO RINGO match + xref( + net(1 6 match) + net(4 15 match) + net(2 7 match) + net(10 8 match) + net(12 9 match) + net(13 10 match) + net(14 11 match) + net(15 12 match) + net(11 13 match) + net(3 14 match) + net(8 4 match) + net(5 3 match) + net(7 5 match) + net(6 2 match) + net(9 1 match) + pin(3 3 match) + pin(0 2 match) + pin(2 4 match) + pin(1 1 match) + pin(4 0 match) + circuit(2 2 match) + circuit(3 3 match) + circuit(17 4 match) + circuit(18 5 match) + circuit(19 6 match) + circuit(20 7 match) + circuit(21 8 match) + circuit(4 9 match) + circuit(5 10 match) + circuit(6 11 match) + circuit(7 12 match) + circuit(1 1 match) + ) + ) +) diff --git a/testdata/lvs/ringo_simple_simplification_with_align.lvsdb.2 b/testdata/lvs/ringo_simple_simplification_with_align.lvsdb.2 new file mode 100644 index 000000000..29d601baa --- /dev/null +++ b/testdata/lvs/ringo_simple_simplification_with_align.lvsdb.2 @@ -0,0 +1,1095 @@ +#%lvsdb-klayout + +# Layout +layout( + top(RINGO) + unit(0.001) + + # Layer section + # This section lists the mask layers (drawing or derived) and their connections. + + # Mask layers + layer(l3 '1/0') + layer(l4 '5/0') + layer(l8 '8/0') + layer(l11 '9/0') + layer(l12 '10/0') + layer(l13 '11/0') + layer(l7) + layer(l2) + layer(l9) + layer(l6) + layer(l10) + + # Mask layer connectivity + connect(l3 l3 l9) + connect(l4 l4 l8) + connect(l8 l4 l8 l11 l2 l9 l6 l10) + connect(l11 l8 l11 l12) + connect(l12 l11 l12 l13) + connect(l13 l12 l13) + connect(l7 l7) + connect(l2 l8 l2) + connect(l9 l3 l8 l9) + connect(l6 l8 l6) + connect(l10 l8 l10) + + # Global nets and connectivity + global(l7 SUBSTRATE) + global(l10 SUBSTRATE) + + # Device class section + class(PMOS MOS4) + class(NMOS MOS4) + + # Device abstracts section + # Device abstracts list the pin shapes of the devices. + device(D$PMOS PMOS + terminal(S + rect(l2 (-550 -750) (425 1500)) + ) + terminal(G + rect(l4 (-125 -750) (250 1500)) + ) + terminal(D + rect(l2 (125 -750) (450 1500)) + ) + terminal(B + rect(l3 (-125 -750) (250 1500)) + ) + ) + device(D$PMOS$1 PMOS + terminal(S + rect(l2 (-575 -750) (450 1500)) + ) + terminal(G + rect(l4 (-125 -750) (250 1500)) + ) + terminal(D + rect(l2 (125 -750) (425 1500)) + ) + terminal(B + rect(l3 (-125 -750) (250 1500)) + ) + ) + device(D$PMOS$2 PMOS + terminal(S + rect(l2 (-550 -750) (425 1500)) + ) + terminal(G + rect(l4 (-125 -750) (250 1500)) + ) + terminal(D + rect(l2 (125 -750) (425 1500)) + ) + terminal(B + rect(l3 (-125 -750) (250 1500)) + ) + ) + device(D$NMOS NMOS + terminal(S + rect(l6 (-550 -475) (425 950)) + ) + terminal(G + rect(l4 (-125 -475) (250 950)) + ) + terminal(D + rect(l6 (125 -475) (450 950)) + ) + terminal(B + rect(l7 (-125 -475) (250 950)) + ) + ) + device(D$NMOS$1 NMOS + terminal(S + rect(l6 (-575 -475) (450 950)) + ) + terminal(G + rect(l4 (-125 -475) (250 950)) + ) + terminal(D + rect(l6 (125 -475) (425 950)) + ) + terminal(B + rect(l7 (-125 -475) (250 950)) + ) + ) + device(D$NMOS$2 NMOS + terminal(S + rect(l6 (-550 -475) (425 950)) + ) + terminal(G + rect(l4 (-125 -475) (250 950)) + ) + terminal(D + rect(l6 (125 -475) (425 950)) + ) + terminal(B + rect(l7 (-125 -475) (250 950)) + ) + ) + + # Circuit section + # Circuits are the hierarchical building blocks of the netlist. + circuit(ND2X1 + + # Circuit boundary + rect((-100 400) (2600 7600)) + + # Nets with their geometries + net(1 name(VDD) + rect(l8 (1110 5160) (180 180)) + rect(l8 (-180 920) (180 180)) + rect(l8 (-180 -730) (180 180)) + rect(l11 (-240 -790) (300 1700)) + rect(l11 (-1350 0) (2400 800)) + rect(l11 (-1150 -400) (0 0)) + rect(l2 (-275 -2150) (425 1500)) + rect(l2 (-400 -1500) (425 1500)) + ) + net(2 name(OUT) + rect(l8 (1810 1770) (180 180)) + rect(l8 (-180 370) (180 180)) + rect(l8 (-1580 3760) (180 180)) + rect(l8 (-180 -730) (180 180)) + rect(l8 (-180 -730) (180 180)) + rect(l8 (1220 920) (180 180)) + rect(l8 (-180 -1280) (180 180)) + rect(l8 (-180 370) (180 180)) + polygon(l11 (-240 -4180) (0 1390) (490 0) (0 -300) (-190 0) (0 -1090)) + rect(l11 (-110 1390) (300 1400)) + polygon(l11 (-1890 0) (0 600) (300 0) (0 -300) (1590 0) (0 -300)) + rect(l11 (-140 -500) (0 0)) + rect(l11 (-1750 1100) (300 1400)) + rect(l11 (1100 -1700) (300 300)) + rect(l11 (-300 0) (300 1400)) + rect(l2 (-375 -1450) (425 1500)) + rect(l2 (-1800 -1500) (425 1500)) + rect(l6 (950 -4890) (425 950)) + ) + net(3 name(VSS) + rect(l8 (410 1770) (180 180)) + rect(l8 (-180 370) (180 180)) + rect(l11 (-240 -1300) (300 1360)) + rect(l11 (-650 -2160) (2400 800)) + rect(l11 (-1150 -400) (0 0)) + rect(l6 (-950 860) (425 950)) + ) + net(4 name($4) + rect(l3 (-100 4500) (2600 3500)) + ) + net(5 name(B) + rect(l4 (1425 2860) (250 1940)) + rect(l4 (-345 -950) (300 300)) + rect(l4 (-205 650) (250 2000)) + rect(l4 (-250 -2000) (250 2000)) + rect(l4 (-250 -5390) (250 1450)) + rect(l8 (-285 1050) (180 180)) + rect(l11 (-70 -90) (0 0)) + rect(l11 (-170 -150) (300 300)) + ) + net(6 name(A) + rect(l4 (725 2860) (250 1940)) + rect(l4 (-325 -1850) (300 300)) + rect(l4 (-225 1550) (250 2000)) + rect(l4 (-250 -2000) (250 2000)) + rect(l4 (-250 -5390) (250 1450)) + rect(l8 (-265 150) (180 180)) + rect(l11 (-90 -90) (0 0)) + rect(l11 (-150 -150) (300 300)) + ) + net(7 name(SUBSTRATE)) + net(8 name($I18) + rect(l6 (975 1660) (425 950)) + rect(l6 (-400 -950) (425 950)) + ) + + # Outgoing pins and their connections to nets + pin(1 name(VDD)) + pin(2 name(OUT)) + pin(3 name(VSS)) + pin(4) + pin(5 name(B)) + pin(6 name(A)) + pin(7 name(SUBSTRATE)) + + # Devices and their connections + device(1 D$PMOS + location(850 5800) + param(L 0.25) + param(W 1.5) + param(AS 0.6375) + param(AD 0.3375) + param(PS 3.85) + param(PD 1.95) + terminal(S 2) + terminal(G 6) + terminal(D 1) + terminal(B 4) + ) + device(2 D$PMOS$1 + location(1550 5800) + param(L 0.25) + param(W 1.5) + param(AS 0.3375) + param(AD 0.6375) + param(PS 1.95) + param(PD 3.85) + terminal(S 1) + terminal(G 5) + terminal(D 2) + terminal(B 4) + ) + device(3 D$NMOS + location(850 2135) + param(L 0.25) + param(W 0.95) + param(AS 0.40375) + param(AD 0.21375) + param(PS 2.75) + param(PD 1.4) + terminal(S 3) + terminal(G 6) + terminal(D 8) + terminal(B 7) + ) + device(4 D$NMOS$1 + location(1550 2135) + param(L 0.25) + param(W 0.95) + param(AS 0.21375) + param(AD 0.40375) + param(PS 1.4) + param(PD 2.75) + terminal(S 8) + terminal(G 5) + terminal(D 2) + terminal(B 7) + ) + + ) + circuit(INVX1 + + # Circuit boundary + rect((-100 400) (2000 7600)) + + # Nets with their geometries + net(1 name(VDD) + rect(l8 (410 6260) (180 180)) + rect(l8 (-180 -730) (180 180)) + rect(l8 (-180 -730) (180 180)) + rect(l11 (-240 -240) (300 1400)) + rect(l11 (-650 300) (1800 800)) + rect(l11 (-1450 -1100) (300 300)) + rect(l11 (300 400) (0 0)) + rect(l2 (-650 -2150) (425 1500)) + ) + net(2 name(OUT) + rect(l8 (1110 5160) (180 180)) + rect(l8 (-180 920) (180 180)) + rect(l8 (-180 -730) (180 180)) + rect(l8 (-180 -4120) (180 180)) + rect(l8 (-180 370) (180 180)) + rect(l11 (-240 -790) (300 4790)) + rect(l11 (-150 -2500) (0 0)) + rect(l2 (-225 1050) (425 1500)) + rect(l6 (-425 -4890) (425 950)) + ) + net(3 name(VSS) + rect(l8 (410 1770) (180 180)) + rect(l8 (-180 370) (180 180)) + rect(l11 (-240 -1300) (300 1360)) + rect(l11 (-650 -2160) (1800 800)) + rect(l11 (-850 -400) (0 0)) + rect(l6 (-650 860) (425 950)) + ) + net(4 name($4) + rect(l3 (-100 4500) (2000 3500)) + ) + net(5 name(IN) + rect(l4 (725 2860) (250 1940)) + rect(l4 (-525 -1850) (300 300)) + rect(l4 (-25 1550) (250 2000)) + rect(l4 (-250 -2000) (250 2000)) + rect(l4 (-250 -5390) (250 1450)) + rect(l8 (-465 150) (180 180)) + rect(l11 (-90 -90) (0 0)) + rect(l11 (-150 -150) (300 300)) + ) + net(6 name(SUBSTRATE)) + + # Outgoing pins and their connections to nets + pin(1 name(VDD)) + pin(2 name(OUT)) + pin(3 name(VSS)) + pin(4) + pin(5 name(IN)) + pin(6 name(SUBSTRATE)) + + # Devices and their connections + device(1 D$PMOS$2 + location(850 5800) + param(L 0.25) + param(W 1.5) + param(AS 0.6375) + param(AD 0.6375) + param(PS 3.85) + param(PD 3.85) + terminal(S 1) + terminal(G 5) + terminal(D 2) + terminal(B 4) + ) + device(2 D$NMOS$2 + location(850 2135) + param(L 0.25) + param(W 0.95) + param(AS 0.40375) + param(AD 0.40375) + param(PS 2.75) + param(PD 2.75) + terminal(S 3) + terminal(G 5) + terminal(D 2) + terminal(B 6) + ) + + ) + circuit(INVX2 + + # Circuit boundary + rect((-100 400) (2600 7600)) + + # Nets with their geometries + net(1 name(IN) + rect(l4 (725 2860) (250 1940)) + rect(l4 (-225 -1300) (675 450)) + rect(l4 (0 -1100) (250 1950)) + rect(l4 (-1225 -1850) (300 300)) + rect(l4 (675 1550) (250 2000)) + rect(l4 (-250 -2000) (250 2000)) + rect(l4 (-950 -2000) (250 2000)) + rect(l4 (-250 -2000) (250 2000)) + rect(l4 (450 -5390) (250 1450)) + rect(l4 (-950 -1450) (250 1450)) + rect(l8 (-465 150) (180 180)) + rect(l11 (-90 -90) (0 0)) + rect(l11 (-150 -150) (300 300)) + ) + net(2 name(VDD) + rect(l8 (410 6260) (180 180)) + rect(l8 (-180 -730) (180 180)) + rect(l8 (-180 -730) (180 180)) + rect(l8 (1220 920) (180 180)) + rect(l8 (-180 -730) (180 180)) + rect(l8 (-180 -730) (180 180)) + rect(l11 (-1640 -240) (300 1400)) + rect(l11 (-650 300) (2400 800)) + rect(l11 (-2050 -1100) (300 300)) + rect(l11 (1100 -300) (300 300)) + rect(l11 (-1100 400) (0 0)) + rect(l11 (800 -2100) (300 1400)) + rect(l2 (-375 -1450) (425 1500)) + rect(l2 (-1800 -1500) (425 1500)) + ) + net(3 name(OUT) + rect(l8 (1110 5160) (180 180)) + rect(l8 (-180 920) (180 180)) + rect(l8 (-180 -730) (180 180)) + rect(l8 (-180 -4120) (180 180)) + rect(l8 (-180 370) (180 180)) + rect(l11 (-240 -790) (300 4790)) + rect(l11 (-150 -2500) (0 0)) + rect(l2 (-225 1050) (425 1500)) + rect(l2 (-400 -1500) (425 1500)) + rect(l6 (-450 -4890) (425 950)) + rect(l6 (-400 -950) (425 950)) + ) + net(4 name(VSS) + rect(l8 (410 1770) (180 180)) + rect(l8 (-180 370) (180 180)) + rect(l8 (1220 -730) (180 180)) + rect(l8 (-180 370) (180 180)) + rect(l11 (-1640 -1300) (300 1360)) + rect(l11 (-650 -2160) (2400 800)) + rect(l11 (-650 0) (300 1360)) + rect(l11 (-1100 -1760) (0 0)) + rect(l6 (725 860) (425 950)) + rect(l6 (-1800 -950) (425 950)) + ) + net(5 name($5) + rect(l3 (-100 4500) (2600 3500)) + ) + net(6 name(SUBSTRATE)) + + # Outgoing pins and their connections to nets + pin(1 name(IN)) + pin(2 name(VDD)) + pin(3 name(OUT)) + pin(4 name(VSS)) + pin(5) + pin(6 name(SUBSTRATE)) + + # Devices and their connections + device(1 D$PMOS + device(D$PMOS$1 location(700 0)) + connect(0 S S) + connect(1 S D) + connect(0 G G) + connect(1 G G) + connect(0 D D) + connect(1 D S) + connect(0 B B) + connect(1 B B) + location(850 5800) + param(L 0.25) + param(W 3) + param(AS 0.975) + param(AD 0.975) + param(PS 5.8) + param(PD 5.8) + terminal(S 2) + terminal(G 1) + terminal(D 3) + terminal(B 5) + ) + device(3 D$NMOS + device(D$NMOS$1 location(700 0)) + connect(0 S S) + connect(1 S D) + connect(0 G G) + connect(1 G G) + connect(0 D D) + connect(1 D S) + connect(0 B B) + connect(1 B B) + location(850 2135) + param(L 0.25) + param(W 1.9) + param(AS 0.6175) + param(AD 0.6175) + param(PS 4.15) + param(PD 4.15) + terminal(S 4) + terminal(G 1) + terminal(D 3) + terminal(B 6) + ) + + ) + circuit(RINGO + + # Circuit boundary + rect((600 350) (25800 7650)) + + # Nets with their geometries + net(1 name($1) + rect(l11 (4040 2950) (610 300)) + ) + net(2 name($2) + rect(l11 (5550 2950) (900 300)) + ) + net(3 name($3) + rect(l11 (18150 2950) (900 300)) + ) + net(4 name($4) + rect(l11 (19950 2950) (900 300)) + ) + net(5 name(FB) + rect(l11 (21750 2950) (900 300)) + rect(l11 (-19530 590) (320 320)) + rect(l11 (17820 -320) (320 320)) + rect(l12 (-18400 -260) (200 200)) + rect(l12 (17940 -200) (200 200)) + rect(l13 (-18040 -300) (17740 400)) + rect(l13 (-17920 -200) (0 0)) + rect(l13 (-220 -200) (400 400)) + rect(l13 (17740 -400) (400 400)) + ) + net(6 name(VDD) + rect(l3 (600 4500) (600 3500)) + rect(l3 (-100 -3500) (1400 3500)) + rect(l3 (22000 -3500) (1400 3500)) + rect(l3 (-100 -3500) (600 3500)) + rect(l8 (-24690 -1240) (180 180)) + rect(l8 (-180 370) (180 180)) + rect(l8 (-180 -1280) (180 180)) + rect(l8 (23220 370) (180 180)) + rect(l8 (-180 370) (180 180)) + rect(l8 (-180 -1280) (180 180)) + rect(l11 (-22340 860) (0 0)) + rect(l11 (-2350 -450) (600 800)) + rect(l11 (0 -800) (1200 800)) + rect(l11 (-750 -1450) (300 1400)) + rect(l11 (-100 -350) (0 0)) + rect(l11 (22750 -400) (1200 800)) + rect(l11 (-750 -1450) (300 1400)) + rect(l11 (-100 -350) (0 0)) + rect(l11 (550 -400) (600 800)) + rect(l9 (-24850 -1500) (500 1500)) + rect(l9 (22900 -1500) (500 1500)) + ) + net(7 name(OUT) + rect(l11 (23440 3840) (320 320)) + rect(l12 (-260 -260) (200 200)) + rect(l13 (-100 -100) (0 0)) + rect(l13 (-200 -200) (400 400)) + ) + net(8 name(ENABLE) + rect(l11 (2440 2940) (320 320)) + rect(l12 (-260 -260) (200 200)) + rect(l13 (-100 -100) (0 0)) + rect(l13 (-200 -200) (400 400)) + ) + net(9 name(VSS) + rect(l8 (25110 1610) (180 180)) + rect(l8 (-180 -1280) (180 180)) + rect(l8 (-180 370) (180 180)) + rect(l8 (-23580 370) (180 180)) + rect(l8 (-180 -1280) (180 180)) + rect(l8 (-180 370) (180 180)) + rect(l11 (1060 -390) (0 0)) + rect(l11 (22100 -400) (300 1400)) + rect(l11 (-750 -1450) (1200 800)) + rect(l11 (-550 -400) (0 0)) + rect(l11 (550 -400) (600 800)) + rect(l11 (-25800 -800) (600 800)) + rect(l11 (450 -750) (300 1400)) + rect(l11 (-750 -1450) (1200 800)) + rect(l11 (-550 -400) (0 0)) + rect(l10 (23100 -400) (500 1500)) + rect(l10 (-23900 -1500) (500 1500)) + ) + net(10 name($I22) + rect(l11 (7350 2950) (900 300)) + ) + net(11 name($I18) + rect(l11 (16350 2950) (900 300)) + ) + net(12 name($I36) + rect(l11 (9150 2950) (900 300)) + ) + net(13 name($I37) + rect(l11 (10950 2950) (900 300)) + ) + net(14 name($I38) + rect(l11 (12750 2950) (900 300)) + ) + net(15 name($I39) + rect(l11 (14550 2950) (900 300)) + ) + + # Outgoing pins and their connections to nets + pin(5 name(FB)) + pin(6 name(VDD)) + pin(7 name(OUT)) + pin(8 name(ENABLE)) + pin(9 name(VSS)) + + # Subcircuits and their connections + circuit(1 ND2X1 location(1800 0) + pin(0 6) + pin(1 1) + pin(2 9) + pin(3 6) + pin(4 5) + pin(5 8) + pin(6 9) + ) + circuit(2 INVX1 location(4200 0) + pin(0 6) + pin(1 2) + pin(2 9) + pin(3 6) + pin(4 1) + pin(5 9) + ) + circuit(3 INVX1 location(6000 0) + pin(0 6) + pin(1 10) + pin(2 9) + pin(3 6) + pin(4 2) + pin(5 9) + ) + circuit(4 INVX1 location(16800 0) + pin(0 6) + pin(1 3) + pin(2 9) + pin(3 6) + pin(4 11) + pin(5 9) + ) + circuit(5 INVX1 location(18600 0) + pin(0 6) + pin(1 4) + pin(2 9) + pin(3 6) + pin(4 3) + pin(5 9) + ) + circuit(6 INVX1 location(20400 0) + pin(0 6) + pin(1 5) + pin(2 9) + pin(3 6) + pin(4 4) + pin(5 9) + ) + circuit(7 INVX2 location(22200 0) + pin(0 5) + pin(1 6) + pin(2 7) + pin(3 9) + pin(4 6) + pin(5 9) + ) + circuit(15 INVX1 location(7800 0) + pin(0 6) + pin(1 12) + pin(2 9) + pin(3 6) + pin(4 10) + pin(5 9) + ) + circuit(16 INVX1 location(9600 0) + pin(0 6) + pin(1 13) + pin(2 9) + pin(3 6) + pin(4 12) + pin(5 9) + ) + circuit(17 INVX1 location(11400 0) + pin(0 6) + pin(1 14) + pin(2 9) + pin(3 6) + pin(4 13) + pin(5 9) + ) + circuit(18 INVX1 location(13200 0) + pin(0 6) + pin(1 15) + pin(2 9) + pin(3 6) + pin(4 14) + pin(5 9) + ) + circuit(19 INVX1 location(15000 0) + pin(0 6) + pin(1 11) + pin(2 9) + pin(3 6) + pin(4 15) + pin(5 9) + ) + + ) +) + +# Reference netlist +reference( + + # Device class section + class(PMOS MOS4) + class(NMOS MOS4) + + # Circuit section + # Circuits are the hierarchical building blocks of the netlist. + circuit(ND2X1 + + # Nets + net(1 name(VDD)) + net(2 name(OUT)) + net(3 name(VSS)) + net(4 name(NWELL)) + net(5 name(B)) + net(6 name(A)) + net(7 name(BULK)) + net(8 name('1')) + + # Outgoing pins and their connections to nets + pin(1 name(VDD)) + pin(2 name(OUT)) + pin(3 name(VSS)) + pin(4 name(NWELL)) + pin(5 name(B)) + pin(6 name(A)) + pin(7 name(BULK)) + + # Devices and their connections + device(1 PMOS + name($1) + param(L 0.25) + param(W 1.5) + param(AS 0) + param(AD 0) + param(PS 0) + param(PD 0) + terminal(S 1) + terminal(G 6) + terminal(D 2) + terminal(B 4) + ) + device(2 PMOS + name($2) + param(L 0.25) + param(W 1.5) + param(AS 0) + param(AD 0) + param(PS 0) + param(PD 0) + terminal(S 2) + terminal(G 5) + terminal(D 1) + terminal(B 4) + ) + device(3 NMOS + name($3) + param(L 0.25) + param(W 0.95) + param(AS 0) + param(AD 0) + param(PS 0) + param(PD 0) + terminal(S 8) + terminal(G 6) + terminal(D 3) + terminal(B 7) + ) + device(4 NMOS + name($4) + param(L 0.25) + param(W 0.95) + param(AS 0) + param(AD 0) + param(PS 0) + param(PD 0) + terminal(S 2) + terminal(G 5) + terminal(D 8) + terminal(B 7) + ) + + ) + circuit(INVX1 + + # Nets + net(1 name(VDD)) + net(2 name(OUT)) + net(3 name(VSS)) + net(4 name(NWELL)) + net(5 name(IN)) + net(6 name(BULK)) + + # Outgoing pins and their connections to nets + pin(1 name(VDD)) + pin(2 name(OUT)) + pin(3 name(VSS)) + pin(4 name(NWELL)) + pin(5 name(IN)) + pin(6 name(BULK)) + + # Devices and their connections + device(1 PMOS + name($1) + param(L 0.25) + param(W 1.5) + param(AS 0) + param(AD 0) + param(PS 0) + param(PD 0) + terminal(S 2) + terminal(G 5) + terminal(D 1) + terminal(B 4) + ) + device(2 NMOS + name($2) + param(L 0.25) + param(W 0.95) + param(AS 0) + param(AD 0) + param(PS 0) + param(PD 0) + terminal(S 2) + terminal(G 5) + terminal(D 3) + terminal(B 6) + ) + + ) + circuit(INVX2 + + # Nets + net(1 name(VDD)) + net(2 name(OUT)) + net(3 name(VSS)) + net(4 name(NWELL)) + net(5 name(IN)) + net(6 name(BULK)) + + # Outgoing pins and their connections to nets + pin(1 name(VDD)) + pin(2 name(OUT)) + pin(3 name(VSS)) + pin(4 name(NWELL)) + pin(5 name(IN)) + pin(6 name(BULK)) + + # Devices and their connections + device(1 PMOS + name($1) + param(L 0.25) + param(W 3) + param(AS 0) + param(AD 0) + param(PS 0) + param(PD 0) + terminal(S 2) + terminal(G 5) + terminal(D 1) + terminal(B 4) + ) + device(2 NMOS + name($2) + param(L 0.25) + param(W 1.9) + param(AS 0) + param(AD 0) + param(PS 0) + param(PD 0) + terminal(S 2) + terminal(G 5) + terminal(D 3) + terminal(B 6) + ) + + ) + circuit(RINGO + + # Nets + net(1 name(VSS)) + net(2 name(VDD)) + net(3 name(FB)) + net(4 name(ENABLE)) + net(5 name(OUT)) + net(6 name('1')) + net(7 name('2')) + net(8 name('3')) + net(9 name('4')) + net(10 name('5')) + net(11 name('6')) + net(12 name('7')) + net(13 name('8')) + net(14 name('9')) + net(15 name('10')) + + # Outgoing pins and their connections to nets + pin(1 name(VSS)) + pin(2 name(VDD)) + pin(3 name(FB)) + pin(4 name(ENABLE)) + pin(5 name(OUT)) + + # Subcircuits and their connections + circuit(1 ND2X1 name($1) + pin(0 2) + pin(1 6) + pin(2 1) + pin(3 2) + pin(4 3) + pin(5 4) + pin(6 1) + ) + circuit(2 INVX1 name($2) + pin(0 2) + pin(1 7) + pin(2 1) + pin(3 2) + pin(4 6) + pin(5 1) + ) + circuit(3 INVX1 name($3) + pin(0 2) + pin(1 8) + pin(2 1) + pin(3 2) + pin(4 7) + pin(5 1) + ) + circuit(4 INVX1 name($4) + pin(0 2) + pin(1 9) + pin(2 1) + pin(3 2) + pin(4 8) + pin(5 1) + ) + circuit(5 INVX1 name($5) + pin(0 2) + pin(1 10) + pin(2 1) + pin(3 2) + pin(4 9) + pin(5 1) + ) + circuit(6 INVX1 name($6) + pin(0 2) + pin(1 11) + pin(2 1) + pin(3 2) + pin(4 10) + pin(5 1) + ) + circuit(7 INVX1 name($7) + pin(0 2) + pin(1 12) + pin(2 1) + pin(3 2) + pin(4 11) + pin(5 1) + ) + circuit(8 INVX1 name($8) + pin(0 2) + pin(1 13) + pin(2 1) + pin(3 2) + pin(4 12) + pin(5 1) + ) + circuit(9 INVX1 name($9) + pin(0 2) + pin(1 14) + pin(2 1) + pin(3 2) + pin(4 13) + pin(5 1) + ) + circuit(10 INVX1 name($10) + pin(0 2) + pin(1 15) + pin(2 1) + pin(3 2) + pin(4 14) + pin(5 1) + ) + circuit(11 INVX1 name($11) + pin(0 2) + pin(1 3) + pin(2 1) + pin(3 2) + pin(4 15) + pin(5 1) + ) + circuit(12 INVX2 name($12) + pin(0 2) + pin(1 5) + pin(2 1) + pin(3 2) + pin(4 3) + pin(5 1) + ) + + ) +) + +# Cross reference +xref( + circuit(INVX1 INVX1 match + xref( + net(4 4 match) + net(5 5 match) + net(2 2 match) + net(6 6 match) + net(1 1 match) + net(3 3 match) + pin(3 3 match) + pin(4 4 match) + pin(1 1 match) + pin(5 5 match) + pin(0 0 match) + pin(2 2 match) + device(2 2 match) + device(1 1 match) + ) + ) + circuit(INVX2 INVX2 match + xref( + net(5 4 match) + net(1 5 match) + net(3 2 match) + net(6 6 match) + net(2 1 match) + net(4 3 match) + pin(4 3 match) + pin(0 4 match) + pin(2 1 match) + pin(5 5 match) + pin(1 0 match) + pin(3 2 match) + device(3 2 match) + device(1 1 match) + ) + ) + circuit(ND2X1 ND2X1 match + xref( + net(8 8 match) + net(4 4 match) + net(6 6 match) + net(5 5 match) + net(2 2 match) + net(7 7 match) + net(1 1 match) + net(3 3 match) + pin(3 3 match) + pin(5 5 match) + pin(4 4 match) + pin(1 1 match) + pin(6 6 match) + pin(0 0 match) + pin(2 2 match) + device(3 3 match) + device(4 4 match) + device(1 1 match) + device(2 2 match) + ) + ) + circuit(RINGO RINGO match + xref( + net(1 6 match) + net(4 15 match) + net(2 7 match) + net(10 8 match) + net(12 9 match) + net(13 10 match) + net(14 11 match) + net(15 12 match) + net(11 13 match) + net(3 14 match) + net(8 4 match) + net(5 3 match) + net(7 5 match) + net(6 2 match) + net(9 1 match) + pin(3 3 match) + pin(0 2 match) + pin(2 4 match) + pin(1 1 match) + pin(4 0 match) + circuit(2 2 match) + circuit(3 3 match) + circuit(15 4 match) + circuit(16 5 match) + circuit(17 6 match) + circuit(18 7 match) + circuit(19 8 match) + circuit(4 9 match) + circuit(5 10 match) + circuit(6 11 match) + circuit(7 12 match) + circuit(1 1 match) + ) + ) +) diff --git a/testdata/lvs/ringo_simple_with_tol.lvsdb.2 b/testdata/lvs/ringo_simple_with_tol.lvsdb.2 new file mode 100644 index 000000000..3b81a7df9 --- /dev/null +++ b/testdata/lvs/ringo_simple_with_tol.lvsdb.2 @@ -0,0 +1,908 @@ +#%lvsdb-klayout + +# Layout +layout( + top(RINGO) + unit(0.001) + + # Layer section + # This section lists the mask layers (drawing or derived) and their connections. + + # Mask layers + layer(l3 '1/0') + layer(l4 '5/0') + layer(l8 '8/0') + layer(l11 '9/0') + layer(l12 '10/0') + layer(l13 '11/0') + layer(l7) + layer(l2) + layer(l9) + layer(l6) + layer(l10) + + # Mask layer connectivity + connect(l3 l3 l9) + connect(l4 l4 l8) + connect(l8 l4 l8 l11 l2 l9 l6 l10) + connect(l11 l8 l11 l12) + connect(l12 l11 l12 l13) + connect(l13 l12 l13) + connect(l7 l7) + connect(l2 l8 l2) + connect(l9 l3 l8 l9) + connect(l6 l8 l6) + connect(l10 l8 l10) + + # Global nets and connectivity + global(l7 SUBSTRATE) + global(l10 SUBSTRATE) + + # Device class section + class(PMOS MOS4) + class(NMOS MOS4) + + # Device abstracts section + # Device abstracts list the pin shapes of the devices. + device(D$PMOS PMOS + terminal(S + rect(l2 (-550 -750) (425 1500)) + ) + terminal(G + rect(l4 (-125 -750) (250 1500)) + ) + terminal(D + rect(l2 (125 -750) (450 1500)) + ) + terminal(B + rect(l3 (-125 -750) (250 1500)) + ) + ) + device(D$PMOS$1 PMOS + terminal(S + rect(l2 (-575 -750) (450 1500)) + ) + terminal(G + rect(l4 (-125 -750) (250 1500)) + ) + terminal(D + rect(l2 (125 -750) (425 1500)) + ) + terminal(B + rect(l3 (-125 -750) (250 1500)) + ) + ) + device(D$PMOS$2 PMOS + terminal(S + rect(l2 (-550 -750) (425 1500)) + ) + terminal(G + rect(l4 (-125 -750) (250 1500)) + ) + terminal(D + rect(l2 (125 -750) (425 1500)) + ) + terminal(B + rect(l3 (-125 -750) (250 1500)) + ) + ) + device(D$NMOS NMOS + terminal(S + rect(l6 (-550 -475) (425 950)) + ) + terminal(G + rect(l4 (-125 -475) (250 950)) + ) + terminal(D + rect(l6 (125 -475) (450 950)) + ) + terminal(B + rect(l7 (-125 -475) (250 950)) + ) + ) + device(D$NMOS$1 NMOS + terminal(S + rect(l6 (-575 -475) (450 950)) + ) + terminal(G + rect(l4 (-125 -475) (250 950)) + ) + terminal(D + rect(l6 (125 -475) (425 950)) + ) + terminal(B + rect(l7 (-125 -475) (250 950)) + ) + ) + device(D$NMOS$2 NMOS + terminal(S + rect(l6 (-550 -475) (425 950)) + ) + terminal(G + rect(l4 (-125 -475) (250 950)) + ) + terminal(D + rect(l6 (125 -475) (425 950)) + ) + terminal(B + rect(l7 (-125 -475) (250 950)) + ) + ) + + # Circuit section + # Circuits are the hierarchical building blocks of the netlist. + circuit(ND2X1 + + # Circuit boundary + rect((-100 400) (2600 7600)) + + # Nets with their geometries + net(1 name(VDD) + rect(l8 (1110 5160) (180 180)) + rect(l8 (-180 920) (180 180)) + rect(l8 (-180 -730) (180 180)) + rect(l11 (-240 -790) (300 1700)) + rect(l11 (-1350 0) (2400 800)) + rect(l11 (-1150 -400) (0 0)) + rect(l2 (-275 -2150) (425 1500)) + rect(l2 (-400 -1500) (425 1500)) + ) + net(2 name(OUT) + rect(l8 (1810 1770) (180 180)) + rect(l8 (-180 370) (180 180)) + rect(l8 (-1580 3760) (180 180)) + rect(l8 (-180 -730) (180 180)) + rect(l8 (-180 -730) (180 180)) + rect(l8 (1220 920) (180 180)) + rect(l8 (-180 -1280) (180 180)) + rect(l8 (-180 370) (180 180)) + polygon(l11 (-240 -4180) (0 1390) (490 0) (0 -300) (-190 0) (0 -1090)) + rect(l11 (-110 1390) (300 1400)) + polygon(l11 (-1890 0) (0 600) (300 0) (0 -300) (1590 0) (0 -300)) + rect(l11 (-140 -500) (0 0)) + rect(l11 (-1750 1100) (300 1400)) + rect(l11 (1100 -1700) (300 300)) + rect(l11 (-300 0) (300 1400)) + rect(l2 (-375 -1450) (425 1500)) + rect(l2 (-1800 -1500) (425 1500)) + rect(l6 (950 -4890) (425 950)) + ) + net(3 name(VSS) + rect(l8 (410 1770) (180 180)) + rect(l8 (-180 370) (180 180)) + rect(l11 (-240 -1300) (300 1360)) + rect(l11 (-650 -2160) (2400 800)) + rect(l11 (-1150 -400) (0 0)) + rect(l6 (-950 860) (425 950)) + ) + net(4 name($4) + rect(l3 (-100 4500) (2600 3500)) + ) + net(5 name(B) + rect(l4 (1425 2860) (250 1940)) + rect(l4 (-345 -950) (300 300)) + rect(l4 (-205 650) (250 2000)) + rect(l4 (-250 -2000) (250 2000)) + rect(l4 (-250 -5390) (250 1450)) + rect(l8 (-285 1050) (180 180)) + rect(l11 (-70 -90) (0 0)) + rect(l11 (-170 -150) (300 300)) + ) + net(6 name(A) + rect(l4 (725 2860) (250 1940)) + rect(l4 (-325 -1850) (300 300)) + rect(l4 (-225 1550) (250 2000)) + rect(l4 (-250 -2000) (250 2000)) + rect(l4 (-250 -5390) (250 1450)) + rect(l8 (-265 150) (180 180)) + rect(l11 (-90 -90) (0 0)) + rect(l11 (-150 -150) (300 300)) + ) + net(7 name(SUBSTRATE)) + net(8 name($I5) + rect(l6 (975 1660) (425 950)) + rect(l6 (-400 -950) (425 950)) + ) + + # Outgoing pins and their connections to nets + pin(1 name(VDD)) + pin(2 name(OUT)) + pin(3 name(VSS)) + pin(4) + pin(5 name(B)) + pin(6 name(A)) + pin(7 name(SUBSTRATE)) + + # Devices and their connections + device(1 D$PMOS + location(850 5800) + param(L 0.25) + param(W 1.5) + param(AS 0.6375) + param(AD 0.3375) + param(PS 3.85) + param(PD 1.95) + terminal(S 2) + terminal(G 6) + terminal(D 1) + terminal(B 4) + ) + device(2 D$PMOS$1 + location(1550 5800) + param(L 0.25) + param(W 1.5) + param(AS 0.3375) + param(AD 0.6375) + param(PS 1.95) + param(PD 3.85) + terminal(S 1) + terminal(G 5) + terminal(D 2) + terminal(B 4) + ) + device(3 D$NMOS + location(850 2135) + param(L 0.25) + param(W 0.95) + param(AS 0.40375) + param(AD 0.21375) + param(PS 2.75) + param(PD 1.4) + terminal(S 3) + terminal(G 6) + terminal(D 8) + terminal(B 7) + ) + device(4 D$NMOS$1 + location(1550 2135) + param(L 0.25) + param(W 0.95) + param(AS 0.21375) + param(AD 0.40375) + param(PS 1.4) + param(PD 2.75) + terminal(S 8) + terminal(G 5) + terminal(D 2) + terminal(B 7) + ) + + ) + circuit(INVX1 + + # Circuit boundary + rect((-100 400) (2000 7600)) + + # Nets with their geometries + net(1 name(VDD) + rect(l8 (410 6260) (180 180)) + rect(l8 (-180 -730) (180 180)) + rect(l8 (-180 -730) (180 180)) + rect(l11 (-240 -240) (300 1400)) + rect(l11 (-650 300) (1800 800)) + rect(l11 (-1450 -1100) (300 300)) + rect(l11 (300 400) (0 0)) + rect(l2 (-650 -2150) (425 1500)) + ) + net(2 name(OUT) + rect(l8 (1110 5160) (180 180)) + rect(l8 (-180 920) (180 180)) + rect(l8 (-180 -730) (180 180)) + rect(l8 (-180 -4120) (180 180)) + rect(l8 (-180 370) (180 180)) + rect(l11 (-240 -790) (300 4790)) + rect(l11 (-150 -2500) (0 0)) + rect(l2 (-225 1050) (425 1500)) + rect(l6 (-425 -4890) (425 950)) + ) + net(3 name(VSS) + rect(l8 (410 1770) (180 180)) + rect(l8 (-180 370) (180 180)) + rect(l11 (-240 -1300) (300 1360)) + rect(l11 (-650 -2160) (1800 800)) + rect(l11 (-850 -400) (0 0)) + rect(l6 (-650 860) (425 950)) + ) + net(4 name($4) + rect(l3 (-100 4500) (2000 3500)) + ) + net(5 name(IN) + rect(l4 (725 2860) (250 1940)) + rect(l4 (-525 -1850) (300 300)) + rect(l4 (-25 1550) (250 2000)) + rect(l4 (-250 -2000) (250 2000)) + rect(l4 (-250 -5390) (250 1450)) + rect(l8 (-465 150) (180 180)) + rect(l11 (-90 -90) (0 0)) + rect(l11 (-150 -150) (300 300)) + ) + net(6 name(SUBSTRATE)) + + # Outgoing pins and their connections to nets + pin(1 name(VDD)) + pin(2 name(OUT)) + pin(3 name(VSS)) + pin(4) + pin(5 name(IN)) + pin(6 name(SUBSTRATE)) + + # Devices and their connections + device(1 D$PMOS$2 + location(850 5800) + param(L 0.25) + param(W 1.5) + param(AS 0.6375) + param(AD 0.6375) + param(PS 3.85) + param(PD 3.85) + terminal(S 1) + terminal(G 5) + terminal(D 2) + terminal(B 4) + ) + device(2 D$NMOS$2 + location(850 2135) + param(L 0.25) + param(W 0.95) + param(AS 0.40375) + param(AD 0.40375) + param(PS 2.75) + param(PD 2.75) + terminal(S 3) + terminal(G 5) + terminal(D 2) + terminal(B 6) + ) + + ) + circuit(RINGO + + # Circuit boundary + rect((0 350) (25800 7650)) + + # Nets with their geometries + net(1 name($1) + rect(l11 (4040 2950) (610 300)) + ) + net(2 name($2) + rect(l11 (5550 2950) (900 300)) + ) + net(3 name($3) + rect(l11 (7350 2950) (900 300)) + ) + net(4 name($4) + rect(l11 (9150 2950) (900 300)) + ) + net(5 name($5) + rect(l11 (10950 2950) (900 300)) + ) + net(6 name($6) + rect(l11 (12750 2950) (900 300)) + ) + net(7 name($7) + rect(l11 (14550 2950) (900 300)) + ) + net(8 name($8) + rect(l11 (16350 2950) (900 300)) + ) + net(9 name($9) + rect(l11 (18150 2950) (900 300)) + ) + net(10 name($10) + rect(l11 (19950 2950) (900 300)) + ) + net(11 name(FB) + rect(l11 (21750 2950) (900 300)) + rect(l11 (-19530 590) (320 320)) + rect(l11 (17820 -320) (320 320)) + rect(l12 (-18400 -260) (200 200)) + rect(l12 (17940 -200) (200 200)) + rect(l13 (-18040 -300) (17740 400)) + rect(l13 (-17920 -200) (0 0)) + rect(l13 (-220 -200) (400 400)) + rect(l13 (17740 -400) (400 400)) + ) + net(12 name(VDD) + rect(l3 (0 4500) (600 3500)) + rect(l3 (23300 -3500) (1400 3500)) + rect(l3 (-100 -3500) (600 3500)) + rect(l3 (-25300 -3500) (1400 3500)) + rect(l8 (22610 -1240) (180 180)) + rect(l8 (-180 370) (180 180)) + rect(l8 (-180 -1280) (180 180)) + rect(l8 (-23580 370) (180 180)) + rect(l8 (-180 370) (180 180)) + rect(l8 (-180 -1280) (180 180)) + rect(l11 (1660 860) (0 0)) + rect(l11 (-2950 -450) (600 800)) + rect(l11 (23400 -800) (1200 800)) + rect(l11 (-750 -1450) (300 1400)) + rect(l11 (-100 -350) (0 0)) + rect(l11 (550 -400) (600 800)) + rect(l11 (-25200 -800) (1200 800)) + rect(l11 (-750 -1450) (300 1400)) + rect(l11 (-100 -350) (0 0)) + rect(l9 (23100 -1100) (500 1500)) + rect(l9 (-23900 -1500) (500 1500)) + ) + net(13 name(OUT) + rect(l11 (23440 3840) (320 320)) + rect(l12 (-260 -260) (200 200)) + rect(l13 (-100 -100) (0 0)) + rect(l13 (-200 -200) (400 400)) + ) + net(14 name(ENABLE) + rect(l11 (2440 2940) (320 320)) + rect(l12 (-260 -260) (200 200)) + rect(l13 (-100 -100) (0 0)) + rect(l13 (-200 -200) (400 400)) + ) + net(15 name(VSS) + rect(l8 (24510 1610) (180 180)) + rect(l8 (-180 -1280) (180 180)) + rect(l8 (-180 370) (180 180)) + rect(l8 (-23580 370) (180 180)) + rect(l8 (-180 -1280) (180 180)) + rect(l8 (-180 370) (180 180)) + rect(l11 (1660 -390) (0 0)) + rect(l11 (21500 -400) (300 1400)) + rect(l11 (-750 -1450) (1200 800)) + rect(l11 (-550 -400) (0 0)) + rect(l11 (550 -400) (600 800)) + rect(l11 (-25800 -800) (600 800)) + rect(l11 (450 -750) (300 1400)) + rect(l11 (-750 -1450) (1200 800)) + rect(l11 (-550 -400) (0 0)) + rect(l10 (23100 -400) (500 1500)) + rect(l10 (-23900 -1500) (500 1500)) + ) + + # Outgoing pins and their connections to nets + pin(11 name(FB)) + pin(12 name(VDD)) + pin(13 name(OUT)) + pin(14 name(ENABLE)) + pin(15 name(VSS)) + + # Subcircuits and their connections + circuit(1 ND2X1 location(1800 0) + pin(0 12) + pin(1 1) + pin(2 15) + pin(3 12) + pin(4 11) + pin(5 14) + pin(6 15) + ) + circuit(2 INVX1 location(4200 0) + pin(0 12) + pin(1 2) + pin(2 15) + pin(3 12) + pin(4 1) + pin(5 15) + ) + circuit(3 INVX1 location(6000 0) + pin(0 12) + pin(1 3) + pin(2 15) + pin(3 12) + pin(4 2) + pin(5 15) + ) + circuit(4 INVX1 location(7800 0) + pin(0 12) + pin(1 4) + pin(2 15) + pin(3 12) + pin(4 3) + pin(5 15) + ) + circuit(5 INVX1 location(9600 0) + pin(0 12) + pin(1 5) + pin(2 15) + pin(3 12) + pin(4 4) + pin(5 15) + ) + circuit(6 INVX1 location(11400 0) + pin(0 12) + pin(1 6) + pin(2 15) + pin(3 12) + pin(4 5) + pin(5 15) + ) + circuit(7 INVX1 location(13200 0) + pin(0 12) + pin(1 7) + pin(2 15) + pin(3 12) + pin(4 6) + pin(5 15) + ) + circuit(8 INVX1 location(15000 0) + pin(0 12) + pin(1 8) + pin(2 15) + pin(3 12) + pin(4 7) + pin(5 15) + ) + circuit(9 INVX1 location(16800 0) + pin(0 12) + pin(1 9) + pin(2 15) + pin(3 12) + pin(4 8) + pin(5 15) + ) + circuit(10 INVX1 location(18600 0) + pin(0 12) + pin(1 10) + pin(2 15) + pin(3 12) + pin(4 9) + pin(5 15) + ) + circuit(11 INVX1 location(20400 0) + pin(0 12) + pin(1 11) + pin(2 15) + pin(3 12) + pin(4 10) + pin(5 15) + ) + circuit(12 INVX1 location(22200 0) + pin(0 12) + pin(1 13) + pin(2 15) + pin(3 12) + pin(4 11) + pin(5 15) + ) + + ) +) + +# Reference netlist +reference( + + # Device class section + class(PMOS MOS4) + class(NMOS MOS4) + + # Circuit section + # Circuits are the hierarchical building blocks of the netlist. + circuit(ND2X1 + + # Nets + net(1 name(VDD)) + net(2 name(OUT)) + net(3 name(VSS)) + net(4 name(NWELL)) + net(5 name(B)) + net(6 name(A)) + net(7 name(BULK)) + net(8 name('1')) + + # Outgoing pins and their connections to nets + pin(1 name(VDD)) + pin(2 name(OUT)) + pin(3 name(VSS)) + pin(4 name(NWELL)) + pin(5 name(B)) + pin(6 name(A)) + pin(7 name(BULK)) + + # Devices and their connections + device(1 PMOS + name($1) + param(L 0.251) + param(W 1.6) + param(AS 0) + param(AD 0) + param(PS 0) + param(PD 0) + terminal(S 1) + terminal(G 6) + terminal(D 2) + terminal(B 4) + ) + device(2 PMOS + name($2) + param(L 0.25) + param(W 1.5) + param(AS 0) + param(AD 0) + param(PS 0) + param(PD 0) + terminal(S 2) + terminal(G 5) + terminal(D 1) + terminal(B 4) + ) + device(3 NMOS + name($3) + param(L 0.26) + param(W 1) + param(AS 0) + param(AD 0) + param(PS 0) + param(PD 0) + terminal(S 8) + terminal(G 6) + terminal(D 3) + terminal(B 7) + ) + device(4 NMOS + name($4) + param(L 0.25) + param(W 0.95) + param(AS 0) + param(AD 0) + param(PS 0) + param(PD 0) + terminal(S 2) + terminal(G 5) + terminal(D 8) + terminal(B 7) + ) + + ) + circuit(INVX1 + + # Nets + net(1 name(VDD)) + net(2 name(OUT)) + net(3 name(VSS)) + net(4 name(NWELL)) + net(5 name(IN)) + net(6 name(BULK)) + + # Outgoing pins and their connections to nets + pin(1 name(VDD)) + pin(2 name(OUT)) + pin(3 name(VSS)) + pin(4 name(NWELL)) + pin(5 name(IN)) + pin(6 name(BULK)) + + # Devices and their connections + device(1 PMOS + name($1) + param(L 0.25) + param(W 1.5) + param(AS 0) + param(AD 0) + param(PS 0) + param(PD 0) + terminal(S 2) + terminal(G 5) + terminal(D 1) + terminal(B 4) + ) + device(2 NMOS + name($2) + param(L 0.25) + param(W 0.95) + param(AS 0) + param(AD 0) + param(PS 0) + param(PD 0) + terminal(S 2) + terminal(G 5) + terminal(D 3) + terminal(B 6) + ) + + ) + circuit(RINGO + + # Nets + net(1 name(VSS)) + net(2 name(VDD)) + net(3 name(FB)) + net(4 name(ENABLE)) + net(5 name(OUT)) + net(6 name('1')) + net(7 name('2')) + net(8 name('3')) + net(9 name('4')) + net(10 name('5')) + net(11 name('6')) + net(12 name('7')) + net(13 name('8')) + net(14 name('9')) + net(15 name('10')) + + # Outgoing pins and their connections to nets + pin(1 name(VSS)) + pin(2 name(VDD)) + pin(3 name(FB)) + pin(4 name(ENABLE)) + pin(5 name(OUT)) + + # Subcircuits and their connections + circuit(1 ND2X1 name($1) + pin(0 2) + pin(1 6) + pin(2 1) + pin(3 2) + pin(4 3) + pin(5 4) + pin(6 1) + ) + circuit(2 INVX1 name($2) + pin(0 2) + pin(1 7) + pin(2 1) + pin(3 2) + pin(4 6) + pin(5 1) + ) + circuit(3 INVX1 name($3) + pin(0 2) + pin(1 8) + pin(2 1) + pin(3 2) + pin(4 7) + pin(5 1) + ) + circuit(4 INVX1 name($4) + pin(0 2) + pin(1 9) + pin(2 1) + pin(3 2) + pin(4 8) + pin(5 1) + ) + circuit(5 INVX1 name($5) + pin(0 2) + pin(1 10) + pin(2 1) + pin(3 2) + pin(4 9) + pin(5 1) + ) + circuit(6 INVX1 name($6) + pin(0 2) + pin(1 11) + pin(2 1) + pin(3 2) + pin(4 10) + pin(5 1) + ) + circuit(7 INVX1 name($7) + pin(0 2) + pin(1 12) + pin(2 1) + pin(3 2) + pin(4 11) + pin(5 1) + ) + circuit(8 INVX1 name($8) + pin(0 2) + pin(1 13) + pin(2 1) + pin(3 2) + pin(4 12) + pin(5 1) + ) + circuit(9 INVX1 name($9) + pin(0 2) + pin(1 14) + pin(2 1) + pin(3 2) + pin(4 13) + pin(5 1) + ) + circuit(10 INVX1 name($10) + pin(0 2) + pin(1 15) + pin(2 1) + pin(3 2) + pin(4 14) + pin(5 1) + ) + circuit(11 INVX1 name($11) + pin(0 2) + pin(1 3) + pin(2 1) + pin(3 2) + pin(4 15) + pin(5 1) + ) + circuit(12 INVX1 name($12) + pin(0 2) + pin(1 5) + pin(2 1) + pin(3 2) + pin(4 3) + pin(5 1) + ) + + ) +) + +# Cross reference +xref( + circuit(INVX1 INVX1 match + xref( + net(4 4 match) + net(5 5 match) + net(2 2 match) + net(6 6 match) + net(1 1 match) + net(3 3 match) + pin(3 3 match) + pin(4 4 match) + pin(1 1 match) + pin(5 5 match) + pin(0 0 match) + pin(2 2 match) + device(2 2 match) + device(1 1 match) + ) + ) + circuit(ND2X1 ND2X1 match + xref( + net(8 8 match) + net(4 4 match) + net(6 6 match) + net(5 5 match) + net(2 2 match) + net(7 7 match) + net(1 1 match) + net(3 3 match) + pin(3 3 match) + pin(5 5 match) + pin(4 4 match) + pin(1 1 match) + pin(6 6 match) + pin(0 0 match) + pin(2 2 match) + device(3 3 match) + device(4 4 match) + device(1 1 match) + device(2 2 match) + ) + ) + circuit(RINGO RINGO match + xref( + net(1 6 match) + net(10 15 match) + net(2 7 match) + net(3 8 match) + net(4 9 match) + net(5 10 match) + net(6 11 match) + net(7 12 match) + net(8 13 match) + net(9 14 match) + net(14 4 match) + net(11 3 match) + net(13 5 match) + net(12 2 match) + net(15 1 match) + pin(3 3 match) + pin(0 2 match) + pin(2 4 match) + pin(1 1 match) + pin(4 0 match) + circuit(2 2 match) + circuit(3 3 match) + circuit(4 4 match) + circuit(5 5 match) + circuit(6 6 match) + circuit(7 7 match) + circuit(8 8 match) + circuit(9 9 match) + circuit(10 10 match) + circuit(11 11 match) + circuit(12 12 match) + circuit(1 1 match) + ) + ) +) diff --git a/testdata/lvs/ringo_simple_with_tol_early.lvsdb.2 b/testdata/lvs/ringo_simple_with_tol_early.lvsdb.2 new file mode 100644 index 000000000..3b81a7df9 --- /dev/null +++ b/testdata/lvs/ringo_simple_with_tol_early.lvsdb.2 @@ -0,0 +1,908 @@ +#%lvsdb-klayout + +# Layout +layout( + top(RINGO) + unit(0.001) + + # Layer section + # This section lists the mask layers (drawing or derived) and their connections. + + # Mask layers + layer(l3 '1/0') + layer(l4 '5/0') + layer(l8 '8/0') + layer(l11 '9/0') + layer(l12 '10/0') + layer(l13 '11/0') + layer(l7) + layer(l2) + layer(l9) + layer(l6) + layer(l10) + + # Mask layer connectivity + connect(l3 l3 l9) + connect(l4 l4 l8) + connect(l8 l4 l8 l11 l2 l9 l6 l10) + connect(l11 l8 l11 l12) + connect(l12 l11 l12 l13) + connect(l13 l12 l13) + connect(l7 l7) + connect(l2 l8 l2) + connect(l9 l3 l8 l9) + connect(l6 l8 l6) + connect(l10 l8 l10) + + # Global nets and connectivity + global(l7 SUBSTRATE) + global(l10 SUBSTRATE) + + # Device class section + class(PMOS MOS4) + class(NMOS MOS4) + + # Device abstracts section + # Device abstracts list the pin shapes of the devices. + device(D$PMOS PMOS + terminal(S + rect(l2 (-550 -750) (425 1500)) + ) + terminal(G + rect(l4 (-125 -750) (250 1500)) + ) + terminal(D + rect(l2 (125 -750) (450 1500)) + ) + terminal(B + rect(l3 (-125 -750) (250 1500)) + ) + ) + device(D$PMOS$1 PMOS + terminal(S + rect(l2 (-575 -750) (450 1500)) + ) + terminal(G + rect(l4 (-125 -750) (250 1500)) + ) + terminal(D + rect(l2 (125 -750) (425 1500)) + ) + terminal(B + rect(l3 (-125 -750) (250 1500)) + ) + ) + device(D$PMOS$2 PMOS + terminal(S + rect(l2 (-550 -750) (425 1500)) + ) + terminal(G + rect(l4 (-125 -750) (250 1500)) + ) + terminal(D + rect(l2 (125 -750) (425 1500)) + ) + terminal(B + rect(l3 (-125 -750) (250 1500)) + ) + ) + device(D$NMOS NMOS + terminal(S + rect(l6 (-550 -475) (425 950)) + ) + terminal(G + rect(l4 (-125 -475) (250 950)) + ) + terminal(D + rect(l6 (125 -475) (450 950)) + ) + terminal(B + rect(l7 (-125 -475) (250 950)) + ) + ) + device(D$NMOS$1 NMOS + terminal(S + rect(l6 (-575 -475) (450 950)) + ) + terminal(G + rect(l4 (-125 -475) (250 950)) + ) + terminal(D + rect(l6 (125 -475) (425 950)) + ) + terminal(B + rect(l7 (-125 -475) (250 950)) + ) + ) + device(D$NMOS$2 NMOS + terminal(S + rect(l6 (-550 -475) (425 950)) + ) + terminal(G + rect(l4 (-125 -475) (250 950)) + ) + terminal(D + rect(l6 (125 -475) (425 950)) + ) + terminal(B + rect(l7 (-125 -475) (250 950)) + ) + ) + + # Circuit section + # Circuits are the hierarchical building blocks of the netlist. + circuit(ND2X1 + + # Circuit boundary + rect((-100 400) (2600 7600)) + + # Nets with their geometries + net(1 name(VDD) + rect(l8 (1110 5160) (180 180)) + rect(l8 (-180 920) (180 180)) + rect(l8 (-180 -730) (180 180)) + rect(l11 (-240 -790) (300 1700)) + rect(l11 (-1350 0) (2400 800)) + rect(l11 (-1150 -400) (0 0)) + rect(l2 (-275 -2150) (425 1500)) + rect(l2 (-400 -1500) (425 1500)) + ) + net(2 name(OUT) + rect(l8 (1810 1770) (180 180)) + rect(l8 (-180 370) (180 180)) + rect(l8 (-1580 3760) (180 180)) + rect(l8 (-180 -730) (180 180)) + rect(l8 (-180 -730) (180 180)) + rect(l8 (1220 920) (180 180)) + rect(l8 (-180 -1280) (180 180)) + rect(l8 (-180 370) (180 180)) + polygon(l11 (-240 -4180) (0 1390) (490 0) (0 -300) (-190 0) (0 -1090)) + rect(l11 (-110 1390) (300 1400)) + polygon(l11 (-1890 0) (0 600) (300 0) (0 -300) (1590 0) (0 -300)) + rect(l11 (-140 -500) (0 0)) + rect(l11 (-1750 1100) (300 1400)) + rect(l11 (1100 -1700) (300 300)) + rect(l11 (-300 0) (300 1400)) + rect(l2 (-375 -1450) (425 1500)) + rect(l2 (-1800 -1500) (425 1500)) + rect(l6 (950 -4890) (425 950)) + ) + net(3 name(VSS) + rect(l8 (410 1770) (180 180)) + rect(l8 (-180 370) (180 180)) + rect(l11 (-240 -1300) (300 1360)) + rect(l11 (-650 -2160) (2400 800)) + rect(l11 (-1150 -400) (0 0)) + rect(l6 (-950 860) (425 950)) + ) + net(4 name($4) + rect(l3 (-100 4500) (2600 3500)) + ) + net(5 name(B) + rect(l4 (1425 2860) (250 1940)) + rect(l4 (-345 -950) (300 300)) + rect(l4 (-205 650) (250 2000)) + rect(l4 (-250 -2000) (250 2000)) + rect(l4 (-250 -5390) (250 1450)) + rect(l8 (-285 1050) (180 180)) + rect(l11 (-70 -90) (0 0)) + rect(l11 (-170 -150) (300 300)) + ) + net(6 name(A) + rect(l4 (725 2860) (250 1940)) + rect(l4 (-325 -1850) (300 300)) + rect(l4 (-225 1550) (250 2000)) + rect(l4 (-250 -2000) (250 2000)) + rect(l4 (-250 -5390) (250 1450)) + rect(l8 (-265 150) (180 180)) + rect(l11 (-90 -90) (0 0)) + rect(l11 (-150 -150) (300 300)) + ) + net(7 name(SUBSTRATE)) + net(8 name($I5) + rect(l6 (975 1660) (425 950)) + rect(l6 (-400 -950) (425 950)) + ) + + # Outgoing pins and their connections to nets + pin(1 name(VDD)) + pin(2 name(OUT)) + pin(3 name(VSS)) + pin(4) + pin(5 name(B)) + pin(6 name(A)) + pin(7 name(SUBSTRATE)) + + # Devices and their connections + device(1 D$PMOS + location(850 5800) + param(L 0.25) + param(W 1.5) + param(AS 0.6375) + param(AD 0.3375) + param(PS 3.85) + param(PD 1.95) + terminal(S 2) + terminal(G 6) + terminal(D 1) + terminal(B 4) + ) + device(2 D$PMOS$1 + location(1550 5800) + param(L 0.25) + param(W 1.5) + param(AS 0.3375) + param(AD 0.6375) + param(PS 1.95) + param(PD 3.85) + terminal(S 1) + terminal(G 5) + terminal(D 2) + terminal(B 4) + ) + device(3 D$NMOS + location(850 2135) + param(L 0.25) + param(W 0.95) + param(AS 0.40375) + param(AD 0.21375) + param(PS 2.75) + param(PD 1.4) + terminal(S 3) + terminal(G 6) + terminal(D 8) + terminal(B 7) + ) + device(4 D$NMOS$1 + location(1550 2135) + param(L 0.25) + param(W 0.95) + param(AS 0.21375) + param(AD 0.40375) + param(PS 1.4) + param(PD 2.75) + terminal(S 8) + terminal(G 5) + terminal(D 2) + terminal(B 7) + ) + + ) + circuit(INVX1 + + # Circuit boundary + rect((-100 400) (2000 7600)) + + # Nets with their geometries + net(1 name(VDD) + rect(l8 (410 6260) (180 180)) + rect(l8 (-180 -730) (180 180)) + rect(l8 (-180 -730) (180 180)) + rect(l11 (-240 -240) (300 1400)) + rect(l11 (-650 300) (1800 800)) + rect(l11 (-1450 -1100) (300 300)) + rect(l11 (300 400) (0 0)) + rect(l2 (-650 -2150) (425 1500)) + ) + net(2 name(OUT) + rect(l8 (1110 5160) (180 180)) + rect(l8 (-180 920) (180 180)) + rect(l8 (-180 -730) (180 180)) + rect(l8 (-180 -4120) (180 180)) + rect(l8 (-180 370) (180 180)) + rect(l11 (-240 -790) (300 4790)) + rect(l11 (-150 -2500) (0 0)) + rect(l2 (-225 1050) (425 1500)) + rect(l6 (-425 -4890) (425 950)) + ) + net(3 name(VSS) + rect(l8 (410 1770) (180 180)) + rect(l8 (-180 370) (180 180)) + rect(l11 (-240 -1300) (300 1360)) + rect(l11 (-650 -2160) (1800 800)) + rect(l11 (-850 -400) (0 0)) + rect(l6 (-650 860) (425 950)) + ) + net(4 name($4) + rect(l3 (-100 4500) (2000 3500)) + ) + net(5 name(IN) + rect(l4 (725 2860) (250 1940)) + rect(l4 (-525 -1850) (300 300)) + rect(l4 (-25 1550) (250 2000)) + rect(l4 (-250 -2000) (250 2000)) + rect(l4 (-250 -5390) (250 1450)) + rect(l8 (-465 150) (180 180)) + rect(l11 (-90 -90) (0 0)) + rect(l11 (-150 -150) (300 300)) + ) + net(6 name(SUBSTRATE)) + + # Outgoing pins and their connections to nets + pin(1 name(VDD)) + pin(2 name(OUT)) + pin(3 name(VSS)) + pin(4) + pin(5 name(IN)) + pin(6 name(SUBSTRATE)) + + # Devices and their connections + device(1 D$PMOS$2 + location(850 5800) + param(L 0.25) + param(W 1.5) + param(AS 0.6375) + param(AD 0.6375) + param(PS 3.85) + param(PD 3.85) + terminal(S 1) + terminal(G 5) + terminal(D 2) + terminal(B 4) + ) + device(2 D$NMOS$2 + location(850 2135) + param(L 0.25) + param(W 0.95) + param(AS 0.40375) + param(AD 0.40375) + param(PS 2.75) + param(PD 2.75) + terminal(S 3) + terminal(G 5) + terminal(D 2) + terminal(B 6) + ) + + ) + circuit(RINGO + + # Circuit boundary + rect((0 350) (25800 7650)) + + # Nets with their geometries + net(1 name($1) + rect(l11 (4040 2950) (610 300)) + ) + net(2 name($2) + rect(l11 (5550 2950) (900 300)) + ) + net(3 name($3) + rect(l11 (7350 2950) (900 300)) + ) + net(4 name($4) + rect(l11 (9150 2950) (900 300)) + ) + net(5 name($5) + rect(l11 (10950 2950) (900 300)) + ) + net(6 name($6) + rect(l11 (12750 2950) (900 300)) + ) + net(7 name($7) + rect(l11 (14550 2950) (900 300)) + ) + net(8 name($8) + rect(l11 (16350 2950) (900 300)) + ) + net(9 name($9) + rect(l11 (18150 2950) (900 300)) + ) + net(10 name($10) + rect(l11 (19950 2950) (900 300)) + ) + net(11 name(FB) + rect(l11 (21750 2950) (900 300)) + rect(l11 (-19530 590) (320 320)) + rect(l11 (17820 -320) (320 320)) + rect(l12 (-18400 -260) (200 200)) + rect(l12 (17940 -200) (200 200)) + rect(l13 (-18040 -300) (17740 400)) + rect(l13 (-17920 -200) (0 0)) + rect(l13 (-220 -200) (400 400)) + rect(l13 (17740 -400) (400 400)) + ) + net(12 name(VDD) + rect(l3 (0 4500) (600 3500)) + rect(l3 (23300 -3500) (1400 3500)) + rect(l3 (-100 -3500) (600 3500)) + rect(l3 (-25300 -3500) (1400 3500)) + rect(l8 (22610 -1240) (180 180)) + rect(l8 (-180 370) (180 180)) + rect(l8 (-180 -1280) (180 180)) + rect(l8 (-23580 370) (180 180)) + rect(l8 (-180 370) (180 180)) + rect(l8 (-180 -1280) (180 180)) + rect(l11 (1660 860) (0 0)) + rect(l11 (-2950 -450) (600 800)) + rect(l11 (23400 -800) (1200 800)) + rect(l11 (-750 -1450) (300 1400)) + rect(l11 (-100 -350) (0 0)) + rect(l11 (550 -400) (600 800)) + rect(l11 (-25200 -800) (1200 800)) + rect(l11 (-750 -1450) (300 1400)) + rect(l11 (-100 -350) (0 0)) + rect(l9 (23100 -1100) (500 1500)) + rect(l9 (-23900 -1500) (500 1500)) + ) + net(13 name(OUT) + rect(l11 (23440 3840) (320 320)) + rect(l12 (-260 -260) (200 200)) + rect(l13 (-100 -100) (0 0)) + rect(l13 (-200 -200) (400 400)) + ) + net(14 name(ENABLE) + rect(l11 (2440 2940) (320 320)) + rect(l12 (-260 -260) (200 200)) + rect(l13 (-100 -100) (0 0)) + rect(l13 (-200 -200) (400 400)) + ) + net(15 name(VSS) + rect(l8 (24510 1610) (180 180)) + rect(l8 (-180 -1280) (180 180)) + rect(l8 (-180 370) (180 180)) + rect(l8 (-23580 370) (180 180)) + rect(l8 (-180 -1280) (180 180)) + rect(l8 (-180 370) (180 180)) + rect(l11 (1660 -390) (0 0)) + rect(l11 (21500 -400) (300 1400)) + rect(l11 (-750 -1450) (1200 800)) + rect(l11 (-550 -400) (0 0)) + rect(l11 (550 -400) (600 800)) + rect(l11 (-25800 -800) (600 800)) + rect(l11 (450 -750) (300 1400)) + rect(l11 (-750 -1450) (1200 800)) + rect(l11 (-550 -400) (0 0)) + rect(l10 (23100 -400) (500 1500)) + rect(l10 (-23900 -1500) (500 1500)) + ) + + # Outgoing pins and their connections to nets + pin(11 name(FB)) + pin(12 name(VDD)) + pin(13 name(OUT)) + pin(14 name(ENABLE)) + pin(15 name(VSS)) + + # Subcircuits and their connections + circuit(1 ND2X1 location(1800 0) + pin(0 12) + pin(1 1) + pin(2 15) + pin(3 12) + pin(4 11) + pin(5 14) + pin(6 15) + ) + circuit(2 INVX1 location(4200 0) + pin(0 12) + pin(1 2) + pin(2 15) + pin(3 12) + pin(4 1) + pin(5 15) + ) + circuit(3 INVX1 location(6000 0) + pin(0 12) + pin(1 3) + pin(2 15) + pin(3 12) + pin(4 2) + pin(5 15) + ) + circuit(4 INVX1 location(7800 0) + pin(0 12) + pin(1 4) + pin(2 15) + pin(3 12) + pin(4 3) + pin(5 15) + ) + circuit(5 INVX1 location(9600 0) + pin(0 12) + pin(1 5) + pin(2 15) + pin(3 12) + pin(4 4) + pin(5 15) + ) + circuit(6 INVX1 location(11400 0) + pin(0 12) + pin(1 6) + pin(2 15) + pin(3 12) + pin(4 5) + pin(5 15) + ) + circuit(7 INVX1 location(13200 0) + pin(0 12) + pin(1 7) + pin(2 15) + pin(3 12) + pin(4 6) + pin(5 15) + ) + circuit(8 INVX1 location(15000 0) + pin(0 12) + pin(1 8) + pin(2 15) + pin(3 12) + pin(4 7) + pin(5 15) + ) + circuit(9 INVX1 location(16800 0) + pin(0 12) + pin(1 9) + pin(2 15) + pin(3 12) + pin(4 8) + pin(5 15) + ) + circuit(10 INVX1 location(18600 0) + pin(0 12) + pin(1 10) + pin(2 15) + pin(3 12) + pin(4 9) + pin(5 15) + ) + circuit(11 INVX1 location(20400 0) + pin(0 12) + pin(1 11) + pin(2 15) + pin(3 12) + pin(4 10) + pin(5 15) + ) + circuit(12 INVX1 location(22200 0) + pin(0 12) + pin(1 13) + pin(2 15) + pin(3 12) + pin(4 11) + pin(5 15) + ) + + ) +) + +# Reference netlist +reference( + + # Device class section + class(PMOS MOS4) + class(NMOS MOS4) + + # Circuit section + # Circuits are the hierarchical building blocks of the netlist. + circuit(ND2X1 + + # Nets + net(1 name(VDD)) + net(2 name(OUT)) + net(3 name(VSS)) + net(4 name(NWELL)) + net(5 name(B)) + net(6 name(A)) + net(7 name(BULK)) + net(8 name('1')) + + # Outgoing pins and their connections to nets + pin(1 name(VDD)) + pin(2 name(OUT)) + pin(3 name(VSS)) + pin(4 name(NWELL)) + pin(5 name(B)) + pin(6 name(A)) + pin(7 name(BULK)) + + # Devices and their connections + device(1 PMOS + name($1) + param(L 0.251) + param(W 1.6) + param(AS 0) + param(AD 0) + param(PS 0) + param(PD 0) + terminal(S 1) + terminal(G 6) + terminal(D 2) + terminal(B 4) + ) + device(2 PMOS + name($2) + param(L 0.25) + param(W 1.5) + param(AS 0) + param(AD 0) + param(PS 0) + param(PD 0) + terminal(S 2) + terminal(G 5) + terminal(D 1) + terminal(B 4) + ) + device(3 NMOS + name($3) + param(L 0.26) + param(W 1) + param(AS 0) + param(AD 0) + param(PS 0) + param(PD 0) + terminal(S 8) + terminal(G 6) + terminal(D 3) + terminal(B 7) + ) + device(4 NMOS + name($4) + param(L 0.25) + param(W 0.95) + param(AS 0) + param(AD 0) + param(PS 0) + param(PD 0) + terminal(S 2) + terminal(G 5) + terminal(D 8) + terminal(B 7) + ) + + ) + circuit(INVX1 + + # Nets + net(1 name(VDD)) + net(2 name(OUT)) + net(3 name(VSS)) + net(4 name(NWELL)) + net(5 name(IN)) + net(6 name(BULK)) + + # Outgoing pins and their connections to nets + pin(1 name(VDD)) + pin(2 name(OUT)) + pin(3 name(VSS)) + pin(4 name(NWELL)) + pin(5 name(IN)) + pin(6 name(BULK)) + + # Devices and their connections + device(1 PMOS + name($1) + param(L 0.25) + param(W 1.5) + param(AS 0) + param(AD 0) + param(PS 0) + param(PD 0) + terminal(S 2) + terminal(G 5) + terminal(D 1) + terminal(B 4) + ) + device(2 NMOS + name($2) + param(L 0.25) + param(W 0.95) + param(AS 0) + param(AD 0) + param(PS 0) + param(PD 0) + terminal(S 2) + terminal(G 5) + terminal(D 3) + terminal(B 6) + ) + + ) + circuit(RINGO + + # Nets + net(1 name(VSS)) + net(2 name(VDD)) + net(3 name(FB)) + net(4 name(ENABLE)) + net(5 name(OUT)) + net(6 name('1')) + net(7 name('2')) + net(8 name('3')) + net(9 name('4')) + net(10 name('5')) + net(11 name('6')) + net(12 name('7')) + net(13 name('8')) + net(14 name('9')) + net(15 name('10')) + + # Outgoing pins and their connections to nets + pin(1 name(VSS)) + pin(2 name(VDD)) + pin(3 name(FB)) + pin(4 name(ENABLE)) + pin(5 name(OUT)) + + # Subcircuits and their connections + circuit(1 ND2X1 name($1) + pin(0 2) + pin(1 6) + pin(2 1) + pin(3 2) + pin(4 3) + pin(5 4) + pin(6 1) + ) + circuit(2 INVX1 name($2) + pin(0 2) + pin(1 7) + pin(2 1) + pin(3 2) + pin(4 6) + pin(5 1) + ) + circuit(3 INVX1 name($3) + pin(0 2) + pin(1 8) + pin(2 1) + pin(3 2) + pin(4 7) + pin(5 1) + ) + circuit(4 INVX1 name($4) + pin(0 2) + pin(1 9) + pin(2 1) + pin(3 2) + pin(4 8) + pin(5 1) + ) + circuit(5 INVX1 name($5) + pin(0 2) + pin(1 10) + pin(2 1) + pin(3 2) + pin(4 9) + pin(5 1) + ) + circuit(6 INVX1 name($6) + pin(0 2) + pin(1 11) + pin(2 1) + pin(3 2) + pin(4 10) + pin(5 1) + ) + circuit(7 INVX1 name($7) + pin(0 2) + pin(1 12) + pin(2 1) + pin(3 2) + pin(4 11) + pin(5 1) + ) + circuit(8 INVX1 name($8) + pin(0 2) + pin(1 13) + pin(2 1) + pin(3 2) + pin(4 12) + pin(5 1) + ) + circuit(9 INVX1 name($9) + pin(0 2) + pin(1 14) + pin(2 1) + pin(3 2) + pin(4 13) + pin(5 1) + ) + circuit(10 INVX1 name($10) + pin(0 2) + pin(1 15) + pin(2 1) + pin(3 2) + pin(4 14) + pin(5 1) + ) + circuit(11 INVX1 name($11) + pin(0 2) + pin(1 3) + pin(2 1) + pin(3 2) + pin(4 15) + pin(5 1) + ) + circuit(12 INVX1 name($12) + pin(0 2) + pin(1 5) + pin(2 1) + pin(3 2) + pin(4 3) + pin(5 1) + ) + + ) +) + +# Cross reference +xref( + circuit(INVX1 INVX1 match + xref( + net(4 4 match) + net(5 5 match) + net(2 2 match) + net(6 6 match) + net(1 1 match) + net(3 3 match) + pin(3 3 match) + pin(4 4 match) + pin(1 1 match) + pin(5 5 match) + pin(0 0 match) + pin(2 2 match) + device(2 2 match) + device(1 1 match) + ) + ) + circuit(ND2X1 ND2X1 match + xref( + net(8 8 match) + net(4 4 match) + net(6 6 match) + net(5 5 match) + net(2 2 match) + net(7 7 match) + net(1 1 match) + net(3 3 match) + pin(3 3 match) + pin(5 5 match) + pin(4 4 match) + pin(1 1 match) + pin(6 6 match) + pin(0 0 match) + pin(2 2 match) + device(3 3 match) + device(4 4 match) + device(1 1 match) + device(2 2 match) + ) + ) + circuit(RINGO RINGO match + xref( + net(1 6 match) + net(10 15 match) + net(2 7 match) + net(3 8 match) + net(4 9 match) + net(5 10 match) + net(6 11 match) + net(7 12 match) + net(8 13 match) + net(9 14 match) + net(14 4 match) + net(11 3 match) + net(13 5 match) + net(12 2 match) + net(15 1 match) + pin(3 3 match) + pin(0 2 match) + pin(2 4 match) + pin(1 1 match) + pin(4 0 match) + circuit(2 2 match) + circuit(3 3 match) + circuit(4 4 match) + circuit(5 5 match) + circuit(6 6 match) + circuit(7 7 match) + circuit(8 8 match) + circuit(9 9 match) + circuit(10 10 match) + circuit(11 11 match) + circuit(12 12 match) + circuit(1 1 match) + ) + ) +) From db9aee844dfa18409bb4d236315318cc06063c58 Mon Sep 17 00:00:00 2001 From: Matthias Koefferlein Date: Wed, 18 Mar 2026 22:49:24 +0100 Subject: [PATCH 038/212] New testdata --- testdata/algo/lvs_test1b_au.lvsdb.2 | 646 ++++++++++++ testdata/algo/lvs_test2b_au.lvsdb.2 | 677 +++++++++++++ .../lvs/ringo_simple_device_scaling.lvsdb.2 | 908 +++++++++++++++++ testdata/lvs/ringo_simple_dmos_fixed.lvsdb.2 | 918 ++++++++++++++++++ testdata/lvs/ringo_simple_io.cir.2 | 31 + testdata/lvs/ringo_simple_io2.cir.2 | 32 + .../ringo_simple_same_device_classes.cir.2 | 31 + 7 files changed, 3243 insertions(+) create mode 100644 testdata/algo/lvs_test1b_au.lvsdb.2 create mode 100644 testdata/algo/lvs_test2b_au.lvsdb.2 create mode 100644 testdata/lvs/ringo_simple_device_scaling.lvsdb.2 create mode 100644 testdata/lvs/ringo_simple_dmos_fixed.lvsdb.2 create mode 100644 testdata/lvs/ringo_simple_io.cir.2 create mode 100644 testdata/lvs/ringo_simple_io2.cir.2 create mode 100644 testdata/lvs/ringo_simple_same_device_classes.cir.2 diff --git a/testdata/algo/lvs_test1b_au.lvsdb.2 b/testdata/algo/lvs_test1b_au.lvsdb.2 new file mode 100644 index 000000000..9d3e8fa30 --- /dev/null +++ b/testdata/algo/lvs_test1b_au.lvsdb.2 @@ -0,0 +1,646 @@ +#%lvsdb-klayout + +# Layout +layout( + top(RINGO) + unit(0.001) + + # Layer section + # This section lists the mask layers (drawing or derived) and their connections. + + # Mask layers + layer(bulk) + layer(nwell '1/0') + layer(poly '3/0') + layer(poly_lbl '3/1') + layer(diff_cont '4/0') + layer(poly_cont '5/0') + layer(metal1 '6/0') + layer(metal1_lbl '6/1') + layer(via1 '7/0') + layer(metal2 '8/0') + layer(metal2_lbl '8/1') + layer(ntie) + layer(psd) + layer(ptie) + layer(nsd) + + # Mask layer connectivity + connect(nwell nwell ntie) + connect(poly poly poly_lbl poly_cont) + connect(poly_lbl poly) + connect(diff_cont diff_cont metal1 ntie psd ptie nsd) + connect(poly_cont poly poly_cont metal1) + connect(metal1 diff_cont poly_cont metal1 metal1_lbl via1) + connect(metal1_lbl metal1) + connect(via1 metal1 via1 metal2) + connect(metal2 via1 metal2 metal2_lbl) + connect(metal2_lbl metal2) + connect(ntie nwell diff_cont ntie) + connect(psd diff_cont psd) + connect(ptie diff_cont ptie) + connect(nsd diff_cont nsd) + + # Global nets and connectivity + global(bulk BULK) + global(ptie BULK) + + # Device class section + class(PMOS MOS4) + class(NMOS MOS4) + + # Device abstracts section + # Device abstracts list the pin shapes of the devices. + device(D$PMOS PMOS + terminal(S + rect(psd (-650 -875) (525 1750)) + ) + terminal(G + rect(poly (-125 -875) (250 1750)) + ) + terminal(D + rect(psd (125 -875) (550 1750)) + ) + terminal(B + rect(nwell (-125 -875) (250 1750)) + ) + ) + device(D$PMOS$1 PMOS + terminal(S + rect(psd (-675 -875) (550 1750)) + ) + terminal(G + rect(poly (-125 -875) (250 1750)) + ) + terminal(D + rect(psd (125 -875) (525 1750)) + ) + terminal(B + rect(nwell (-125 -875) (250 1750)) + ) + ) + device(D$NMOS NMOS + terminal(S + rect(nsd (-650 -875) (525 1750)) + ) + terminal(G + rect(poly (-125 -875) (250 1750)) + ) + terminal(D + rect(nsd (125 -875) (550 1750)) + ) + terminal(B + rect(bulk (-125 -875) (250 1750)) + ) + ) + device(D$NMOS$1 NMOS + terminal(S + rect(nsd (-675 -875) (550 1750)) + ) + terminal(G + rect(poly (-125 -875) (250 1750)) + ) + terminal(D + rect(nsd (125 -875) (525 1750)) + ) + terminal(B + rect(bulk (-125 -875) (250 1750)) + ) + ) + + # Circuit section + # Circuits are the hierarchical building blocks of the netlist. + circuit(INV2 + + # Circuit boundary + rect((-1700 -2440) (3100 7820)) + + # Nets with their geometries + net(1 name($1) + rect(nwell (-1400 1800) (2800 3580)) + rect(diff_cont (-1510 -650) (220 220)) + rect(ntie (-510 -450) (800 680)) + ) + net(2 name(IN) + rect(poly (-525 -250) (250 2500)) + rect(poly (-1425 -630) (2100 360)) + rect(poly (-125 -2230) (250 2500)) + rect(poly (-1050 -3850) (250 2400)) + rect(poly (550 1200) (250 2400)) + rect(poly (-250 -6000) (250 2400)) + rect(poly (-1050 1200) (250 2400)) + rect(poly_lbl (-525 -2600) (0 0)) + rect(poly_cont (-830 -110) (220 220)) + ) + net(3 name(OUT) + rect(diff_cont (-910 90) (220 220)) + rect(diff_cont (-220 -620) (220 220)) + rect(diff_cont (-220 -620) (220 220)) + rect(diff_cont (-220 -620) (220 220)) + rect(diff_cont (1380 3380) (220 220)) + rect(diff_cont (-220 180) (220 220)) + rect(diff_cont (-220 180) (220 220)) + rect(diff_cont (-220 180) (220 220)) + rect(diff_cont (-220 -3820) (220 220)) + rect(diff_cont (-220 -620) (220 220)) + rect(diff_cont (-220 -620) (220 220)) + rect(diff_cont (-220 -620) (220 220)) + rect(diff_cont (-1820 3380) (220 220)) + rect(diff_cont (-220 180) (220 220)) + rect(diff_cont (-220 180) (220 220)) + rect(diff_cont (-220 180) (220 220)) + rect(metal1 (1310 -3710) (360 2220)) + rect(metal1 (-1900 -800) (2220 360)) + rect(metal1 (-2280 -2400) (360 2840)) + rect(metal1 (-360 -3600) (360 1560)) + rect(metal1 (1240 2040) (360 1560)) + rect(metal1 (-360 -5160) (360 1560)) + rect(metal1 (-1960 2040) (360 1560)) + rect(metal1_lbl (1420 -2180) (0 0)) + rect(psd (-1850 525) (525 1750)) + rect(psd (1050 -1750) (525 1750)) + rect(nsd (-2100 -5350) (525 1750)) + rect(nsd (1050 -1750) (525 1750)) + ) + net(4 name(VSS) + rect(diff_cont (-110 90) (220 220)) + rect(diff_cont (-220 -620) (220 220)) + rect(diff_cont (-220 -620) (220 220)) + rect(diff_cont (-220 -620) (220 220)) + rect(diff_cont (-220 980) (220 220)) + rect(diff_cont (-220 -620) (220 220)) + rect(diff_cont (-220 -620) (220 220)) + rect(diff_cont (-220 -620) (220 220)) + rect(metal1 (-290 -290) (360 1560)) + rect(metal1 (-360 -1560) (360 1560)) + rect(via1 (-305 -705) (250 250)) + rect(via1 (-250 150) (250 250)) + rect(via1 (-250 -1450) (250 250)) + rect(via1 (-250 150) (250 250)) + rect(metal2 (-1525 -775) (2800 1700)) + rect(metal2_lbl (-160 -540) (0 0)) + rect(nsd (-1515 -1185) (550 1750)) + ) + net(5 name(VDD) + rect(diff_cont (-110 2490) (220 220)) + rect(diff_cont (-220 180) (220 220)) + rect(diff_cont (-220 180) (220 220)) + rect(diff_cont (-220 180) (220 220)) + rect(diff_cont (-220 -1420) (220 220)) + rect(diff_cont (-220 180) (220 220)) + rect(diff_cont (-220 180) (220 220)) + rect(diff_cont (-220 180) (220 220)) + rect(metal1 (-290 -1490) (360 1560)) + rect(metal1 (-360 -1560) (360 1560)) + rect(via1 (-305 -1505) (250 250)) + rect(via1 (-250 150) (250 250)) + rect(via1 (-250 150) (250 250)) + rect(via1 (-250 150) (250 250)) + rect(metal2 (-1525 -1575) (2800 1700)) + rect(metal2_lbl (-150 -1250) (0 0)) + rect(psd (-1525 -475) (550 1750)) + ) + net(6 name(BULK) + rect(diff_cont (-110 -2160) (220 220)) + rect(ptie (-510 -450) (800 680)) + ) + + # Outgoing pins and their connections to nets + pin(1) + pin(2 name(IN)) + pin(3 name(OUT)) + pin(4 name(VSS)) + pin(5 name(VDD)) + pin(6 name(BULK)) + + # Devices and their connections + device(1 D$PMOS + device(D$PMOS$1 location(800 0)) + connect(0 S S) + connect(1 S D) + connect(0 G G) + connect(1 G G) + connect(0 D D) + connect(1 D S) + connect(0 B B) + connect(1 B B) + location(-400 3200) + param(L 0.25) + param(W 3.5) + param(AS 1.4) + param(AD 1.4) + param(PS 6.85) + param(PD 6.85) + terminal(S 3) + terminal(G 2) + terminal(D 5) + terminal(B 1) + ) + device(2 D$NMOS + device(D$NMOS$1 location(800 0)) + connect(0 S S) + connect(1 S D) + connect(0 G G) + connect(1 G G) + connect(0 D D) + connect(1 D S) + connect(0 B B) + connect(1 B B) + location(-400 -400) + param(L 0.25) + param(W 3.5) + param(AS 1.4) + param(AD 1.4) + param(PS 6.85) + param(PD 6.85) + terminal(S 3) + terminal(G 2) + terminal(D 4) + terminal(B 6) + ) + + ) + circuit(INV2PAIR + + # Circuit boundary + rect((0 -1640) (5740 7820)) + + # Nets with their geometries + net(1 name(BULK)) + net(2 name($I6)) + net(3 name($I5)) + net(4 name($I4)) + net(5 name($I3)) + net(6 name($I2)) + net(7 name($I1)) + + # Outgoing pins and their connections to nets + pin(1 name(BULK)) + pin(2) + pin(3) + pin(4) + pin(5) + pin(6) + pin(7) + + # Subcircuits and their connections + circuit(1 INV2 location(1700 800) + pin(0 7) + pin(1 5) + pin(2 4) + pin(3 3) + pin(4 2) + pin(5 1) + ) + circuit(2 INV2 location(4340 800) + pin(0 7) + pin(1 4) + pin(2 6) + pin(3 3) + pin(4 2) + pin(5 1) + ) + + ) + circuit(RINGO + + # Circuit boundary + rect((-1720 -2440) (26880 7820)) + + # Nets with their geometries + net(1 name(FB) + rect(metal1 (-1700 1620) (360 360)) + rect(via1 (-305 -305) (250 250)) + rect(via1 (23190 -250) (250 250)) + rect(metal2 (-23765 -325) (23840 400)) + rect(metal2_lbl (-22120 -200) (0 0)) + ) + net(2 name(OSC) + rect(via1 (24435 1675) (250 250)) + rect(metal2 (-325 -325) (400 400)) + rect(metal2_lbl (-200 -200) (0 0)) + ) + net(3 name(VDD) + rect(metal1 (-180 3900) (360 1120)) + rect(metal1 (2280 -1120) (360 1120)) + rect(metal1 (2280 -1120) (360 1120)) + rect(metal1 (2280 -1120) (360 1120)) + rect(metal1 (2280 -1120) (360 1120)) + rect(metal1 (2280 -1120) (360 1120)) + rect(metal1 (2280 -1120) (360 1120)) + rect(metal1 (2280 -1120) (360 1120)) + rect(metal1 (2280 -1120) (360 1120)) + rect(metal1 (2280 -1120) (360 1120)) + rect(metal2_lbl (-23940 -2220) (0 0)) + ) + net(4 name(VSS) + rect(metal1 (-180 -2220) (360 1120)) + rect(metal1 (2280 -1120) (360 1120)) + rect(metal1 (2280 -1120) (360 1120)) + rect(metal1 (2280 -1120) (360 1120)) + rect(metal1 (2280 -1120) (360 1120)) + rect(metal1 (2280 -1120) (360 1120)) + rect(metal1 (2280 -1120) (360 1120)) + rect(metal1 (2280 -1120) (360 1120)) + rect(metal1 (2280 -1120) (360 1120)) + rect(metal1 (2280 -1120) (360 1120)) + rect(metal2_lbl (-23940 1100) (0 0)) + ) + net(5 name($I25)) + net(6 name($I24)) + net(7 name($I23)) + net(8 name($I22)) + net(9 name($I17)) + net(10 name($I16)) + net(11 name($I15)) + net(12 name($I14)) + + # Outgoing pins and their connections to nets + pin(1 name(FB)) + pin(2 name(OSC)) + pin(3 name(VDD)) + pin(4 name(VSS)) + + # Subcircuits and their connections + circuit(1 INV2PAIR location(19420 -800) + pin(0 4) + pin(1 3) + pin(2 4) + pin(3 1) + pin(4 10) + pin(5 2) + pin(6 3) + ) + circuit(2 INV2PAIR location(-1700 -800) + pin(0 4) + pin(1 3) + pin(2 4) + pin(3 8) + pin(4 1) + pin(5 9) + pin(6 3) + ) + circuit(3 INV2PAIR location(14140 -800) + pin(0 4) + pin(1 3) + pin(2 4) + pin(3 5) + pin(4 11) + pin(5 10) + pin(6 3) + ) + circuit(4 INV2PAIR location(8860 -800) + pin(0 4) + pin(1 3) + pin(2 4) + pin(3 6) + pin(4 12) + pin(5 11) + pin(6 3) + ) + circuit(5 INV2PAIR location(3580 -800) + pin(0 4) + pin(1 3) + pin(2 4) + pin(3 7) + pin(4 9) + pin(5 12) + pin(6 3) + ) + + ) +) + +# Reference netlist +reference( + + # Device class section + class(PMOS MOS4) + class(NMOS MOS4) + + # Circuit section + # Circuits are the hierarchical building blocks of the netlist. + circuit(INV2 + + # Nets + net(1 name('1')) + net(2 name('2')) + net(3 name('3')) + net(4 name('4')) + net(5 name('5')) + net(6 name('6')) + + # Outgoing pins and their connections to nets + pin(1 name('1')) + pin(2 name('2')) + pin(3 name('3')) + pin(4 name('4')) + pin(5 name('5')) + pin(6 name('6')) + + # Devices and their connections + device(1 PMOS + name($1) + param(L 0.25) + param(W 3.5) + param(AS 1.4) + param(AD 1.4) + param(PS 6.85) + param(PD 6.85) + terminal(S 5) + terminal(G 2) + terminal(D 3) + terminal(B 1) + ) + device(2 NMOS + name($3) + param(L 0.25) + param(W 3.5) + param(AS 1.4) + param(AD 1.4) + param(PS 6.85) + param(PD 6.85) + terminal(S 4) + terminal(G 2) + terminal(D 3) + terminal(B 6) + ) + + ) + circuit(INV2PAIR + + # Nets + net(1 name('1')) + net(2 name('2')) + net(3 name('3')) + net(4 name('4')) + net(5 name('5')) + net(6 name('6')) + net(7 name('7')) + + # Outgoing pins and their connections to nets + pin(1 name('1')) + pin(2 name('2')) + pin(3 name('3')) + pin(4 name('4')) + pin(5 name('5')) + pin(6 name('6')) + pin(7 name('7')) + + # Subcircuits and their connections + circuit(1 INV2 name($1) + pin(0 7) + pin(1 5) + pin(2 4) + pin(3 3) + pin(4 2) + pin(5 1) + ) + circuit(2 INV2 name($2) + pin(0 7) + pin(1 4) + pin(2 6) + pin(3 3) + pin(4 2) + pin(5 1) + ) + + ) + circuit(RINGO + + # Nets + net(1 name('1')) + net(2 name('2')) + net(3 name('3')) + net(4 name('4')) + net(5 name('6')) + net(6 name('100')) + net(7 name('5')) + net(8 name('101')) + net(9 name('8')) + net(10 name('102')) + net(11 name('7')) + net(12 name('103')) + + # Outgoing pins and their connections to nets + pin(1 name('1')) + pin(2 name('2')) + pin(3 name('3')) + pin(4 name('4')) + + # Subcircuits and their connections + circuit(1 INV2PAIR name($1) + pin(0 4) + pin(1 3) + pin(2 4) + pin(3 1) + pin(4 5) + pin(5 2) + pin(6 3) + ) + circuit(2 INV2PAIR name($2) + pin(0 4) + pin(1 3) + pin(2 4) + pin(3 6) + pin(4 1) + pin(5 7) + pin(6 3) + ) + circuit(3 INV2PAIR name($3) + pin(0 4) + pin(1 3) + pin(2 4) + pin(3 8) + pin(4 7) + pin(5 9) + pin(6 3) + ) + circuit(4 INV2PAIR name($4) + pin(0 4) + pin(1 3) + pin(2 4) + pin(3 10) + pin(4 9) + pin(5 11) + pin(6 3) + ) + circuit(5 INV2PAIR name($5) + pin(0 4) + pin(1 3) + pin(2 4) + pin(3 12) + pin(4 11) + pin(5 5) + pin(6 3) + ) + + ) +) + +# Cross reference +xref( + circuit(INV2 INV2 match + xref( + net(1 1 match) + net(6 6 match) + net(2 2 match) + net(3 3 match) + net(5 5 match) + net(4 4 match) + pin(0 0 match) + pin(5 5 match) + pin(1 1 match) + pin(2 2 match) + pin(4 4 match) + pin(3 3 match) + device(2 2 match) + device(1 1 match) + ) + ) + circuit(INV2PAIR INV2PAIR match + xref( + net(2 2 match) + net(3 3 match) + net(4 4 match) + net(5 5 match) + net(6 6 match) + net(7 7 match) + net(1 1 match) + pin(1 1 match) + pin(2 2 match) + pin(3 3 match) + pin(4 4 match) + pin(5 5 match) + pin(6 6 match) + pin(0 0 match) + circuit(1 1 match) + circuit(2 2 match) + ) + ) + circuit(RINGO RINGO match + xref( + net(8 6 match) + net(7 8 match) + net(6 10 match) + net(5 12 match) + net(9 7 match) + net(10 5 match) + net(11 11 match) + net(12 9 match) + net(1 1 match) + net(2 2 match) + net(3 3 match) + net(4 4 match) + pin(0 0 match) + pin(1 1 match) + pin(2 2 match) + pin(3 3 match) + circuit(1 1 match) + circuit(2 2 match) + circuit(5 3 match) + circuit(4 4 match) + circuit(3 5 match) + ) + ) +) diff --git a/testdata/algo/lvs_test2b_au.lvsdb.2 b/testdata/algo/lvs_test2b_au.lvsdb.2 new file mode 100644 index 000000000..959c8d515 --- /dev/null +++ b/testdata/algo/lvs_test2b_au.lvsdb.2 @@ -0,0 +1,677 @@ +#%lvsdb-klayout + +# Layout +layout( + top(RINGO) + unit(0.001) + + # Layer section + # This section lists the mask layers (drawing or derived) and their connections. + + # Mask layers + layer(bulk) + layer(nwell '1/0') + layer(poly '3/0') + layer(poly_lbl '3/1') + layer(diff_cont '4/0') + layer(poly_cont '5/0') + layer(metal1 '6/0') + layer(metal1_lbl '6/1') + layer(via1 '7/0') + layer(metal2 '8/0') + layer(metal2_lbl '8/1') + layer(ntie) + layer(psd) + layer(ptie) + layer(nsd) + + # Mask layer connectivity + connect(nwell nwell ntie) + connect(poly poly poly_lbl poly_cont) + connect(poly_lbl poly) + connect(diff_cont diff_cont metal1 ntie psd ptie nsd) + connect(poly_cont poly poly_cont metal1) + connect(metal1 diff_cont poly_cont metal1 metal1_lbl via1) + connect(metal1_lbl metal1) + connect(via1 metal1 via1 metal2) + connect(metal2 via1 metal2 metal2_lbl) + connect(metal2_lbl metal2) + connect(ntie nwell diff_cont ntie) + connect(psd diff_cont psd) + connect(ptie diff_cont ptie) + connect(nsd diff_cont nsd) + + # Global nets and connectivity + global(bulk BULK) + global(ptie BULK) + + # Device class section + class(PMOS MOS4) + class(NMOS MOS4) + + # Device abstracts section + # Device abstracts list the pin shapes of the devices. + device(D$PMOS PMOS + terminal(S + rect(psd (-650 -875) (525 1750)) + ) + terminal(G + rect(poly (-125 -875) (250 1750)) + ) + terminal(D + rect(psd (125 -875) (550 1750)) + ) + terminal(B + rect(nwell (-125 -875) (250 1750)) + ) + ) + device(D$PMOS$1 PMOS + terminal(S + rect(psd (-675 -875) (550 1750)) + ) + terminal(G + rect(poly (-125 -875) (250 1750)) + ) + terminal(D + rect(psd (125 -875) (525 1750)) + ) + terminal(B + rect(nwell (-125 -875) (250 1750)) + ) + ) + device(D$NMOS NMOS + terminal(S + rect(nsd (-650 -875) (525 1750)) + ) + terminal(G + rect(poly (-125 -875) (250 1750)) + ) + terminal(D + rect(nsd (125 -875) (550 1750)) + ) + terminal(B + rect(bulk (-125 -875) (250 1750)) + ) + ) + device(D$NMOS$1 NMOS + terminal(S + rect(nsd (-675 -875) (550 1750)) + ) + terminal(G + rect(poly (-125 -875) (250 1750)) + ) + terminal(D + rect(nsd (125 -875) (525 1750)) + ) + terminal(B + rect(bulk (-125 -875) (250 1750)) + ) + ) + + # Circuit section + # Circuits are the hierarchical building blocks of the netlist. + circuit(INV2 + + # Circuit boundary + rect((-1700 -2440) (3100 7820)) + + # Nets with their geometries + net(1 name($1) + rect(nwell (-1400 1800) (2800 3580)) + rect(diff_cont (-1510 -650) (220 220)) + rect(ntie (-510 -450) (800 680)) + ) + net(2 name(IN) + rect(poly (-525 -250) (250 2500)) + rect(poly (-1425 -630) (2100 360)) + rect(poly (-125 -2230) (250 2500)) + rect(poly (-1050 -3850) (250 2400)) + rect(poly (550 1200) (250 2400)) + rect(poly (-250 -6000) (250 2400)) + rect(poly (-1050 1200) (250 2400)) + rect(poly_lbl (-525 -2600) (0 0)) + rect(poly_cont (-830 -110) (220 220)) + ) + net(3 name(OUT) + rect(diff_cont (-910 90) (220 220)) + rect(diff_cont (-220 -620) (220 220)) + rect(diff_cont (-220 -620) (220 220)) + rect(diff_cont (-220 -620) (220 220)) + rect(diff_cont (1380 3380) (220 220)) + rect(diff_cont (-220 180) (220 220)) + rect(diff_cont (-220 180) (220 220)) + rect(diff_cont (-220 180) (220 220)) + rect(diff_cont (-220 -3820) (220 220)) + rect(diff_cont (-220 -620) (220 220)) + rect(diff_cont (-220 -620) (220 220)) + rect(diff_cont (-220 -620) (220 220)) + rect(diff_cont (-1820 3380) (220 220)) + rect(diff_cont (-220 180) (220 220)) + rect(diff_cont (-220 180) (220 220)) + rect(diff_cont (-220 180) (220 220)) + rect(metal1 (1310 -3710) (360 2220)) + rect(metal1 (-1900 -800) (2220 360)) + rect(metal1 (-2280 -2400) (360 2840)) + rect(metal1 (-360 -3600) (360 1560)) + rect(metal1 (1240 2040) (360 1560)) + rect(metal1 (-360 -5160) (360 1560)) + rect(metal1 (-1960 2040) (360 1560)) + rect(metal1_lbl (1420 -2180) (0 0)) + rect(psd (-1850 525) (525 1750)) + rect(psd (1050 -1750) (525 1750)) + rect(nsd (-2100 -5350) (525 1750)) + rect(nsd (1050 -1750) (525 1750)) + ) + net(4 name(VSS) + rect(diff_cont (-110 90) (220 220)) + rect(diff_cont (-220 -620) (220 220)) + rect(diff_cont (-220 -620) (220 220)) + rect(diff_cont (-220 -620) (220 220)) + rect(diff_cont (-220 980) (220 220)) + rect(diff_cont (-220 -620) (220 220)) + rect(diff_cont (-220 -620) (220 220)) + rect(diff_cont (-220 -620) (220 220)) + rect(metal1 (-290 -290) (360 1560)) + rect(metal1 (-360 -1560) (360 1560)) + rect(via1 (-305 -705) (250 250)) + rect(via1 (-250 150) (250 250)) + rect(via1 (-250 -1450) (250 250)) + rect(via1 (-250 150) (250 250)) + rect(metal2 (-1525 -775) (2800 1700)) + rect(metal2_lbl (-160 -540) (0 0)) + rect(nsd (-1515 -1185) (550 1750)) + ) + net(5 name(VDD) + rect(diff_cont (-110 2490) (220 220)) + rect(diff_cont (-220 180) (220 220)) + rect(diff_cont (-220 180) (220 220)) + rect(diff_cont (-220 180) (220 220)) + rect(diff_cont (-220 -1420) (220 220)) + rect(diff_cont (-220 180) (220 220)) + rect(diff_cont (-220 180) (220 220)) + rect(diff_cont (-220 180) (220 220)) + rect(metal1 (-290 -1490) (360 1560)) + rect(metal1 (-360 -1560) (360 1560)) + rect(via1 (-305 -1505) (250 250)) + rect(via1 (-250 150) (250 250)) + rect(via1 (-250 150) (250 250)) + rect(via1 (-250 150) (250 250)) + rect(metal2 (-1525 -1575) (2800 1700)) + rect(metal2_lbl (-150 -1250) (0 0)) + rect(psd (-1525 -475) (550 1750)) + ) + net(6 name(BULK) + rect(diff_cont (-110 -2160) (220 220)) + rect(ptie (-510 -450) (800 680)) + ) + + # Outgoing pins and their connections to nets + pin(1) + pin(2 name(IN)) + pin(3 name(OUT)) + pin(4 name(VSS)) + pin(5 name(VDD)) + pin(6 name(BULK)) + + # Devices and their connections + device(1 D$PMOS + device(D$PMOS$1 location(800 0)) + connect(0 S S) + connect(1 S D) + connect(0 G G) + connect(1 G G) + connect(0 D D) + connect(1 D S) + connect(0 B B) + connect(1 B B) + location(-400 3200) + param(L 0.25) + param(W 3.5) + param(AS 1.4) + param(AD 1.4) + param(PS 6.85) + param(PD 6.85) + terminal(S 3) + terminal(G 2) + terminal(D 5) + terminal(B 1) + ) + device(2 D$NMOS + device(D$NMOS$1 location(800 0)) + connect(0 S S) + connect(1 S D) + connect(0 G G) + connect(1 G G) + connect(0 D D) + connect(1 D S) + connect(0 B B) + connect(1 B B) + location(-400 -400) + param(L 0.25) + param(W 3.5) + param(AS 1.4) + param(AD 1.4) + param(PS 6.85) + param(PD 6.85) + terminal(S 3) + terminal(G 2) + terminal(D 4) + terminal(B 6) + ) + + ) + circuit(INV2PAIR + + # Circuit boundary + rect((0 -1640) (5740 7820)) + + # Nets with their geometries + net(1 name(BULK)) + net(2 name($I6)) + net(3 name($I5)) + net(4 name($I4)) + net(5 name($I3)) + net(6 name($I2)) + net(7 name($I1)) + + # Outgoing pins and their connections to nets + pin(1 name(BULK)) + pin(2) + pin(3) + pin(4) + pin(5) + pin(6) + pin(7) + + # Subcircuits and their connections + circuit(1 INV2 location(1700 800) + pin(0 7) + pin(1 5) + pin(2 4) + pin(3 3) + pin(4 2) + pin(5 1) + ) + circuit(2 INV2 location(4340 800) + pin(0 7) + pin(1 4) + pin(2 6) + pin(3 3) + pin(4 2) + pin(5 1) + ) + + ) + circuit(RINGO + + # Circuit boundary + rect((-1720 -2440) (26880 7820)) + + # Nets with their geometries + net(1 name(FB) + rect(metal1 (-1700 1620) (360 360)) + rect(via1 (-305 -305) (250 250)) + rect(via1 (23190 -250) (250 250)) + rect(metal2 (-23765 -325) (23840 400)) + rect(metal2_lbl (-22120 -200) (0 0)) + ) + net(2 name(OSC) + rect(via1 (24435 1675) (250 250)) + rect(metal2 (-325 -325) (400 400)) + rect(metal2_lbl (-200 -200) (0 0)) + ) + net(3 name(VDD) + rect(metal1 (-180 3900) (360 1120)) + rect(metal1 (2280 -1120) (360 1120)) + rect(metal1 (2280 -1120) (360 1120)) + rect(metal1 (2280 -1120) (360 1120)) + rect(metal1 (2280 -1120) (360 1120)) + rect(metal1 (2280 -1120) (360 1120)) + rect(metal1 (2280 -1120) (360 1120)) + rect(metal1 (2280 -1120) (360 1120)) + rect(metal1 (2280 -1120) (360 1120)) + rect(metal1 (2280 -1120) (360 1120)) + rect(metal2_lbl (-23940 -2220) (0 0)) + ) + net(4 name(VSS) + rect(metal1 (-180 -2220) (360 1120)) + rect(metal1 (2280 -1120) (360 1120)) + rect(metal1 (2280 -1120) (360 1120)) + rect(metal1 (2280 -1120) (360 1120)) + rect(metal1 (2280 -1120) (360 1120)) + rect(metal1 (2280 -1120) (360 1120)) + rect(metal1 (2280 -1120) (360 1120)) + rect(metal1 (2280 -1120) (360 1120)) + rect(metal1 (2280 -1120) (360 1120)) + rect(metal1 (2280 -1120) (360 1120)) + rect(metal2_lbl (-23940 1100) (0 0)) + ) + net(5 name($I25)) + net(6 name($I24)) + net(7 name($I23)) + net(8 name($I22)) + net(9 name($I17)) + net(10 name($I16)) + net(11 name($I15)) + net(12 name($I14)) + + # Outgoing pins and their connections to nets + pin(1 name(FB)) + pin(2 name(OSC)) + pin(3 name(VDD)) + pin(4 name(VSS)) + + # Subcircuits and their connections + circuit(1 INV2PAIR location(19420 -800) + pin(0 4) + pin(1 3) + pin(2 4) + pin(3 1) + pin(4 10) + pin(5 2) + pin(6 3) + ) + circuit(2 INV2PAIR location(-1700 -800) + pin(0 4) + pin(1 3) + pin(2 4) + pin(3 8) + pin(4 1) + pin(5 9) + pin(6 3) + ) + circuit(3 INV2PAIR location(14140 -800) + pin(0 4) + pin(1 3) + pin(2 4) + pin(3 5) + pin(4 11) + pin(5 10) + pin(6 3) + ) + circuit(4 INV2PAIR location(8860 -800) + pin(0 4) + pin(1 3) + pin(2 4) + pin(3 6) + pin(4 12) + pin(5 11) + pin(6 3) + ) + circuit(5 INV2PAIR location(3580 -800) + pin(0 4) + pin(1 3) + pin(2 4) + pin(3 7) + pin(4 9) + pin(5 12) + pin(6 3) + ) + + ) +) + +# Reference netlist +reference( + + # Device class section + class(PMOS MOS4) + class(NMOS MOS4) + + # Circuit section + # Circuits are the hierarchical building blocks of the netlist. + circuit(INV2 + + # Nets + net(1 name('1')) + net(2 name('2')) + net(3 name('3')) + net(4 name('4')) + net(5 name('5')) + net(6 name('6')) + + # Outgoing pins and their connections to nets + pin(1 name('1')) + pin(2 name('2')) + pin(3 name('3')) + pin(4 name('4')) + pin(5 name('5')) + pin(6 name('6')) + + # Devices and their connections + device(1 PMOS + name($1) + param(L 0.25) + param(W 3.5) + param(AS 1.4) + param(AD 1.4) + param(PS 6.85) + param(PD 6.85) + terminal(S 5) + terminal(G 2) + terminal(D 3) + terminal(B 1) + ) + device(2 NMOS + name($3) + param(L 0.25) + param(W 3.5) + param(AS 1.4) + param(AD 1.4) + param(PS 6.85) + param(PD 6.85) + terminal(S 4) + terminal(G 2) + terminal(D 3) + terminal(B 6) + ) + + ) + circuit(INV2PAIR + + # Nets + net(1 name('1')) + net(2 name('2')) + net(3 name('3')) + net(4 name('4')) + net(5 name('5')) + net(6 name('6')) + net(7 name('7')) + + # Outgoing pins and their connections to nets + pin(1 name('1')) + pin(2 name('2')) + pin(3 name('3')) + pin(4 name('4')) + pin(5 name('5')) + pin(6 name('6')) + pin(7 name('7')) + + # Subcircuits and their connections + circuit(1 INV2 name($2) + pin(0 7) + pin(1 4) + pin(2 6) + pin(3 3) + pin(4 2) + pin(5 1) + ) + + ) + circuit(INV2PAIRX + + # Nets + net(1 name('1')) + net(2 name('2')) + net(3 name('3')) + net(4 name('4')) + net(5 name('5')) + net(6 name('6')) + net(7 name('7')) + + # Outgoing pins and their connections to nets + pin(1 name('1')) + pin(2 name('2')) + pin(3 name('3')) + pin(4 name('4')) + pin(5 name('5')) + pin(6 name('6')) + pin(7 name('7')) + + # Subcircuits and their connections + circuit(1 INV2 name($2) + pin(0 7) + pin(1 4) + pin(2 6) + pin(3 3) + pin(4 2) + pin(5 1) + ) + + ) + circuit(RINGO + + # Nets + net(1 name('1')) + net(2 name('2')) + net(3 name('3')) + net(4 name('4')) + net(5 name('6')) + net(6 name('5')) + net(7 name('101')) + net(8 name('8')) + net(9 name('102')) + net(10 name('7')) + net(11 name('103')) + + # Outgoing pins and their connections to nets + pin(1 name('1')) + pin(2 name('2')) + pin(3 name('3')) + pin(4 name('4')) + + # Subcircuits and their connections + circuit(1 INV2PAIR name($1) + pin(0 4) + pin(1 3) + pin(2 4) + pin(3 1) + pin(4 5) + pin(5 2) + pin(6 3) + ) + circuit(2 INV2PAIR name($2) + pin(0 4) + pin(1 3) + pin(2 4) + pin(3 1) + pin(4 1) + pin(5 6) + pin(6 3) + ) + circuit(3 INV2PAIR name($3) + pin(0 4) + pin(1 3) + pin(2 4) + pin(3 7) + pin(4 6) + pin(5 8) + pin(6 3) + ) + circuit(4 INV2PAIR name($4) + pin(0 4) + pin(1 3) + pin(2 4) + pin(3 9) + pin(4 8) + pin(5 10) + pin(6 3) + ) + circuit(5 INV2PAIR name($5) + pin(0 4) + pin(1 3) + pin(2 4) + pin(3 11) + pin(4 10) + pin(5 5) + pin(6 3) + ) + + ) +) + +# Cross reference +xref( + circuit(() INV2PAIRX mismatch + xref( + ) + ) + circuit(INV2 INV2 match + xref( + net(1 1 match) + net(6 6 match) + net(2 2 match) + net(3 3 match) + net(5 5 match) + net(4 4 match) + pin(0 0 match) + pin(5 5 match) + pin(1 1 match) + pin(2 2 match) + pin(4 4 match) + pin(3 3 match) + device(2 2 match) + device(1 1 match) + ) + ) + circuit(INV2PAIR INV2PAIR nomatch + xref( + net(2 2 mismatch) + net(3 3 mismatch) + net(4 4 mismatch) + net(5 5 mismatch) + net(6 6 match) + net(7 7 mismatch) + net(1 1 mismatch) + pin(1 1 match) + pin(2 2 match) + pin(3 3 match) + pin(4 4 match) + pin(5 5 match) + pin(6 6 match) + pin(0 0 match) + circuit(1 () mismatch) + circuit(2 1 match) + ) + ) + circuit(RINGO RINGO nomatch + log( + entry(error description('Net $I22 is not matching any net from reference netlist')) + entry(error description('Net FB is not matching any net from reference netlist')) + ) + xref( + net(8 () mismatch) + net(7 7 match) + net(6 9 match) + net(5 11 match) + net(9 6 match) + net(10 5 match) + net(11 10 match) + net(12 8 match) + net(1 1 mismatch) + net(2 2 match) + net(3 3 match) + net(4 4 match) + pin(0 0 match) + pin(1 1 match) + pin(2 2 match) + pin(3 3 match) + circuit(() 2 mismatch) + circuit(2 () mismatch) + circuit(1 1 match) + circuit(5 3 match) + circuit(4 4 match) + circuit(3 5 match) + ) + ) +) diff --git a/testdata/lvs/ringo_simple_device_scaling.lvsdb.2 b/testdata/lvs/ringo_simple_device_scaling.lvsdb.2 new file mode 100644 index 000000000..7d01341e7 --- /dev/null +++ b/testdata/lvs/ringo_simple_device_scaling.lvsdb.2 @@ -0,0 +1,908 @@ +#%lvsdb-klayout + +# Layout +layout( + top(RINGO) + unit(0.001) + + # Layer section + # This section lists the mask layers (drawing or derived) and their connections. + + # Mask layers + layer(l3 '1/0') + layer(l4 '5/0') + layer(l8 '8/0') + layer(l11 '9/0') + layer(l12 '10/0') + layer(l13 '11/0') + layer(l7) + layer(l2) + layer(l9) + layer(l6) + layer(l10) + + # Mask layer connectivity + connect(l3 l3 l9) + connect(l4 l4 l8) + connect(l8 l4 l8 l11 l2 l9 l6 l10) + connect(l11 l8 l11 l12) + connect(l12 l11 l12 l13) + connect(l13 l12 l13) + connect(l7 l7) + connect(l2 l8 l2) + connect(l9 l3 l8 l9) + connect(l6 l8 l6) + connect(l10 l8 l10) + + # Global nets and connectivity + global(l7 SUBSTRATE) + global(l10 SUBSTRATE) + + # Device class section + class(PMOS MOS4) + class(NMOS MOS4) + + # Device abstracts section + # Device abstracts list the pin shapes of the devices. + device(D$PMOS PMOS + terminal(S + rect(l2 (-550 -750) (425 1500)) + ) + terminal(G + rect(l4 (-125 -750) (250 1500)) + ) + terminal(D + rect(l2 (125 -750) (450 1500)) + ) + terminal(B + rect(l3 (-125 -750) (250 1500)) + ) + ) + device(D$PMOS$1 PMOS + terminal(S + rect(l2 (-575 -750) (450 1500)) + ) + terminal(G + rect(l4 (-125 -750) (250 1500)) + ) + terminal(D + rect(l2 (125 -750) (425 1500)) + ) + terminal(B + rect(l3 (-125 -750) (250 1500)) + ) + ) + device(D$PMOS$2 PMOS + terminal(S + rect(l2 (-550 -750) (425 1500)) + ) + terminal(G + rect(l4 (-125 -750) (250 1500)) + ) + terminal(D + rect(l2 (125 -750) (425 1500)) + ) + terminal(B + rect(l3 (-125 -750) (250 1500)) + ) + ) + device(D$NMOS NMOS + terminal(S + rect(l6 (-550 -475) (425 950)) + ) + terminal(G + rect(l4 (-125 -475) (250 950)) + ) + terminal(D + rect(l6 (125 -475) (450 950)) + ) + terminal(B + rect(l7 (-125 -475) (250 950)) + ) + ) + device(D$NMOS$1 NMOS + terminal(S + rect(l6 (-575 -475) (450 950)) + ) + terminal(G + rect(l4 (-125 -475) (250 950)) + ) + terminal(D + rect(l6 (125 -475) (425 950)) + ) + terminal(B + rect(l7 (-125 -475) (250 950)) + ) + ) + device(D$NMOS$2 NMOS + terminal(S + rect(l6 (-550 -475) (425 950)) + ) + terminal(G + rect(l4 (-125 -475) (250 950)) + ) + terminal(D + rect(l6 (125 -475) (425 950)) + ) + terminal(B + rect(l7 (-125 -475) (250 950)) + ) + ) + + # Circuit section + # Circuits are the hierarchical building blocks of the netlist. + circuit(ND2X1 + + # Circuit boundary + rect((-100 400) (2600 7600)) + + # Nets with their geometries + net(1 name(VDD) + rect(l8 (1110 5160) (180 180)) + rect(l8 (-180 920) (180 180)) + rect(l8 (-180 -730) (180 180)) + rect(l11 (-240 -790) (300 1700)) + rect(l11 (-1350 0) (2400 800)) + rect(l11 (-1150 -400) (0 0)) + rect(l2 (-275 -2150) (425 1500)) + rect(l2 (-400 -1500) (425 1500)) + ) + net(2 name(OUT) + rect(l8 (1810 1770) (180 180)) + rect(l8 (-180 370) (180 180)) + rect(l8 (-1580 3760) (180 180)) + rect(l8 (-180 -730) (180 180)) + rect(l8 (-180 -730) (180 180)) + rect(l8 (1220 920) (180 180)) + rect(l8 (-180 -1280) (180 180)) + rect(l8 (-180 370) (180 180)) + polygon(l11 (-240 -4180) (0 1390) (490 0) (0 -300) (-190 0) (0 -1090)) + rect(l11 (-110 1390) (300 1400)) + polygon(l11 (-1890 0) (0 600) (300 0) (0 -300) (1590 0) (0 -300)) + rect(l11 (-140 -500) (0 0)) + rect(l11 (-1750 1100) (300 1400)) + rect(l11 (1100 -1700) (300 300)) + rect(l11 (-300 0) (300 1400)) + rect(l2 (-375 -1450) (425 1500)) + rect(l2 (-1800 -1500) (425 1500)) + rect(l6 (950 -4890) (425 950)) + ) + net(3 name(VSS) + rect(l8 (410 1770) (180 180)) + rect(l8 (-180 370) (180 180)) + rect(l11 (-240 -1300) (300 1360)) + rect(l11 (-650 -2160) (2400 800)) + rect(l11 (-1150 -400) (0 0)) + rect(l6 (-950 860) (425 950)) + ) + net(4 name($4) + rect(l3 (-100 4500) (2600 3500)) + ) + net(5 name(B) + rect(l4 (1425 2860) (250 1940)) + rect(l4 (-345 -950) (300 300)) + rect(l4 (-205 650) (250 2000)) + rect(l4 (-250 -2000) (250 2000)) + rect(l4 (-250 -5390) (250 1450)) + rect(l8 (-285 1050) (180 180)) + rect(l11 (-70 -90) (0 0)) + rect(l11 (-170 -150) (300 300)) + ) + net(6 name(A) + rect(l4 (725 2860) (250 1940)) + rect(l4 (-325 -1850) (300 300)) + rect(l4 (-225 1550) (250 2000)) + rect(l4 (-250 -2000) (250 2000)) + rect(l4 (-250 -5390) (250 1450)) + rect(l8 (-265 150) (180 180)) + rect(l11 (-90 -90) (0 0)) + rect(l11 (-150 -150) (300 300)) + ) + net(7 name(SUBSTRATE)) + net(8 name($I5) + rect(l6 (975 1660) (425 950)) + rect(l6 (-400 -950) (425 950)) + ) + + # Outgoing pins and their connections to nets + pin(1 name(VDD)) + pin(2 name(OUT)) + pin(3 name(VSS)) + pin(4) + pin(5 name(B)) + pin(6 name(A)) + pin(7 name(SUBSTRATE)) + + # Devices and their connections + device(1 D$PMOS + location(850 5800) + param(L 0.5) + param(W 3) + param(AS 2.55) + param(AD 1.35) + param(PS 7.7) + param(PD 3.9) + terminal(S 2) + terminal(G 6) + terminal(D 1) + terminal(B 4) + ) + device(2 D$PMOS$1 + location(1550 5800) + param(L 0.5) + param(W 3) + param(AS 1.35) + param(AD 2.55) + param(PS 3.9) + param(PD 7.7) + terminal(S 1) + terminal(G 5) + terminal(D 2) + terminal(B 4) + ) + device(3 D$NMOS + location(850 2135) + param(L 0.5) + param(W 1.9) + param(AS 1.615) + param(AD 0.855) + param(PS 5.5) + param(PD 2.8) + terminal(S 3) + terminal(G 6) + terminal(D 8) + terminal(B 7) + ) + device(4 D$NMOS$1 + location(1550 2135) + param(L 0.5) + param(W 1.9) + param(AS 0.855) + param(AD 1.615) + param(PS 2.8) + param(PD 5.5) + terminal(S 8) + terminal(G 5) + terminal(D 2) + terminal(B 7) + ) + + ) + circuit(INVX1 + + # Circuit boundary + rect((-100 400) (2000 7600)) + + # Nets with their geometries + net(1 name(VDD) + rect(l8 (410 6260) (180 180)) + rect(l8 (-180 -730) (180 180)) + rect(l8 (-180 -730) (180 180)) + rect(l11 (-240 -240) (300 1400)) + rect(l11 (-650 300) (1800 800)) + rect(l11 (-1450 -1100) (300 300)) + rect(l11 (300 400) (0 0)) + rect(l2 (-650 -2150) (425 1500)) + ) + net(2 name(OUT) + rect(l8 (1110 5160) (180 180)) + rect(l8 (-180 920) (180 180)) + rect(l8 (-180 -730) (180 180)) + rect(l8 (-180 -4120) (180 180)) + rect(l8 (-180 370) (180 180)) + rect(l11 (-240 -790) (300 4790)) + rect(l11 (-150 -2500) (0 0)) + rect(l2 (-225 1050) (425 1500)) + rect(l6 (-425 -4890) (425 950)) + ) + net(3 name(VSS) + rect(l8 (410 1770) (180 180)) + rect(l8 (-180 370) (180 180)) + rect(l11 (-240 -1300) (300 1360)) + rect(l11 (-650 -2160) (1800 800)) + rect(l11 (-850 -400) (0 0)) + rect(l6 (-650 860) (425 950)) + ) + net(4 name($4) + rect(l3 (-100 4500) (2000 3500)) + ) + net(5 name(IN) + rect(l4 (725 2860) (250 1940)) + rect(l4 (-525 -1850) (300 300)) + rect(l4 (-25 1550) (250 2000)) + rect(l4 (-250 -2000) (250 2000)) + rect(l4 (-250 -5390) (250 1450)) + rect(l8 (-465 150) (180 180)) + rect(l11 (-90 -90) (0 0)) + rect(l11 (-150 -150) (300 300)) + ) + net(6 name(SUBSTRATE)) + + # Outgoing pins and their connections to nets + pin(1 name(VDD)) + pin(2 name(OUT)) + pin(3 name(VSS)) + pin(4) + pin(5 name(IN)) + pin(6 name(SUBSTRATE)) + + # Devices and their connections + device(1 D$PMOS$2 + location(850 5800) + param(L 0.5) + param(W 3) + param(AS 2.55) + param(AD 2.55) + param(PS 7.7) + param(PD 7.7) + terminal(S 1) + terminal(G 5) + terminal(D 2) + terminal(B 4) + ) + device(2 D$NMOS$2 + location(850 2135) + param(L 0.5) + param(W 1.9) + param(AS 1.615) + param(AD 1.615) + param(PS 5.5) + param(PD 5.5) + terminal(S 3) + terminal(G 5) + terminal(D 2) + terminal(B 6) + ) + + ) + circuit(RINGO + + # Circuit boundary + rect((0 350) (25800 7650)) + + # Nets with their geometries + net(1 name($1) + rect(l11 (4040 2950) (610 300)) + ) + net(2 name($2) + rect(l11 (5550 2950) (900 300)) + ) + net(3 name($3) + rect(l11 (7350 2950) (900 300)) + ) + net(4 name($4) + rect(l11 (9150 2950) (900 300)) + ) + net(5 name($5) + rect(l11 (10950 2950) (900 300)) + ) + net(6 name($6) + rect(l11 (12750 2950) (900 300)) + ) + net(7 name($7) + rect(l11 (14550 2950) (900 300)) + ) + net(8 name($8) + rect(l11 (16350 2950) (900 300)) + ) + net(9 name($9) + rect(l11 (18150 2950) (900 300)) + ) + net(10 name($10) + rect(l11 (19950 2950) (900 300)) + ) + net(11 name(FB) + rect(l11 (21750 2950) (900 300)) + rect(l11 (-19530 590) (320 320)) + rect(l11 (17820 -320) (320 320)) + rect(l12 (-18400 -260) (200 200)) + rect(l12 (17940 -200) (200 200)) + rect(l13 (-18040 -300) (17740 400)) + rect(l13 (-17920 -200) (0 0)) + rect(l13 (-220 -200) (400 400)) + rect(l13 (17740 -400) (400 400)) + ) + net(12 name(VDD) + rect(l3 (0 4500) (600 3500)) + rect(l3 (23300 -3500) (1400 3500)) + rect(l3 (-100 -3500) (600 3500)) + rect(l3 (-25300 -3500) (1400 3500)) + rect(l8 (22610 -1240) (180 180)) + rect(l8 (-180 370) (180 180)) + rect(l8 (-180 -1280) (180 180)) + rect(l8 (-23580 370) (180 180)) + rect(l8 (-180 370) (180 180)) + rect(l8 (-180 -1280) (180 180)) + rect(l11 (1660 860) (0 0)) + rect(l11 (-2950 -450) (600 800)) + rect(l11 (23400 -800) (1200 800)) + rect(l11 (-750 -1450) (300 1400)) + rect(l11 (-100 -350) (0 0)) + rect(l11 (550 -400) (600 800)) + rect(l11 (-25200 -800) (1200 800)) + rect(l11 (-750 -1450) (300 1400)) + rect(l11 (-100 -350) (0 0)) + rect(l9 (23100 -1100) (500 1500)) + rect(l9 (-23900 -1500) (500 1500)) + ) + net(13 name(OUT) + rect(l11 (23440 3840) (320 320)) + rect(l12 (-260 -260) (200 200)) + rect(l13 (-100 -100) (0 0)) + rect(l13 (-200 -200) (400 400)) + ) + net(14 name(ENABLE) + rect(l11 (2440 2940) (320 320)) + rect(l12 (-260 -260) (200 200)) + rect(l13 (-100 -100) (0 0)) + rect(l13 (-200 -200) (400 400)) + ) + net(15 name(VSS) + rect(l8 (24510 1610) (180 180)) + rect(l8 (-180 -1280) (180 180)) + rect(l8 (-180 370) (180 180)) + rect(l8 (-23580 370) (180 180)) + rect(l8 (-180 -1280) (180 180)) + rect(l8 (-180 370) (180 180)) + rect(l11 (1660 -390) (0 0)) + rect(l11 (21500 -400) (300 1400)) + rect(l11 (-750 -1450) (1200 800)) + rect(l11 (-550 -400) (0 0)) + rect(l11 (550 -400) (600 800)) + rect(l11 (-25800 -800) (600 800)) + rect(l11 (450 -750) (300 1400)) + rect(l11 (-750 -1450) (1200 800)) + rect(l11 (-550 -400) (0 0)) + rect(l10 (23100 -400) (500 1500)) + rect(l10 (-23900 -1500) (500 1500)) + ) + + # Outgoing pins and their connections to nets + pin(11 name(FB)) + pin(12 name(VDD)) + pin(13 name(OUT)) + pin(14 name(ENABLE)) + pin(15 name(VSS)) + + # Subcircuits and their connections + circuit(1 ND2X1 location(1800 0) + pin(0 12) + pin(1 1) + pin(2 15) + pin(3 12) + pin(4 11) + pin(5 14) + pin(6 15) + ) + circuit(2 INVX1 location(4200 0) + pin(0 12) + pin(1 2) + pin(2 15) + pin(3 12) + pin(4 1) + pin(5 15) + ) + circuit(3 INVX1 location(6000 0) + pin(0 12) + pin(1 3) + pin(2 15) + pin(3 12) + pin(4 2) + pin(5 15) + ) + circuit(4 INVX1 location(7800 0) + pin(0 12) + pin(1 4) + pin(2 15) + pin(3 12) + pin(4 3) + pin(5 15) + ) + circuit(5 INVX1 location(9600 0) + pin(0 12) + pin(1 5) + pin(2 15) + pin(3 12) + pin(4 4) + pin(5 15) + ) + circuit(6 INVX1 location(11400 0) + pin(0 12) + pin(1 6) + pin(2 15) + pin(3 12) + pin(4 5) + pin(5 15) + ) + circuit(7 INVX1 location(13200 0) + pin(0 12) + pin(1 7) + pin(2 15) + pin(3 12) + pin(4 6) + pin(5 15) + ) + circuit(8 INVX1 location(15000 0) + pin(0 12) + pin(1 8) + pin(2 15) + pin(3 12) + pin(4 7) + pin(5 15) + ) + circuit(9 INVX1 location(16800 0) + pin(0 12) + pin(1 9) + pin(2 15) + pin(3 12) + pin(4 8) + pin(5 15) + ) + circuit(10 INVX1 location(18600 0) + pin(0 12) + pin(1 10) + pin(2 15) + pin(3 12) + pin(4 9) + pin(5 15) + ) + circuit(11 INVX1 location(20400 0) + pin(0 12) + pin(1 11) + pin(2 15) + pin(3 12) + pin(4 10) + pin(5 15) + ) + circuit(12 INVX1 location(22200 0) + pin(0 12) + pin(1 13) + pin(2 15) + pin(3 12) + pin(4 11) + pin(5 15) + ) + + ) +) + +# Reference netlist +reference( + + # Device class section + class(PMOS MOS4) + class(NMOS MOS4) + + # Circuit section + # Circuits are the hierarchical building blocks of the netlist. + circuit(ND2X1 + + # Nets + net(1 name(VDD)) + net(2 name(OUT)) + net(3 name(VSS)) + net(4 name(NWELL)) + net(5 name(B)) + net(6 name(A)) + net(7 name(BULK)) + net(8 name('1')) + + # Outgoing pins and their connections to nets + pin(1 name(VDD)) + pin(2 name(OUT)) + pin(3 name(VSS)) + pin(4 name(NWELL)) + pin(5 name(B)) + pin(6 name(A)) + pin(7 name(BULK)) + + # Devices and their connections + device(1 PMOS + name($1) + param(L 0.5) + param(W 3) + param(AS 0) + param(AD 0) + param(PS 0) + param(PD 0) + terminal(S 1) + terminal(G 6) + terminal(D 2) + terminal(B 4) + ) + device(2 PMOS + name($2) + param(L 0.5) + param(W 3) + param(AS 0) + param(AD 0) + param(PS 0) + param(PD 0) + terminal(S 2) + terminal(G 5) + terminal(D 1) + terminal(B 4) + ) + device(3 NMOS + name($3) + param(L 0.5) + param(W 1.9) + param(AS 0) + param(AD 0) + param(PS 0) + param(PD 0) + terminal(S 8) + terminal(G 6) + terminal(D 3) + terminal(B 7) + ) + device(4 NMOS + name($4) + param(L 0.5) + param(W 1.9) + param(AS 0) + param(AD 0) + param(PS 0) + param(PD 0) + terminal(S 2) + terminal(G 5) + terminal(D 8) + terminal(B 7) + ) + + ) + circuit(INVX1 + + # Nets + net(1 name(VDD)) + net(2 name(OUT)) + net(3 name(VSS)) + net(4 name(NWELL)) + net(5 name(IN)) + net(6 name(BULK)) + + # Outgoing pins and their connections to nets + pin(1 name(VDD)) + pin(2 name(OUT)) + pin(3 name(VSS)) + pin(4 name(NWELL)) + pin(5 name(IN)) + pin(6 name(BULK)) + + # Devices and their connections + device(1 PMOS + name($1) + param(L 0.5) + param(W 3) + param(AS 0) + param(AD 0) + param(PS 0) + param(PD 0) + terminal(S 2) + terminal(G 5) + terminal(D 1) + terminal(B 4) + ) + device(2 NMOS + name($2) + param(L 0.5) + param(W 1.9) + param(AS 0) + param(AD 0) + param(PS 0) + param(PD 0) + terminal(S 2) + terminal(G 5) + terminal(D 3) + terminal(B 6) + ) + + ) + circuit(RINGO + + # Nets + net(1 name(VSS)) + net(2 name(VDD)) + net(3 name(FB)) + net(4 name(ENABLE)) + net(5 name(OUT)) + net(6 name('1')) + net(7 name('2')) + net(8 name('3')) + net(9 name('4')) + net(10 name('5')) + net(11 name('6')) + net(12 name('7')) + net(13 name('8')) + net(14 name('9')) + net(15 name('10')) + + # Outgoing pins and their connections to nets + pin(1 name(VSS)) + pin(2 name(VDD)) + pin(3 name(FB)) + pin(4 name(ENABLE)) + pin(5 name(OUT)) + + # Subcircuits and their connections + circuit(1 ND2X1 name($1) + pin(0 2) + pin(1 6) + pin(2 1) + pin(3 2) + pin(4 3) + pin(5 4) + pin(6 1) + ) + circuit(2 INVX1 name($2) + pin(0 2) + pin(1 7) + pin(2 1) + pin(3 2) + pin(4 6) + pin(5 1) + ) + circuit(3 INVX1 name($3) + pin(0 2) + pin(1 8) + pin(2 1) + pin(3 2) + pin(4 7) + pin(5 1) + ) + circuit(4 INVX1 name($4) + pin(0 2) + pin(1 9) + pin(2 1) + pin(3 2) + pin(4 8) + pin(5 1) + ) + circuit(5 INVX1 name($5) + pin(0 2) + pin(1 10) + pin(2 1) + pin(3 2) + pin(4 9) + pin(5 1) + ) + circuit(6 INVX1 name($6) + pin(0 2) + pin(1 11) + pin(2 1) + pin(3 2) + pin(4 10) + pin(5 1) + ) + circuit(7 INVX1 name($7) + pin(0 2) + pin(1 12) + pin(2 1) + pin(3 2) + pin(4 11) + pin(5 1) + ) + circuit(8 INVX1 name($8) + pin(0 2) + pin(1 13) + pin(2 1) + pin(3 2) + pin(4 12) + pin(5 1) + ) + circuit(9 INVX1 name($9) + pin(0 2) + pin(1 14) + pin(2 1) + pin(3 2) + pin(4 13) + pin(5 1) + ) + circuit(10 INVX1 name($10) + pin(0 2) + pin(1 15) + pin(2 1) + pin(3 2) + pin(4 14) + pin(5 1) + ) + circuit(11 INVX1 name($11) + pin(0 2) + pin(1 3) + pin(2 1) + pin(3 2) + pin(4 15) + pin(5 1) + ) + circuit(12 INVX1 name($12) + pin(0 2) + pin(1 5) + pin(2 1) + pin(3 2) + pin(4 3) + pin(5 1) + ) + + ) +) + +# Cross reference +xref( + circuit(INVX1 INVX1 match + xref( + net(4 4 match) + net(5 5 match) + net(2 2 match) + net(6 6 match) + net(1 1 match) + net(3 3 match) + pin(3 3 match) + pin(4 4 match) + pin(1 1 match) + pin(5 5 match) + pin(0 0 match) + pin(2 2 match) + device(2 2 match) + device(1 1 match) + ) + ) + circuit(ND2X1 ND2X1 match + xref( + net(8 8 match) + net(4 4 match) + net(6 6 match) + net(5 5 match) + net(2 2 match) + net(7 7 match) + net(1 1 match) + net(3 3 match) + pin(3 3 match) + pin(5 5 match) + pin(4 4 match) + pin(1 1 match) + pin(6 6 match) + pin(0 0 match) + pin(2 2 match) + device(3 3 match) + device(4 4 match) + device(1 1 match) + device(2 2 match) + ) + ) + circuit(RINGO RINGO match + xref( + net(1 6 match) + net(10 15 match) + net(2 7 match) + net(3 8 match) + net(4 9 match) + net(5 10 match) + net(6 11 match) + net(7 12 match) + net(8 13 match) + net(9 14 match) + net(14 4 match) + net(11 3 match) + net(13 5 match) + net(12 2 match) + net(15 1 match) + pin(3 3 match) + pin(0 2 match) + pin(2 4 match) + pin(1 1 match) + pin(4 0 match) + circuit(2 2 match) + circuit(3 3 match) + circuit(4 4 match) + circuit(5 5 match) + circuit(6 6 match) + circuit(7 7 match) + circuit(8 8 match) + circuit(9 9 match) + circuit(10 10 match) + circuit(11 11 match) + circuit(12 12 match) + circuit(1 1 match) + ) + ) +) diff --git a/testdata/lvs/ringo_simple_dmos_fixed.lvsdb.2 b/testdata/lvs/ringo_simple_dmos_fixed.lvsdb.2 new file mode 100644 index 000000000..258a08909 --- /dev/null +++ b/testdata/lvs/ringo_simple_dmos_fixed.lvsdb.2 @@ -0,0 +1,918 @@ +#%lvsdb-klayout + +# Layout +layout( + top(RINGO) + unit(0.001) + + # Layer section + # This section lists the mask layers (drawing or derived) and their connections. + + # Mask layers + layer(l4 '1/0') + layer(l5 '5/0') + layer(l10 '8/0') + layer(l13 '9/0') + layer(l14 '10/0') + layer(l15 '11/0') + layer(l9) + layer(l3) + layer(l1) + layer(l11) + layer(l8) + layer(l6) + layer(l12) + + # Mask layer connectivity + connect(l4 l4 l11) + connect(l5 l5 l10) + connect(l10 l5 l10 l13 l3 l1 l11 l8 l6 l12) + connect(l13 l10 l13 l14) + connect(l14 l13 l14 l15) + connect(l15 l14 l15) + connect(l9 l9) + connect(l3 l10 l3 l1) + connect(l1 l10 l3 l1) + connect(l11 l4 l10 l11) + connect(l8 l10 l8 l6) + connect(l6 l10 l8 l6) + connect(l12 l10 l12) + + # Global nets and connectivity + global(l9 SUBSTRATE) + global(l12 SUBSTRATE) + + # Device class section + class(PMOS MOS4) + class(NMOS MOS4) + + # Device abstracts section + # Device abstracts list the pin shapes of the devices. + device(D$PMOS PMOS + terminal(S + rect(l3 (125 -750) (450 1500)) + ) + terminal(G + rect(l5 (-125 -750) (250 1500)) + ) + terminal(D + rect(l1 (-550 -750) (425 1500)) + ) + terminal(B + rect(l4 (-125 -750) (250 1500)) + ) + ) + device(D$PMOS$1 PMOS + terminal(S + rect(l3 (-575 -750) (450 1500)) + ) + terminal(G + rect(l5 (-125 -750) (250 1500)) + ) + terminal(D + rect(l1 (125 -750) (425 1500)) + ) + terminal(B + rect(l4 (-125 -750) (250 1500)) + ) + ) + device(D$PMOS$2 PMOS + terminal(S + rect(l3 (-550 -750) (425 1500)) + ) + terminal(G + rect(l5 (-125 -750) (250 1500)) + ) + terminal(D + rect(l1 (125 -750) (425 1500)) + ) + terminal(B + rect(l4 (-125 -750) (250 1500)) + ) + ) + device(D$NMOS NMOS + terminal(S + rect(l8 (-342 -475) (217 950)) + ) + terminal(G + rect(l5 (-125 -475) (250 950)) + ) + terminal(D + rect(l6 (125 -475) (425 950)) + ) + terminal(B + rect(l9 (-125 -475) (250 950)) + ) + ) + device(D$NMOS$1 NMOS + terminal(S + rect(l8 (-550 -475) (425 950)) + ) + terminal(G + rect(l5 (-125 -475) (250 950)) + ) + terminal(D + rect(l6 (125 -475) (233 950)) + ) + terminal(B + rect(l9 (-125 -475) (250 950)) + ) + ) + device(D$NMOS$2 NMOS + terminal(S + rect(l8 (-550 -475) (425 950)) + ) + terminal(G + rect(l5 (-125 -475) (250 950)) + ) + terminal(D + rect(l6 (125 -475) (425 950)) + ) + terminal(B + rect(l9 (-125 -475) (250 950)) + ) + ) + + # Circuit section + # Circuits are the hierarchical building blocks of the netlist. + circuit(ND2X1 + + # Circuit boundary + rect((-100 400) (2600 7600)) + + # Nets with their geometries + net(1 name(VDD) + rect(l10 (1110 5160) (180 180)) + rect(l10 (-180 920) (180 180)) + rect(l10 (-180 -730) (180 180)) + rect(l13 (-240 -790) (300 1700)) + rect(l13 (-1350 0) (2400 800)) + rect(l13 (-1150 -400) (0 0)) + rect(l3 (-250 -2150) (425 1500)) + rect(l3 (-450 -1500) (425 1500)) + ) + net(2 name(OUT) + rect(l10 (1810 1770) (180 180)) + rect(l10 (-180 370) (180 180)) + rect(l10 (-1580 3760) (180 180)) + rect(l10 (-180 -730) (180 180)) + rect(l10 (-180 -730) (180 180)) + rect(l10 (1220 920) (180 180)) + rect(l10 (-180 -1280) (180 180)) + rect(l10 (-180 370) (180 180)) + polygon(l13 (-240 -4180) (0 1390) (490 0) (0 -300) (-190 0) (0 -1090)) + rect(l13 (-110 1390) (300 1400)) + polygon(l13 (-1890 0) (0 600) (300 0) (0 -300) (1590 0) (0 -300)) + rect(l13 (-140 -500) (0 0)) + rect(l13 (-1750 1100) (300 1400)) + rect(l13 (1100 -1700) (300 300)) + rect(l13 (-300 0) (300 1400)) + rect(l1 (-1750 -1450) (425 1500)) + rect(l1 (950 -1500) (425 1500)) + rect(l6 (-192 -4890) (192 950)) + rect(l6 (-425 -950) (233 950)) + ) + net(3 name(VSS) + rect(l10 (410 1770) (180 180)) + rect(l10 (-180 370) (180 180)) + rect(l13 (-240 -1300) (300 1360)) + rect(l13 (-650 -2160) (2400 800)) + rect(l13 (-1150 -400) (0 0)) + rect(l8 (-950 860) (208 950)) + rect(l8 (0 -950) (217 950)) + ) + net(4 name($4) + rect(l8 (1208 1660) (192 950)) + rect(l8 (-192 -950) (217 950)) + rect(l6 (-425 -950) (208 950)) + rect(l6 (-233 -950) (233 950)) + ) + net(5 name($5) + rect(l4 (-100 4500) (2600 3500)) + ) + net(6 name(B) + rect(l5 (1425 2860) (250 1940)) + rect(l5 (-345 -950) (300 300)) + rect(l5 (-205 650) (250 2000)) + rect(l5 (-250 -2000) (250 2000)) + rect(l5 (-250 -5390) (250 1450)) + rect(l10 (-285 1050) (180 180)) + rect(l13 (-70 -90) (0 0)) + rect(l13 (-170 -150) (300 300)) + ) + net(7 name(A) + rect(l5 (725 2860) (250 1940)) + rect(l5 (-325 -1850) (300 300)) + rect(l5 (-225 1550) (250 2000)) + rect(l5 (-250 -2000) (250 2000)) + rect(l5 (-250 -5390) (250 1450)) + rect(l10 (-265 150) (180 180)) + rect(l13 (-90 -90) (0 0)) + rect(l13 (-150 -150) (300 300)) + ) + net(8 name(SUBSTRATE)) + + # Outgoing pins and their connections to nets + pin(1 name(VDD)) + pin(2 name(OUT)) + pin(3 name(VSS)) + pin(5) + pin(6 name(B)) + pin(7 name(A)) + pin(8 name(SUBSTRATE)) + + # Devices and their connections + device(1 D$PMOS + location(850 5800) + param(L 0.25) + param(W 1.5) + param(AS 0.3375) + param(AD 0.6375) + param(PS 1.95) + param(PD 3.85) + terminal(S 1) + terminal(G 7) + terminal(D 2) + terminal(B 5) + ) + device(2 D$PMOS$1 + location(1550 5800) + param(L 0.25) + param(W 1.5) + param(AS 0.3375) + param(AD 0.6375) + param(PS 1.95) + param(PD 3.85) + terminal(S 1) + terminal(G 6) + terminal(D 2) + terminal(B 5) + ) + device(3 D$NMOS + location(1550 2135) + param(L 0.25) + param(W 0.95) + param(AS 0.20615) + param(AD 0.40375) + param(PS 2.334) + param(PD 2.75) + terminal(S 4) + terminal(G 6) + terminal(D 2) + terminal(B 8) + ) + device(4 D$NMOS$1 + location(850 2135) + param(L 0.25) + param(W 0.95) + param(AS 0.40375) + param(AD 0.22135) + param(PS 2.75) + param(PD 2.366) + terminal(S 3) + terminal(G 7) + terminal(D 4) + terminal(B 8) + ) + + ) + circuit(INVX1 + + # Circuit boundary + rect((-100 400) (2000 7600)) + + # Nets with their geometries + net(1 name(VDD) + rect(l10 (410 6260) (180 180)) + rect(l10 (-180 -730) (180 180)) + rect(l10 (-180 -730) (180 180)) + rect(l13 (-240 -240) (300 1400)) + rect(l13 (-650 300) (1800 800)) + rect(l13 (-1450 -1100) (300 300)) + rect(l13 (300 400) (0 0)) + rect(l3 (-650 -2150) (425 1500)) + ) + net(2 name(OUT) + rect(l10 (1110 5160) (180 180)) + rect(l10 (-180 920) (180 180)) + rect(l10 (-180 -730) (180 180)) + rect(l10 (-180 -4120) (180 180)) + rect(l10 (-180 370) (180 180)) + rect(l13 (-240 -790) (300 4790)) + rect(l13 (-150 -2500) (0 0)) + rect(l1 (-225 1050) (425 1500)) + rect(l6 (-192 -4890) (192 950)) + rect(l6 (-425 -950) (233 950)) + ) + net(3 name(VSS) + rect(l10 (410 1770) (180 180)) + rect(l10 (-180 370) (180 180)) + rect(l13 (-240 -1300) (300 1360)) + rect(l13 (-650 -2160) (1800 800)) + rect(l13 (-850 -400) (0 0)) + rect(l8 (-650 860) (208 950)) + rect(l8 (0 -950) (217 950)) + ) + net(4 name($4) + rect(l4 (-100 4500) (2000 3500)) + ) + net(5 name(IN) + rect(l5 (725 2860) (250 1940)) + rect(l5 (-525 -1850) (300 300)) + rect(l5 (-25 1550) (250 2000)) + rect(l5 (-250 -2000) (250 2000)) + rect(l5 (-250 -5390) (250 1450)) + rect(l10 (-465 150) (180 180)) + rect(l13 (-90 -90) (0 0)) + rect(l13 (-150 -150) (300 300)) + ) + net(6 name(SUBSTRATE)) + + # Outgoing pins and their connections to nets + pin(1 name(VDD)) + pin(2 name(OUT)) + pin(3 name(VSS)) + pin(4) + pin(5 name(IN)) + pin(6 name(SUBSTRATE)) + + # Devices and their connections + device(1 D$PMOS$2 + location(850 5800) + param(L 0.25) + param(W 1.5) + param(AS 0.6375) + param(AD 0.6375) + param(PS 3.85) + param(PD 3.85) + terminal(S 1) + terminal(G 5) + terminal(D 2) + terminal(B 4) + ) + device(2 D$NMOS$2 + location(850 2135) + param(L 0.25) + param(W 0.95) + param(AS 0.40375) + param(AD 0.40375) + param(PS 2.75) + param(PD 2.75) + terminal(S 3) + terminal(G 5) + terminal(D 2) + terminal(B 6) + ) + + ) + circuit(RINGO + + # Circuit boundary + rect((0 350) (25800 7650)) + + # Nets with their geometries + net(1 name($1) + rect(l13 (4040 2950) (610 300)) + ) + net(2 name($2) + rect(l13 (5550 2950) (900 300)) + ) + net(3 name($3) + rect(l13 (7350 2950) (900 300)) + ) + net(4 name($4) + rect(l13 (9150 2950) (900 300)) + ) + net(5 name($5) + rect(l13 (10950 2950) (900 300)) + ) + net(6 name($6) + rect(l13 (12750 2950) (900 300)) + ) + net(7 name($7) + rect(l13 (14550 2950) (900 300)) + ) + net(8 name($8) + rect(l13 (16350 2950) (900 300)) + ) + net(9 name($9) + rect(l13 (18150 2950) (900 300)) + ) + net(10 name($10) + rect(l13 (19950 2950) (900 300)) + ) + net(11 name(FB) + rect(l13 (21750 2950) (900 300)) + rect(l13 (-19530 590) (320 320)) + rect(l13 (17820 -320) (320 320)) + rect(l14 (-18400 -260) (200 200)) + rect(l14 (17940 -200) (200 200)) + rect(l15 (-18040 -300) (17740 400)) + rect(l15 (-17920 -200) (0 0)) + rect(l15 (-220 -200) (400 400)) + rect(l15 (17740 -400) (400 400)) + ) + net(12 name(VDD) + rect(l4 (0 4500) (600 3500)) + rect(l4 (23300 -3500) (1400 3500)) + rect(l4 (-100 -3500) (600 3500)) + rect(l4 (-25300 -3500) (1400 3500)) + rect(l10 (22610 -1240) (180 180)) + rect(l10 (-180 370) (180 180)) + rect(l10 (-180 -1280) (180 180)) + rect(l10 (-23580 370) (180 180)) + rect(l10 (-180 370) (180 180)) + rect(l10 (-180 -1280) (180 180)) + rect(l13 (1660 860) (0 0)) + rect(l13 (-2950 -450) (600 800)) + rect(l13 (23400 -800) (1200 800)) + rect(l13 (-750 -1450) (300 1400)) + rect(l13 (-100 -350) (0 0)) + rect(l13 (550 -400) (600 800)) + rect(l13 (-25200 -800) (1200 800)) + rect(l13 (-750 -1450) (300 1400)) + rect(l13 (-100 -350) (0 0)) + rect(l11 (23100 -1100) (500 1500)) + rect(l11 (-23900 -1500) (500 1500)) + ) + net(13 name(OUT) + rect(l13 (23440 3840) (320 320)) + rect(l14 (-260 -260) (200 200)) + rect(l15 (-100 -100) (0 0)) + rect(l15 (-200 -200) (400 400)) + ) + net(14 name(ENABLE) + rect(l13 (2440 2940) (320 320)) + rect(l14 (-260 -260) (200 200)) + rect(l15 (-100 -100) (0 0)) + rect(l15 (-200 -200) (400 400)) + ) + net(15 name(VSS) + rect(l10 (24510 1610) (180 180)) + rect(l10 (-180 -1280) (180 180)) + rect(l10 (-180 370) (180 180)) + rect(l10 (-23580 370) (180 180)) + rect(l10 (-180 -1280) (180 180)) + rect(l10 (-180 370) (180 180)) + rect(l13 (1660 -390) (0 0)) + rect(l13 (21500 -400) (300 1400)) + rect(l13 (-750 -1450) (1200 800)) + rect(l13 (-550 -400) (0 0)) + rect(l13 (550 -400) (600 800)) + rect(l13 (-25800 -800) (600 800)) + rect(l13 (450 -750) (300 1400)) + rect(l13 (-750 -1450) (1200 800)) + rect(l13 (-550 -400) (0 0)) + rect(l12 (23100 -400) (500 1500)) + rect(l12 (-23900 -1500) (500 1500)) + ) + + # Outgoing pins and their connections to nets + pin(11 name(FB)) + pin(12 name(VDD)) + pin(13 name(OUT)) + pin(14 name(ENABLE)) + pin(15 name(VSS)) + + # Subcircuits and their connections + circuit(1 ND2X1 location(1800 0) + pin(0 12) + pin(1 1) + pin(2 15) + pin(3 12) + pin(4 11) + pin(5 14) + pin(6 15) + ) + circuit(2 INVX1 location(4200 0) + pin(0 12) + pin(1 2) + pin(2 15) + pin(3 12) + pin(4 1) + pin(5 15) + ) + circuit(3 INVX1 location(6000 0) + pin(0 12) + pin(1 3) + pin(2 15) + pin(3 12) + pin(4 2) + pin(5 15) + ) + circuit(4 INVX1 location(7800 0) + pin(0 12) + pin(1 4) + pin(2 15) + pin(3 12) + pin(4 3) + pin(5 15) + ) + circuit(5 INVX1 location(9600 0) + pin(0 12) + pin(1 5) + pin(2 15) + pin(3 12) + pin(4 4) + pin(5 15) + ) + circuit(6 INVX1 location(11400 0) + pin(0 12) + pin(1 6) + pin(2 15) + pin(3 12) + pin(4 5) + pin(5 15) + ) + circuit(7 INVX1 location(13200 0) + pin(0 12) + pin(1 7) + pin(2 15) + pin(3 12) + pin(4 6) + pin(5 15) + ) + circuit(8 INVX1 location(15000 0) + pin(0 12) + pin(1 8) + pin(2 15) + pin(3 12) + pin(4 7) + pin(5 15) + ) + circuit(9 INVX1 location(16800 0) + pin(0 12) + pin(1 9) + pin(2 15) + pin(3 12) + pin(4 8) + pin(5 15) + ) + circuit(10 INVX1 location(18600 0) + pin(0 12) + pin(1 10) + pin(2 15) + pin(3 12) + pin(4 9) + pin(5 15) + ) + circuit(11 INVX1 location(20400 0) + pin(0 12) + pin(1 11) + pin(2 15) + pin(3 12) + pin(4 10) + pin(5 15) + ) + circuit(12 INVX1 location(22200 0) + pin(0 12) + pin(1 13) + pin(2 15) + pin(3 12) + pin(4 11) + pin(5 15) + ) + + ) +) + +# Reference netlist +reference( + + # Device class section + class(PMOS MOS4) + class(NMOS MOS4) + + # Circuit section + # Circuits are the hierarchical building blocks of the netlist. + circuit(ND2X1 + + # Nets + net(1 name(VDD)) + net(2 name(OUT)) + net(3 name(VSS)) + net(4 name(NWELL)) + net(5 name(B)) + net(6 name(A)) + net(7 name(BULK)) + net(8 name('1')) + + # Outgoing pins and their connections to nets + pin(1 name(VDD)) + pin(2 name(OUT)) + pin(3 name(VSS)) + pin(4 name(NWELL)) + pin(5 name(B)) + pin(6 name(A)) + pin(7 name(BULK)) + + # Devices and their connections + device(1 PMOS + name($1) + param(L 0.25) + param(W 1.5) + param(AS 0) + param(AD 0) + param(PS 0) + param(PD 0) + terminal(S 1) + terminal(G 6) + terminal(D 2) + terminal(B 4) + ) + device(2 PMOS + name($2) + param(L 0.25) + param(W 1.5) + param(AS 0) + param(AD 0) + param(PS 0) + param(PD 0) + terminal(S 1) + terminal(G 5) + terminal(D 2) + terminal(B 4) + ) + device(3 NMOS + name($3) + param(L 0.25) + param(W 0.95) + param(AS 0) + param(AD 0) + param(PS 0) + param(PD 0) + terminal(S 3) + terminal(G 6) + terminal(D 8) + terminal(B 7) + ) + device(4 NMOS + name($4) + param(L 0.25) + param(W 0.95) + param(AS 0) + param(AD 0) + param(PS 0) + param(PD 0) + terminal(S 8) + terminal(G 5) + terminal(D 2) + terminal(B 7) + ) + + ) + circuit(INVX1 + + # Nets + net(1 name(VDD)) + net(2 name(OUT)) + net(3 name(VSS)) + net(4 name(NWELL)) + net(5 name(IN)) + net(6 name(BULK)) + + # Outgoing pins and their connections to nets + pin(1 name(VDD)) + pin(2 name(OUT)) + pin(3 name(VSS)) + pin(4 name(NWELL)) + pin(5 name(IN)) + pin(6 name(BULK)) + + # Devices and their connections + device(1 PMOS + name($1) + param(L 0.25) + param(W 1.5) + param(AS 0) + param(AD 0) + param(PS 0) + param(PD 0) + terminal(S 1) + terminal(G 5) + terminal(D 2) + terminal(B 4) + ) + device(2 NMOS + name($2) + param(L 0.25) + param(W 0.95) + param(AS 0) + param(AD 0) + param(PS 0) + param(PD 0) + terminal(S 3) + terminal(G 5) + terminal(D 2) + terminal(B 6) + ) + + ) + circuit(RINGO + + # Nets + net(1 name(VSS)) + net(2 name(VDD)) + net(3 name(FB)) + net(4 name(ENABLE)) + net(5 name(OUT)) + net(6 name('1')) + net(7 name('2')) + net(8 name('3')) + net(9 name('4')) + net(10 name('5')) + net(11 name('6')) + net(12 name('7')) + net(13 name('8')) + net(14 name('9')) + net(15 name('10')) + + # Outgoing pins and their connections to nets + pin(1 name(VSS)) + pin(2 name(VDD)) + pin(3 name(FB)) + pin(4 name(ENABLE)) + pin(5 name(OUT)) + + # Subcircuits and their connections + circuit(1 ND2X1 name($1) + pin(0 2) + pin(1 6) + pin(2 1) + pin(3 2) + pin(4 3) + pin(5 4) + pin(6 1) + ) + circuit(2 INVX1 name($2) + pin(0 2) + pin(1 7) + pin(2 1) + pin(3 2) + pin(4 6) + pin(5 1) + ) + circuit(3 INVX1 name($3) + pin(0 2) + pin(1 8) + pin(2 1) + pin(3 2) + pin(4 7) + pin(5 1) + ) + circuit(4 INVX1 name($4) + pin(0 2) + pin(1 9) + pin(2 1) + pin(3 2) + pin(4 8) + pin(5 1) + ) + circuit(5 INVX1 name($5) + pin(0 2) + pin(1 10) + pin(2 1) + pin(3 2) + pin(4 9) + pin(5 1) + ) + circuit(6 INVX1 name($6) + pin(0 2) + pin(1 11) + pin(2 1) + pin(3 2) + pin(4 10) + pin(5 1) + ) + circuit(7 INVX1 name($7) + pin(0 2) + pin(1 12) + pin(2 1) + pin(3 2) + pin(4 11) + pin(5 1) + ) + circuit(8 INVX1 name($8) + pin(0 2) + pin(1 13) + pin(2 1) + pin(3 2) + pin(4 12) + pin(5 1) + ) + circuit(9 INVX1 name($9) + pin(0 2) + pin(1 14) + pin(2 1) + pin(3 2) + pin(4 13) + pin(5 1) + ) + circuit(10 INVX1 name($10) + pin(0 2) + pin(1 15) + pin(2 1) + pin(3 2) + pin(4 14) + pin(5 1) + ) + circuit(11 INVX1 name($11) + pin(0 2) + pin(1 3) + pin(2 1) + pin(3 2) + pin(4 15) + pin(5 1) + ) + circuit(12 INVX1 name($12) + pin(0 2) + pin(1 5) + pin(2 1) + pin(3 2) + pin(4 3) + pin(5 1) + ) + + ) +) + +# Cross reference +xref( + circuit(INVX1 INVX1 match + xref( + net(4 4 match) + net(5 5 match) + net(2 2 match) + net(6 6 match) + net(1 1 match) + net(3 3 match) + pin(3 3 match) + pin(4 4 match) + pin(1 1 match) + pin(5 5 match) + pin(0 0 match) + pin(2 2 match) + device(2 2 match) + device(1 1 match) + ) + ) + circuit(ND2X1 ND2X1 match + xref( + net(4 8 match) + net(5 4 match) + net(7 6 match) + net(6 5 match) + net(2 2 match) + net(8 7 match) + net(1 1 match) + net(3 3 match) + pin(3 3 match) + pin(5 5 match) + pin(4 4 match) + pin(1 1 match) + pin(6 6 match) + pin(0 0 match) + pin(2 2 match) + device(4 3 match) + device(3 4 match) + device(1 1 match) + device(2 2 match) + ) + ) + circuit(RINGO RINGO match + xref( + net(1 6 match) + net(10 15 match) + net(2 7 match) + net(3 8 match) + net(4 9 match) + net(5 10 match) + net(6 11 match) + net(7 12 match) + net(8 13 match) + net(9 14 match) + net(14 4 match) + net(11 3 match) + net(13 5 match) + net(12 2 match) + net(15 1 match) + pin(3 3 match) + pin(0 2 match) + pin(2 4 match) + pin(1 1 match) + pin(4 0 match) + circuit(2 2 match) + circuit(3 3 match) + circuit(4 4 match) + circuit(5 5 match) + circuit(6 6 match) + circuit(7 7 match) + circuit(8 8 match) + circuit(9 9 match) + circuit(10 10 match) + circuit(11 11 match) + circuit(12 12 match) + circuit(1 1 match) + ) + ) +) diff --git a/testdata/lvs/ringo_simple_io.cir.2 b/testdata/lvs/ringo_simple_io.cir.2 new file mode 100644 index 000000000..3f2524e11 --- /dev/null +++ b/testdata/lvs/ringo_simple_io.cir.2 @@ -0,0 +1,31 @@ +* Extracted by KLayout + +.SUBCKT RINGO FB VDD OUT ENABLE VSS +X$1 VDD \$1 VSS VDD FB ENABLE VSS ND2X1 +X$2 VDD \$2 VSS VDD \$1 VSS INVX1 +X$3 VDD \$3 VSS VDD \$2 VSS INVX1 +X$4 VDD \$4 VSS VDD \$3 VSS INVX1 +X$5 VDD \$5 VSS VDD \$4 VSS INVX1 +X$6 VDD \$6 VSS VDD \$5 VSS INVX1 +X$7 VDD \$7 VSS VDD \$6 VSS INVX1 +X$8 VDD \$8 VSS VDD \$7 VSS INVX1 +X$9 VDD \$9 VSS VDD \$8 VSS INVX1 +X$10 VDD \$10 VSS VDD \$9 VSS INVX1 +X$11 VDD FB VSS VDD \$10 VSS INVX1 +X$12 VDD OUT VSS VDD FB VSS INVX1 +.ENDS RINGO + +.SUBCKT INVX1 VDD OUT VSS \$4 IN SUBSTRATE +M$1 OUT IN VDD \$4 PMOS L=0.25U W=1.5U AS=0.6375P AD=0.6375P PS=3.85U PD=3.85U +M$2 OUT IN VSS SUBSTRATE NMOS L=0.25U W=0.95U AS=0.40375P AD=0.40375P PS=2.75U ++ PD=2.75U +.ENDS INVX1 + +.SUBCKT ND2X1 VDD OUT VSS \$4 B A SUBSTRATE +M$1 VDD A OUT \$4 PMOS L=0.25U W=1.5U AS=0.6375P AD=0.3375P PS=3.85U PD=1.95U +M$2 OUT B VDD \$4 PMOS L=0.25U W=1.5U AS=0.3375P AD=0.6375P PS=1.95U PD=3.85U +M$3 \$I5 A VSS SUBSTRATE NMOS L=0.25U W=0.95U AS=0.40375P AD=0.21375P PS=2.75U ++ PD=1.4U +M$4 OUT B \$I5 SUBSTRATE NMOS L=0.25U W=0.95U AS=0.21375P AD=0.40375P PS=1.4U ++ PD=2.75U +.ENDS ND2X1 diff --git a/testdata/lvs/ringo_simple_io2.cir.2 b/testdata/lvs/ringo_simple_io2.cir.2 new file mode 100644 index 000000000..0b0a9783a --- /dev/null +++ b/testdata/lvs/ringo_simple_io2.cir.2 @@ -0,0 +1,32 @@ +* Extracted by KLayout +.INCLUDE 'models.cir' + +.SUBCKT RINGO FB VDD OUT ENABLE VSS +X$1 VDD \$1 VSS VDD FB ENABLE VSS ND2X1 +X$2 VDD \$2 VSS VDD \$1 VSS INVX1 +X$3 VDD \$3 VSS VDD \$2 VSS INVX1 +X$4 VDD \$4 VSS VDD \$3 VSS INVX1 +X$5 VDD \$5 VSS VDD \$4 VSS INVX1 +X$6 VDD \$6 VSS VDD \$5 VSS INVX1 +X$7 VDD \$7 VSS VDD \$6 VSS INVX1 +X$8 VDD \$8 VSS VDD \$7 VSS INVX1 +X$9 VDD \$9 VSS VDD \$8 VSS INVX1 +X$10 VDD \$10 VSS VDD \$9 VSS INVX1 +X$11 VDD FB VSS VDD \$10 VSS INVX1 +X$12 VDD OUT VSS VDD FB VSS INVX1 +.ENDS RINGO + +.SUBCKT INVX1 VDD OUT VSS \$4 IN SUBSTRATE +X$1 VDD IN OUT \$4 PMOS PARAMS: L=0.25 W=1.5 AS=0.6375 AD=0.6375 PS=3.85 PD=3.85 +X$2 VSS IN OUT SUBSTRATE NMOS PARAMS: L=0.25 W=0.95 AS=0.40375 AD=0.40375 ++ PS=2.75 PD=2.75 +.ENDS INVX1 + +.SUBCKT ND2X1 VDD OUT VSS \$4 B A SUBSTRATE +X$1 OUT A VDD \$4 PMOS PARAMS: L=0.25 W=1.5 AS=0.6375 AD=0.3375 PS=3.85 PD=1.95 +X$2 VDD B OUT \$4 PMOS PARAMS: L=0.25 W=1.5 AS=0.3375 AD=0.6375 PS=1.95 PD=3.85 +X$3 VSS A \$I5 SUBSTRATE NMOS PARAMS: L=0.25 W=0.95 AS=0.40375 AD=0.21375 ++ PS=2.75 PD=1.4 +X$4 \$I5 B OUT SUBSTRATE NMOS PARAMS: L=0.25 W=0.95 AS=0.21375 AD=0.40375 ++ PS=1.4 PD=2.75 +.ENDS ND2X1 diff --git a/testdata/lvs/ringo_simple_same_device_classes.cir.2 b/testdata/lvs/ringo_simple_same_device_classes.cir.2 new file mode 100644 index 000000000..20ac90c01 --- /dev/null +++ b/testdata/lvs/ringo_simple_same_device_classes.cir.2 @@ -0,0 +1,31 @@ +* Extracted by KLayout + +.SUBCKT RINGO FB VDD OUT ENABLE VSS +X$1 VDD \$1 VSS VDD FB ENABLE VSS ND2X1 +X$2 VDD \$2 VSS VDD \$1 VSS INVX1 +X$3 VDD \$3 VSS VDD \$2 VSS INVX1 +X$4 VDD \$4 VSS VDD \$3 VSS INVX1 +X$5 VDD \$5 VSS VDD \$4 VSS INVX1 +X$6 VDD \$6 VSS VDD \$5 VSS INVX1 +X$7 VDD \$7 VSS VDD \$6 VSS INVX1 +X$8 VDD \$8 VSS VDD \$7 VSS INVX1 +X$9 VDD \$9 VSS VDD \$8 VSS INVX1 +X$10 VDD \$10 VSS VDD \$9 VSS INVX1 +X$11 VDD FB VSS VDD \$10 VSS INVX1 +X$12 VDD OUT VSS VDD FB VSS INVX1 +.ENDS RINGO + +.SUBCKT INVX1 VDD OUT VSS \$4 IN SUBSTRATE +M$1 OUT IN VDD \$4 PM L=0.25U W=1.5U AS=0.6375P AD=0.6375P PS=3.85U PD=3.85U +M$2 OUT IN VSS SUBSTRATE NM L=0.25U W=0.95U AS=0.40375P AD=0.40375P PS=2.75U ++ PD=2.75U +.ENDS INVX1 + +.SUBCKT ND2X1 VDD OUT VSS \$4 B A SUBSTRATE +M$1 VDD A OUT \$4 PM L=0.25U W=1.5U AS=0.6375P AD=0.3375P PS=3.85U PD=1.95U +M$2 OUT B VDD \$4 PM L=0.25U W=1.5U AS=0.3375P AD=0.6375P PS=1.95U PD=3.85U +M$3 \$I5 A VSS SUBSTRATE NM L=0.25U W=0.95U AS=0.40375P AD=0.21375P PS=2.75U ++ PD=1.4U +M$4 OUT B \$I5 SUBSTRATE NM L=0.25U W=0.95U AS=0.21375P AD=0.40375P PS=1.4U ++ PD=2.75U +.ENDS ND2X1 From 95f2335fc48969f7d7eaaf1bbce7141195f6888a Mon Sep 17 00:00:00 2001 From: Matthias Koefferlein Date: Thu, 19 Mar 2026 12:53:30 +0100 Subject: [PATCH 039/212] [consider merging] bugfix: DeepRegion::processed with properties did not deliver polygon refs which made them unsuitable for further processing. --- src/db/db/dbShapeCollectionUtils.h | 42 ++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) diff --git a/src/db/db/dbShapeCollectionUtils.h b/src/db/db/dbShapeCollectionUtils.h index 93e34da9f..c9df9c0ff 100644 --- a/src/db/db/dbShapeCollectionUtils.h +++ b/src/db/db/dbShapeCollectionUtils.h @@ -124,6 +124,27 @@ private: db::Shapes *mp_shapes; }; +/** + * @brief A shape delivery implementation for polygons with properties + */ +template <> +struct DB_PUBLIC shape_collection_processor_delivery +{ + shape_collection_processor_delivery (db::Layout *layout, db::Shapes *shapes) + : mp_layout (layout), mp_shapes (shapes) + { } + + void put (const db::PolygonWithProperties &result) + { + tl::MutexLocker locker (&mp_layout->lock ()); + mp_shapes->insert (db::PolygonRefWithProperties (db::PolygonRef (result, mp_layout->shape_repository ()), result.properties_id ())); + } + +private: + db::Layout *mp_layout; + db::Shapes *mp_shapes; +}; + /** * @brief A shape delivery implementation for texts */ @@ -145,6 +166,27 @@ private: db::Shapes *mp_shapes; }; +/** + * @brief A shape delivery implementation for texts with properties + */ +template <> +struct DB_PUBLIC shape_collection_processor_delivery +{ + shape_collection_processor_delivery (db::Layout *layout, db::Shapes *shapes) + : mp_layout (layout), mp_shapes (shapes) + { } + + void put (const db::TextWithProperties &result) + { + tl::MutexLocker locker (&mp_layout->lock ()); + mp_shapes->insert (db::TextRefWithProperties (db::TextRef (result, mp_layout->shape_repository ()), result.properties_id ())); + } + +private: + db::Layout *mp_layout; + db::Shapes *mp_shapes; +}; + /** * @brief A generic delivery */ From 42a008efd1a7b3bc7a9d89a2ffff6b57f23d533f Mon Sep 17 00:00:00 2001 From: Matthias Koefferlein Date: Thu, 19 Mar 2026 12:53:49 +0100 Subject: [PATCH 040/212] Potential performance improvement for deep-mode DRC The idea is to use broken regions for certain operations such as booleans in deep mode (local operations). These polygons are more efficient. To support this, a "broken polygon" view is supplied similar for "merged" view. The translation is handled automatically. As a side effect, regions may appear to be composed in broken polygons now when they have been merged before. --- src/db/db/dbDeepRegion.cc | 96 +++++++++++++++--- src/db/db/dbDeepRegion.h | 5 +- src/db/db/dbDeepShapeStore.cc | 8 ++ src/db/db/dbDeepShapeStore.h | 5 + src/db/db/dbEmptyRegion.h | 2 + src/db/db/dbFlatRegion.cc | 49 +++++++-- src/db/db/dbFlatRegion.h | 15 ++- src/db/db/dbOriginalLayerRegion.cc | 12 +++ src/db/db/dbOriginalLayerRegion.h | 2 + src/db/db/dbRegion.h | 19 ++++ src/db/db/dbRegionDelegate.h | 2 + src/db/unit_tests/dbDeepRegionTests.cc | 132 +++++++++++++++++++++++++ testdata/algo/deep_region_au9a.gds | Bin 2698 -> 3146 bytes 13 files changed, 320 insertions(+), 27 deletions(-) diff --git a/src/db/db/dbDeepRegion.cc b/src/db/db/dbDeepRegion.cc index 4cc33efa5..81988f1fe 100644 --- a/src/db/db/dbDeepRegion.cc +++ b/src/db/db/dbDeepRegion.cc @@ -401,6 +401,13 @@ DeepRegion::begin_merged () const } } +RegionIteratorDelegate * +DeepRegion::begin_unmerged () const +{ + ensure_unmerged_polygons_valid (); + return begin (); +} + std::pair DeepRegion::begin_iter () const { @@ -445,6 +452,13 @@ DeepRegion::begin_merged_iter () const } } +std::pair +DeepRegion::begin_unmerged_iter () const +{ + ensure_unmerged_polygons_valid (); + return begin_iter (); +} + bool DeepRegion::empty () const { @@ -787,6 +801,46 @@ DeepRegion::ensure_merged_polygons_valid () const } } +void +DeepRegion::ensure_unmerged_polygons_valid () const +{ + if (! m_is_merged || + (deep_layer ().store ()->max_area_ratio () == 0.0 && deep_layer ().store ()->max_vertex_count () == 0)) { + return; + } + + m_merged_polygons = deep_layer ().derived (); + db::DeepLayer &polygons = const_cast (deep_layer ()); + + m_merged_polygons_valid = true; + m_is_merged = false; + m_merged_polygons_boc_hash = deep_layer ().breakout_cells_hash (); + + db::Layout &layout = polygons.layout (); + polygons.swap (m_merged_polygons); + + for (db::Layout::iterator c = layout.begin (); c != layout.end (); ++c) { + + const db::Shapes &s = c->shapes (m_merged_polygons.layer ()); + db::Shapes &st = c->shapes (deep_layer ().layer ()); + + db::PolygonRefToShapesGenerator pr (&layout, &st); + db::PolygonSplitter splitter (pr, polygons.store ()->max_area_ratio (), polygons.store ()->max_vertex_count ()); + + splitter.start (); + for (auto p = s.begin (db::ShapeIterator::All); ! p.at_end (); ++p) { + if (p->is_polygon ()) { + pr.set_prop_id (p->prop_id ()); + db::Polygon poly; + p->polygon (poly); + splitter.put (poly); + } + } + splitter.flush (); + + } +} + void DeepRegion::set_is_merged (bool f) { @@ -922,6 +976,10 @@ DeepRegion::andnot_with (const Region &other, PropertyConstraint property_constr DeepLayer DeepRegion::and_with_impl (const DeepRegion *other, db::PropertyConstraint property_constraint) const { + // booleans run better on simple polygons + ensure_unmerged_polygons_valid (); + other->ensure_unmerged_polygons_valid (); + DeepLayer dl_out (deep_layer ().derived ()); if (pc_skip (property_constraint)) { @@ -956,6 +1014,10 @@ DeepRegion::and_with_impl (const DeepRegion *other, db::PropertyConstraint prope DeepLayer DeepRegion::not_with_impl (const DeepRegion *other, db::PropertyConstraint property_constraint) const { + // booleans run better on simple polygons + ensure_unmerged_polygons_valid (); + other->ensure_unmerged_polygons_valid (); + DeepLayer dl_out (deep_layer ().derived ()); DeepLayer dl_prep; @@ -1059,6 +1121,10 @@ DeepRegion::not_with_impl (const DeepRegion *other, db::PropertyConstraint prope std::pair DeepRegion::and_and_not_with (const DeepRegion *other, PropertyConstraint property_constraint) const { + // booleans run better on simple polygons + ensure_unmerged_polygons_valid (); + other->ensure_unmerged_polygons_valid (); + DeepLayer dl_out1 (deep_layer ().derived ()); DeepLayer dl_out2 (deep_layer ().derived ()); @@ -1179,6 +1245,10 @@ DeepRegion::add_in_place (const Region &other) const DeepRegion *other_deep = dynamic_cast (other.delegate ()); if (other_deep) { + // NOTE: as we don't benefit from merged shapes here, we prefer unmerged ones + // for potentially better performance. + other_deep->ensure_unmerged_polygons_valid (); + deep_layer ().add_from (other_deep->deep_layer ()); } else { @@ -1885,6 +1955,10 @@ DeepRegion::sized (coord_type d, unsigned int mode) const return clone (); } + // in case of negative sizing the output polygons will still be merged (on positive sizing they might + // overlap after size and are not necessarily merged) + bool will_be_merged = (d < 0 && (merged_semantics () || is_merged ())); + const db::DeepLayer &polygons = merged_deep_layer (); db::Layout &layout = const_cast (polygons.layout ()); @@ -1904,7 +1978,8 @@ DeepRegion::sized (coord_type d, unsigned int mode) const db::Shapes &st = c->shapes (res->deep_layer ().layer ()); db::PolygonRefToShapesGenerator pr (&layout, &st); - db::PolygonGenerator pg2 (pr, false /*don't resolve holes*/, true /*min. coherence*/); + db::PolygonSplitter splitter (pr, will_be_merged ? 0.0 : polygons.store ()->max_area_ratio (), will_be_merged ? 0 : polygons.store ()->max_vertex_count ()); + db::PolygonGenerator pg2 (splitter, false /*don't resolve holes*/, true /*min. coherence*/); db::SizingPolygonFilter siz (pg2, d_with_mag, d_with_mag, mode); for (db::Shapes::shape_iterator si = s.begin (db::ShapeIterator::All); ! si.at_end (); ++si) { @@ -1916,11 +1991,7 @@ DeepRegion::sized (coord_type d, unsigned int mode) const } - // in case of negative sizing the output polygons will still be merged (on positive sizing they might - // overlap after size and are not necessarily merged) - if (d < 0 && (merged_semantics () || is_merged ())) { - res->set_is_merged (true); - } + res->set_is_merged (will_be_merged); return res.release (); } @@ -1938,6 +2009,10 @@ DeepRegion::sized (coord_type dx, coord_type dy, unsigned int mode) const return sized (dx, mode); } + // in case of negative sizing the output polygons will still be merged (on positive sizing they might + // overlap after size and are not necessarily merged) + bool will_be_merged = (dx < 0 && dy < 0 && (merged_semantics () || is_merged ())); + const db::DeepLayer &polygons = merged_deep_layer (); db::Layout &layout = const_cast (polygons.layout ()); @@ -1964,7 +2039,8 @@ DeepRegion::sized (coord_type dx, coord_type dy, unsigned int mode) const db::Shapes &st = c->shapes (res->deep_layer ().layer ()); db::PolygonRefToShapesGenerator pr (&layout, &st); - db::PolygonGenerator pg2 (pr, false /*don't resolve holes*/, true /*min. coherence*/); + db::PolygonSplitter splitter (pr, will_be_merged ? 0.0 : polygons.store ()->max_area_ratio (), will_be_merged ? 0 : polygons.store ()->max_vertex_count ()); + db::PolygonGenerator pg2 (splitter, false /*don't resolve holes*/, true /*min. coherence*/); db::SizingPolygonFilter siz (pg2, dx_with_mag, dy_with_mag, mode); for (db::Shapes::shape_iterator si = s.begin (db::ShapeIterator::All); ! si.at_end (); ++si) { @@ -1976,11 +2052,7 @@ DeepRegion::sized (coord_type dx, coord_type dy, unsigned int mode) const } - // in case of negative sizing the output polygons will still be merged (on positive sizing they might - // overlap after size and are not necessarily merged) - if (dx < 0 && dy < 0 && (merged_semantics () || is_merged ())) { - res->set_is_merged (true); - } + res->set_is_merged (will_be_merged); return res.release (); } diff --git a/src/db/db/dbDeepRegion.h b/src/db/db/dbDeepRegion.h index 3d9d5c3fb..ad26af8dc 100644 --- a/src/db/db/dbDeepRegion.h +++ b/src/db/db/dbDeepRegion.h @@ -66,9 +66,11 @@ public: virtual RegionIteratorDelegate *begin () const; virtual RegionIteratorDelegate *begin_merged () const; + virtual RegionIteratorDelegate *begin_unmerged () const; virtual std::pair begin_iter () const; virtual std::pair begin_merged_iter () const; + virtual std::pair begin_unmerged_iter () const; virtual bool empty () const; virtual bool is_merged () const; @@ -176,10 +178,11 @@ private: mutable DeepLayer m_merged_polygons; mutable bool m_merged_polygons_valid; mutable size_t m_merged_polygons_boc_hash; - bool m_is_merged; + mutable bool m_is_merged; void init (); void ensure_merged_polygons_valid () const; + void ensure_unmerged_polygons_valid () const; DeepLayer not_with_impl (const DeepRegion *other, PropertyConstraint property_constraint) const; DeepLayer and_with_impl (const DeepRegion *other, PropertyConstraint property_constraint) const; std::pair and_and_not_with (const DeepRegion *other, PropertyConstraint property_constraint) const; diff --git a/src/db/db/dbDeepShapeStore.cc b/src/db/db/dbDeepShapeStore.cc index 9286bd5cf..3973d1b6d 100644 --- a/src/db/db/dbDeepShapeStore.cc +++ b/src/db/db/dbDeepShapeStore.cc @@ -232,6 +232,14 @@ bool DeepLayer::operator== (const DeepLayer &other) const return true; } +void +DeepLayer::swap (DeepLayer &other) +{ + tl_assert (mp_store.get () == other.mp_store.get ()); + std::swap (m_layer, other.m_layer); + std::swap (m_layout, other.m_layout); +} + db::Layout & DeepLayer::layout () { diff --git a/src/db/db/dbDeepShapeStore.h b/src/db/db/dbDeepShapeStore.h index b79b8cd59..f60a124f7 100644 --- a/src/db/db/dbDeepShapeStore.h +++ b/src/db/db/dbDeepShapeStore.h @@ -120,6 +120,11 @@ public: */ bool operator== (const DeepLayer &other) const; + /** + * @brief Swap two layers + */ + void swap (DeepLayer &other); + /** * @brief Gets the layout object * The return value is guaranteed to be non-null. diff --git a/src/db/db/dbEmptyRegion.h b/src/db/db/dbEmptyRegion.h index a97e908e7..fb551c9b5 100644 --- a/src/db/db/dbEmptyRegion.h +++ b/src/db/db/dbEmptyRegion.h @@ -46,9 +46,11 @@ public: virtual RegionIteratorDelegate *begin () const { return 0; } virtual RegionIteratorDelegate *begin_merged () const { return 0; } + virtual RegionIteratorDelegate *begin_unmerged () const { return 0; } virtual std::pair begin_iter () const { return std::make_pair (db::RecursiveShapeIterator (), db::ICplxTrans ()); } virtual std::pair begin_merged_iter () const { return std::make_pair (db::RecursiveShapeIterator (), db::ICplxTrans ()); } + virtual std::pair begin_unmerged_iter () const { return std::make_pair (db::RecursiveShapeIterator (), db::ICplxTrans ()); } virtual bool empty () const { return true; } virtual size_t count () const { return 0; } diff --git a/src/db/db/dbFlatRegion.cc b/src/db/db/dbFlatRegion.cc index 92c4e6609..720f376de 100644 --- a/src/db/db/dbFlatRegion.cc +++ b/src/db/db/dbFlatRegion.cc @@ -33,29 +33,33 @@ namespace db // ------------------------------------------------------------------------------------------------------------- // FlatRegion implementation -FlatRegion::FlatRegion () - : MutableRegion (), mp_polygons (new db::Shapes (false)), mp_merged_polygons (new db::Shapes (false)) +FlatRegion::FlatRegion (double area_ratio, size_t max_vertex_count) + : MutableRegion (), mp_polygons (new db::Shapes (false)), mp_merged_polygons (new db::Shapes (false)), + m_area_ratio (area_ratio), m_max_vertex_count (max_vertex_count) { init (); } FlatRegion::FlatRegion (const FlatRegion &other) - : MutableRegion (other), mp_polygons (other.mp_polygons), mp_merged_polygons (other.mp_merged_polygons) + : MutableRegion (other), mp_polygons (other.mp_polygons), mp_merged_polygons (other.mp_merged_polygons), + m_area_ratio (other.m_area_ratio), m_max_vertex_count (other.m_max_vertex_count) { init (); m_is_merged = other.m_is_merged; m_merged_polygons_valid = other.m_merged_polygons_valid; } -FlatRegion::FlatRegion (const db::Shapes &polygons, bool is_merged) - : MutableRegion (), mp_polygons (new db::Shapes (polygons)), mp_merged_polygons (new db::Shapes (false)) +FlatRegion::FlatRegion (const db::Shapes &polygons, bool is_merged, double area_ratio, size_t max_vertex_count) + : MutableRegion (), mp_polygons (new db::Shapes (polygons)), mp_merged_polygons (new db::Shapes (false)), + m_area_ratio (area_ratio), m_max_vertex_count (max_vertex_count) { init (); m_is_merged = is_merged; } -FlatRegion::FlatRegion (const db::Shapes &polygons, const db::ICplxTrans &trans, bool merged_semantics, bool is_merged) - : MutableRegion (), mp_polygons (new db::Shapes (polygons)), mp_merged_polygons (new db::Shapes (false)) +FlatRegion::FlatRegion (const db::Shapes &polygons, const db::ICplxTrans &trans, bool merged_semantics, bool is_merged, double area_ratio, size_t max_vertex_count) + : MutableRegion (), mp_polygons (new db::Shapes (polygons)), mp_merged_polygons (new db::Shapes (false)), + m_area_ratio (area_ratio), m_max_vertex_count (max_vertex_count) { init (); m_is_merged = is_merged; @@ -63,8 +67,9 @@ FlatRegion::FlatRegion (const db::Shapes &polygons, const db::ICplxTrans &trans, set_merged_semantics (merged_semantics); } -FlatRegion::FlatRegion (bool is_merged) - : MutableRegion (), mp_polygons (new db::Shapes (false)), mp_merged_polygons (new db::Shapes (false)) +FlatRegion::FlatRegion (bool is_merged, double area_ratio, size_t max_vertex_count) + : MutableRegion (), mp_polygons (new db::Shapes (false)), mp_merged_polygons (new db::Shapes (false)), + m_area_ratio (area_ratio), m_max_vertex_count (max_vertex_count) { init (); m_is_merged = is_merged; @@ -126,6 +131,20 @@ FlatRegion::ensure_merged_polygons_valid () const } } +void +FlatRegion::ensure_unmerged_polygons_valid () const +{ + if (! m_is_merged || (m_area_ratio == 0.0 && m_max_vertex_count == 0)) { + return; + } + + mp_merged_polygons.reset (new db::Shapes (*mp_polygons)); + m_merged_polygons_valid = true; + m_is_merged = false; + + break_polygons (*mp_polygons, m_max_vertex_count, m_area_ratio); +} + RegionIteratorDelegate *FlatRegion::begin () const { return new FlatRegionIterator (mp_polygons.get_const ()); @@ -141,6 +160,12 @@ RegionIteratorDelegate *FlatRegion::begin_merged () const } } +RegionIteratorDelegate *FlatRegion::begin_unmerged () const +{ + ensure_unmerged_polygons_valid (); + return begin (); +} + std::pair FlatRegion::begin_iter () const { return std::make_pair (db::RecursiveShapeIterator (*mp_polygons), db::ICplxTrans ()); @@ -156,6 +181,12 @@ std::pair FlatRegion::begin_merged_i } } +std::pair FlatRegion::begin_unmerged_iter () const +{ + ensure_unmerged_polygons_valid (); + return begin_iter (); +} + bool FlatRegion::empty () const { return mp_polygons->empty (); diff --git a/src/db/db/dbFlatRegion.h b/src/db/db/dbFlatRegion.h index 3ade8fee6..5610eb061 100644 --- a/src/db/db/dbFlatRegion.h +++ b/src/db/db/dbFlatRegion.h @@ -51,10 +51,10 @@ public: typedef db::layer polygon_layer_wp_type; typedef polygon_layer_wp_type::iterator polygon_iterator_wp_type; - FlatRegion (); - FlatRegion (const db::Shapes &polygons, bool is_merged = false); - FlatRegion (const db::Shapes &polygons, const db::ICplxTrans &trans, bool merged_semantics, bool is_merged = false); - FlatRegion (bool is_merged); + FlatRegion (double area_ratio = 0.0, size_t max_vertex_count = 0); + FlatRegion (const db::Shapes &polygons, bool is_merged = false, double area_ratio = 0.0, size_t max_vertex_count = 0); + FlatRegion (const db::Shapes &polygons, const db::ICplxTrans &trans, bool merged_semantics, bool is_merged = false, double area_ratio = 0.0, size_t max_vertex_count = 0); + FlatRegion (bool is_merged, double area_ratio = 0.0, size_t max_vertex_count = 0); FlatRegion (const FlatRegion &other); @@ -69,9 +69,11 @@ public: virtual RegionIteratorDelegate *begin () const; virtual RegionIteratorDelegate *begin_merged () const; + virtual RegionIteratorDelegate *begin_unmerged () const; virtual std::pair begin_iter () const; virtual std::pair begin_merged_iter () const; + virtual std::pair begin_unmerged_iter () const; virtual bool empty () const; virtual size_t count () const; @@ -143,13 +145,16 @@ private: FlatRegion &operator= (const FlatRegion &other); - bool m_is_merged; + mutable bool m_is_merged; mutable tl::copy_on_write_ptr mp_polygons; mutable tl::copy_on_write_ptr mp_merged_polygons; mutable bool m_merged_polygons_valid; + double m_area_ratio; + size_t m_max_vertex_count; void init (); void ensure_merged_polygons_valid () const; + void ensure_unmerged_polygons_valid () const; template void transform_generic (const Trans &trans) diff --git a/src/db/db/dbOriginalLayerRegion.cc b/src/db/db/dbOriginalLayerRegion.cc index ccc4c18cf..674ff7ec3 100644 --- a/src/db/db/dbOriginalLayerRegion.cc +++ b/src/db/db/dbOriginalLayerRegion.cc @@ -317,6 +317,12 @@ OriginalLayerRegion::begin_merged () const } } +RegionIteratorDelegate * +OriginalLayerRegion::begin_unmerged () const +{ + return begin (); +} + std::pair OriginalLayerRegion::begin_iter () const { @@ -334,6 +340,12 @@ OriginalLayerRegion::begin_merged_iter () const } } +std::pair +OriginalLayerRegion::begin_unmerged_iter () const +{ + return std::make_pair (m_iter, m_iter_trans); +} + bool OriginalLayerRegion::empty () const { diff --git a/src/db/db/dbOriginalLayerRegion.h b/src/db/db/dbOriginalLayerRegion.h index dd5fe82e5..a72db588b 100644 --- a/src/db/db/dbOriginalLayerRegion.h +++ b/src/db/db/dbOriginalLayerRegion.h @@ -51,9 +51,11 @@ public: virtual RegionIteratorDelegate *begin () const; virtual RegionIteratorDelegate *begin_merged () const; + virtual RegionIteratorDelegate *begin_unmerged () const; virtual std::pair begin_iter () const; virtual std::pair begin_merged_iter () const; + virtual std::pair begin_unmerged_iter () const; virtual bool empty () const; diff --git a/src/db/db/dbRegion.h b/src/db/db/dbRegion.h index 1cd9d1bbd..ce3aeb470 100644 --- a/src/db/db/dbRegion.h +++ b/src/db/db/dbRegion.h @@ -349,6 +349,17 @@ public: return RegionIterator (mp_delegate->begin_merged ()); } + /** + * @brief Returns the unmerged polygons + * + * "unmerged" polygons are polygons which are optimized for local operations, + * specifically broken according to the area ratio and max vertex count. + */ + const_iterator begin_unmerged () const + { + return RegionIterator (mp_delegate->begin_unmerged ()); + } + /** * @brief Delivers a RecursiveShapeIterator pointing to the polygons plus the necessary transformation */ @@ -365,6 +376,14 @@ public: return mp_delegate->begin_merged_iter (); } + /** + * @brief Delivers a RecursiveShapeIterator pointing to the unmerged polygons plus the necessary transformation + */ + std::pair begin_unmerged_iter () const + { + return mp_delegate->begin_unmerged_iter (); + } + /** * @brief Inserts the given shape (working object) into the region */ diff --git a/src/db/db/dbRegionDelegate.h b/src/db/db/dbRegionDelegate.h index e6714bf56..ff1c90fe4 100644 --- a/src/db/db/dbRegionDelegate.h +++ b/src/db/db/dbRegionDelegate.h @@ -185,9 +185,11 @@ public: virtual RegionIteratorDelegate *begin () const = 0; virtual RegionIteratorDelegate *begin_merged () const = 0; + virtual RegionIteratorDelegate *begin_unmerged () const = 0; virtual std::pair begin_iter () const = 0; virtual std::pair begin_merged_iter () const = 0; + virtual std::pair begin_unmerged_iter () const = 0; virtual bool empty () const = 0; virtual bool is_box () const = 0; diff --git a/src/db/unit_tests/dbDeepRegionTests.cc b/src/db/unit_tests/dbDeepRegionTests.cc index 947abd71a..55fc38675 100644 --- a/src/db/unit_tests/dbDeepRegionTests.cc +++ b/src/db/unit_tests/dbDeepRegionTests.cc @@ -3158,3 +3158,135 @@ TEST(deep_region_merged_with_pseudo_labels) rr2.merge (); EXPECT_EQ (rr2.to_string (), "(0,0;0,2000;2000,2000;2000,0){A=>17,B=>42};(998,2998;998,3002;1002,3002;1002,2998)"); } + +namespace { + +class AttachPropertiesProcessor + : public db::PolygonProcessorBase +{ +public: + AttachPropertiesProcessor (db::properties_id_type pid) + : m_pid (pid) + { } + + virtual void process (const db::PolygonWithProperties &s, std::vector &res) const + { + res.push_back (db::PolygonWithProperties (s, m_pid)); + } + + virtual bool result_is_merged () const + { + return true; + } + +private: + db::properties_id_type m_pid; +}; + +} + +TEST(deep_unmerged_regions) +{ + db::Layout ly; + + db::Cell &top = ly.cell (ly.add_cell ("TOP")); + + unsigned int l1 = ly.insert_layer (db::LayerProperties (1, 0)); + unsigned int l2 = ly.insert_layer (db::LayerProperties (2, 0)); + + top.shapes (l1).insert (db::Box (0, 0, 2000, 2000)); + top.shapes (l2).insert (db::Box (200, 200, 1800, 1800)); + + db::DeepShapeStore dss; + dss.set_max_area_ratio (2.0); + + db::Region r1 (db::RecursiveShapeIterator (ly, top, l1), dss); + db::Region r2 (db::RecursiveShapeIterator (ly, top, l2), dss); + + db::DeepRegion *r1_deep = dynamic_cast (r1.delegate ()); + EXPECT_EQ (r1_deep->is_merged (), false); + EXPECT_EQ (r1_deep->merged_polygons_available (), false); + + db::Region r12 = (r1 - r2).merged (); + EXPECT_EQ (r12.to_string (), "(0,0;0,2000;2000,2000;2000,0/200,200;1800,200;1800,1800;200,1800)"); + db::DeepRegion *r12_deep = dynamic_cast (r12.delegate ()); + + EXPECT_EQ (r12_deep->is_merged (), true); + EXPECT_EQ (r12_deep->merged_polygons_available (), true); + + // this will force r12 back into unmerged state, but merged polygons are still available + db::Region rx = r1 | r12; + + EXPECT_EQ (r12_deep->is_merged (), false); + EXPECT_EQ (r12_deep->merged_polygons_available (), true); + EXPECT_EQ (r12.to_string (), "(200,0;200,200;2000,200;2000,0);(1800,200;1800,1000;2000,1000;2000,200);(0,0;0,1000;200,1000;200,0);(1800,1000;1800,2000;2000,2000;2000,1000);(0,1000;0,1800;200,1800;200,1000);(0,1800;0,2000;1800,2000;1800,1800)"); + EXPECT_EQ (rx.to_string (), "(0,0;0,2000;2000,2000;2000,0)"); + + // repeat with properties + + db::PropertiesSet ps; + ps.insert (tl::Variant ("n"), tl::Variant (42)); + auto pid = db::properties_id (ps); + AttachPropertiesProcessor ap (pid); + r12 = (r1 - r2).merged ().processed (ap); + + EXPECT_EQ (r12.to_string (), "(0,0;0,2000;2000,2000;2000,0/200,200;1800,200;1800,1800;200,1800){n=>42}"); + r12_deep = dynamic_cast (r12.delegate ()); + + EXPECT_EQ (r12_deep->is_merged (), true); + EXPECT_EQ (r12_deep->merged_polygons_available (), true); + + rx = r1 | r12; + + EXPECT_EQ (r12_deep->is_merged (), false); + EXPECT_EQ (r12_deep->merged_polygons_available (), true); + EXPECT_EQ (r12.to_string (), "(200,0;200,200;2000,200;2000,0){n=>42};(1800,200;1800,1000;2000,1000;2000,200){n=>42};(0,0;0,1000;200,1000;200,0){n=>42};(1800,1000;1800,2000;2000,2000;2000,1000){n=>42};(0,1000;0,1800;200,1800;200,1000){n=>42};(0,1800;0,2000;1800,2000;1800,1800){n=>42}"); + EXPECT_EQ (rx.to_string (), "(0,0;0,2000;2000,2000;2000,0);(0,0;0,2000;2000,2000;2000,0/200,200;1800,200;1800,1800;200,1800){n=>42}"); + + // now with "+" instead of "|" + + db::Region r12p = (r1 - r2).merged (); + db::DeepRegion *r12p_deep = dynamic_cast (r12p.delegate ()); + + EXPECT_EQ (r12p_deep->is_merged (), true); + EXPECT_EQ (r12p_deep->merged_polygons_available (), true); + + // this will also force r12 back into unmerged state, but merged polygons are still available + db::Region ry = (r1 + r12p).merged (); + + EXPECT_EQ (r12p_deep->is_merged (), false); + EXPECT_EQ (r12p_deep->merged_polygons_available (), true); + EXPECT_EQ (r12p.to_string (), "(200,0;200,200;2000,200;2000,0);(1800,200;1800,1000;2000,1000;2000,200);(0,0;0,1000;200,1000;200,0);(1800,1000;1800,2000;2000,2000;2000,1000);(0,1000;0,1800;200,1800;200,1000);(0,1800;0,2000;1800,2000;1800,1800)"); + EXPECT_EQ (ry.to_string (), "(0,0;0,2000;2000,2000;2000,0)"); +} + +TEST(processed_delivers_polygon_refs) +{ + db::Layout ly; + + db::Cell &top = ly.cell (ly.add_cell ("TOP")); + + unsigned int l1 = ly.insert_layer (db::LayerProperties (1, 0)); + unsigned int l2 = ly.insert_layer (db::LayerProperties (2, 0)); + + top.shapes (l1).insert (db::Box (0, 0, 2000, 2000)); + top.shapes (l2).insert (db::Box (200, 200, 1800, 1800)); + + db::DeepShapeStore dss; + + db::Region r1 (db::RecursiveShapeIterator (ly, top, l1), dss); + db::Region r2 (db::RecursiveShapeIterator (ly, top, l2), dss); + + db::PropertiesSet ps; + ps.insert (tl::Variant ("n"), tl::Variant (42)); + auto pid = db::properties_id (ps); + AttachPropertiesProcessor ap (pid); + + db::Region r12 = (r1 - r2).merged ().processed (ap); + + r12.set_join_properties_on_merge (true); + + db::Region rx = r1 | r12; + + EXPECT_EQ (rx.to_string (), "(0,0;0,2000;2000,2000;2000,0);(0,0;0,2000;2000,2000;2000,0/200,200;1800,200;1800,1800;200,1800){n=>42}"); +} diff --git a/testdata/algo/deep_region_au9a.gds b/testdata/algo/deep_region_au9a.gds index 16dd35174b2f8a95a8b0c1100f3693faf6fd287f..615373aaeb956b555df469e7f1753500668a2bdd 100644 GIT binary patch delta 613 zcmZ{hF-yci5QQhZx0@IvDta2i74bk35o|Q`(_f(2=z<8sVW*V{ zHvWPuwDAX69F_`_Qtr-MXR=wax$14+`(}0@IV-<}DM(-}fr`W2Pv9^DJ`BL{|1)?@ zZf~vujB-(1Jzd;t++|Da&vUmo=^j)>&$)|KjrUmjRC0Do{j)<{>)!?dXX;SIs@oTh zwOd+uXS8m&0D`)SgSt8wlY@u@uw~45NiXI6wE5N_qyWwXfY`9Awed-Db%-!OHX*63 z8rUigo4kN&BZZ{yw}Gu%UsehBETrB=Bn?kx)Pg+mP04#i)T^9OH9snMLhSXUbtlA* zZ+ONuP+xMYsF+~I7zYxy@8%uR(2r!`^PBh*tYXyqq_{focx^(CDl!9Gr6Ka2W&zVi i3Q0Y@k~UklzQ_pnETmRk?3nXZMqRl_J^ym-9k4%Gm66T> delta 361 zcmX>l(Ipziz{bGD6u}_F$i)7bfr){aK@cdSjLc@>U}E#}bYfr-VP>^+>@@d2w)}&o z%MSeov!g;7WLR;M0MS|FN%foI#&rw~%vA`QO$j2-rZo8un-mwT8v_ITI|c?;x5*D! zO(u)5*Ghq{`6B@|`p5tOe Date: Thu, 19 Mar 2026 14:33:59 +0100 Subject: [PATCH 041/212] New test data --- testdata/bd/strmxor_au4d.oas | Bin 889 -> 908 bytes testdata/bd/strmxor_au5d.oas | Bin 882 -> 901 bytes testdata/drc/drcSimpleTests_au31d.gds | Bin 3898 -> 3994 bytes testdata/drc/drcSimpleTests_au32d.gds | Bin 4002 -> 4050 bytes testdata/drc/drcSimpleTests_au60d.gds | Bin 287138 -> 291170 bytes 5 files changed, 0 insertions(+), 0 deletions(-) diff --git a/testdata/bd/strmxor_au4d.oas b/testdata/bd/strmxor_au4d.oas index 0724ac6fecc583ed7d471a5f2e360630c2e8e00a..f46b73a164eeed52e75ee1c865026e35fef6dee7 100644 GIT binary patch delta 434 zcmV;j0Zsn-28;)g%729hngfkeze~eF6u!H1F|no5^c^-O*rkY*AUFuNxI1)r_YV;f z>CkTR2jWn-xD}@?T_i#)9XdGFq2SOVibHWq!Gd>}o~F7qLwLM<-}m18zPH-JX}u3C z>SKF4#-w%_woya-kF`q|mMNG2394wHPlvhlDG zt;=vky9L)4VV}YTJeyT6s+fEczLjgI(egRonDGS0uht=v#r*vemqdc2#f(3yEvWzh z6=J>BdqQ%qWZU$uq*Z_9c7&WLp`Fu>cUU@LJJK@`5+TPTbV)!FM~eGd{4`z@X3qH% c(WIAUd8tWXoKSXC$NLSFRRSgf=#zW`{m8}47XSbN delta 415 zcmV;Q0bu@&2l)n&%73N=hXYknF-yZh6wY0FF`=cY={rnIX%+`3L2xK&@gH<|_lKk+ z(xKgo6me*`xV7TYrHe$U;t;{14uuL8syI}qW+?dX+8|!w`0m~JeeZjh%^^z~A!gzw zj&zOjx{kgT0jC>r$oK-VX1=5}iLnWR+0dDxg?Orqf^VV1H-DBW1ZFcAYr0t+SP!~k zXx<}l@5)jwi$S`s#|%6fr5n03{c_O99R;U=!!p@y5DCY5uH9`Z@)SP!y6s%ZO54R( zvv0?4Pc}uayQ_=~SW@ViTo_p6mGZJ6Lyq=h(R`ai&Q^nU9SlrAw=#IL?`dGA`Qfs1 zmcr%#{_`Zxcz*<%Aer(jsm9~{qNv~$9`encgdt#reomAxD$Hr6Jg8->5IER#Jm?Yp zPKMCdJqU|cnAqH&NW!+OC>?iV zM|704uj3i?w$BjKrx;@y@4#U6V~%ItM8~~G!CDo;{0=K7SpSo@VV?^&I#2uplV}1a J0o9X_0{vR7&Jh3r diff --git a/testdata/bd/strmxor_au5d.oas b/testdata/bd/strmxor_au5d.oas index ab41c95ad4d7e5d0c1896cf87a689c5984cdf18b..1b54d1d9724a4cc3a6288f505649495e54d84a77 100644 GIT binary patch delta 444 zcmV;t0Ym=s289QZ$bW$bl>?1ZF-yZh6uvvTG_j@8^c`(VFiTM>O)vd zA3M|#CJhaIb4m&SVO30G3U%W-heQk>4UDFSbu@%CjXAyvGJn1^nG+bEonqPr=$d^^ z*U{+{Y3+zqy#PVJp`{gYGRikKN%~#_AGT#Uq0p;wnhY<3ahafpqAZ@!H!^PBY^D_ju?jusjht}W^R{}B?u(|^Ts?qt{OSn8_&*zE{Ak>Z`xPiDv*u|2sn zACzMez9>+{k>Y-qKaE#qnZNcDQ+1bBd8z7NoKSXK931a~jyd^p*j~ADZ-L<`!|=#t m_`b-n?=pO`^$n9w0wxUM1OWg6BLQ;(0097#fdcOXfB*ozQOdOd delta 410 zcmV;L0cHM$2l57x$bX^)f&*1iF-yZh6waNzG@+%b={uU1(ky~bg5Xfl;_q7b803eErrHL^(&2`444Jropq1|NLgHWISZaq-o> zwG+3IO_7`KD&qo{6gnZ7@2ts6d0Cbr$9st=+MczpnnOHDZi>}JSim~mSlDny5w;Dn(Kea;=c3eg2x>Gx* zqnv#m&!D$`hLE;mOk}(RgVDzv&wCqP_X-7zQi6>w!3pjQg88ms=i9%NVFD%r&Xb4& E{per8EdT%j diff --git a/testdata/drc/drcSimpleTests_au31d.gds b/testdata/drc/drcSimpleTests_au31d.gds index 38514972a42598943c3b26e6772b1ddb2064f74c..983f2e2b6ea983ca3367afa94b4c9206de3f2213 100644 GIT binary patch delta 339 zcmdlbH%mT>fsKKQDS|{L4=vr&au0amp=VO2#F(S&DfHlK=w)=QjohlL!dy zx@)o@o7`j_Hu=fBSv@v4vxPG9Stl?sY&T(G0MR#pOitsFo9x0NKlw7d$L84_|JeW( C3^#xP diff --git a/testdata/drc/drcSimpleTests_au32d.gds b/testdata/drc/drcSimpleTests_au32d.gds index c899c06e9b69da1a9cace7b87ec24cf27caa9244..db34cf7334b843cfcdf9e9eaffe5bb20bcc1ba13 100644 GIT binary patch delta 470 zcmZ1^e@Q-yfsKKQDS|{L4=vr&aui z_E4O1dF;5&OyY3Gsc#?0UYv51ICF8yZ5HDyV4i%9*LCu47H$a!2F`B`3?>l}+I1HL n1J5P~2G?Da*YT<{>j*GUp2jQ3<+|(t|NnD9!khW{rZ55kasE%s delta 443 zcmca4zeqlcfsKKQDS|{L4=vr&aui z_E4O1dF;5&OyY3Gsc#?0UYv51ICF8yZ5HDyU>0Ct;QYqGU=jhLU3X0u}Q99isYh$UVNOVg1hT`eV-x~;=v1w5Ieo=9;&{KF-D_dM@=hb+1G zD}U{e{c(BjeV@{@QKNu4BxR%&d$sL~cjq zw;zmjA#$7V`Pwpf8FMUSOnb-{YK2Ykv?>TZAc8>rgTgT8Y+1@=Qez>y8#dLU>jxx+ zXz6uH==6o88bZIY*TM=#GNBueA1akbla{ACXmn|Ly22;dr_3uhmC_i_HdMOMz7<&+O67^Q|8i}zNUgT4b{%oW z`ocng{f?2WynE!(mfG$0&o6;P3~ydymvr-JxxRW!j8mcMAH0_AQ{{q&MJ~ebgYuy; zs{IYd`MR=DbjxQhW%-8diZYbUcvv!HZ`)&`^)El7zJpzDSr1jK;$FTe?j~uu7|Ykvh8ar_8@tAK*qhSrMzqWCOb;`bd_rtH z$GaV@6Zf4#-H43uHlF2~xwOI9Qy#`L-BRZDGqx3{TVB7>II)*N@>DdaJ4r`a)QwEM zD0Sqim`mNtdqP(}Sw=b=YcfubZ`NFXvD-fBc1d?+o(&t$$bJX;GW_qXOj(En6+M>& z8pB+k^4wREX;c-*R4ebHN)L6u^@82_RpduT@8ohPK^zz%>JCKK7-l5N80Yy~jz-%? zG_uP07?Y`|7S(-_+Qp~@Xb89 zDT>WIR)b`CMmL{Y4T9plXEpep8QqfO8QsR|F@11jK3tGR=O4L2=g+xeH@AD>zsNo# ziLCFJWY_oezqnzqfQkF!J%yk(7Z2loqcUG0njvjI9|-h!e5=2EC+*`M}>GP>>!rO}SR#`Rp~k@y9OLH_CuD6~^DvomO*saqOo>gK^2*qNWuz(RN%`uM;s z1d2EG$?!Jxsqs`wba&w*v}>{d*<;WqTo1+TxHTy2NcF@tu&yeDymSIOTx3#K98C{Q zKpTH!4E_KcNqLGGL8=W7|;*3Vn6Lrt#ypU_DKpSg}@ z`r|7iZV#3zO&kyRGFG?DG{e2zIRm~Y6CM^wx(Py(q{7lkENsIJhBNRLwB6?%<%^uF zLC)n;aTIxDNKp)_vs8w33kp+wl+n+zaW;?ez%8h^u?pTt*E`TGK+_mERB+c#+j}FNINm77BF$_?<4SNz(r;~?o;c$?69=I+2wUY7Q;xmbta0-p1zc6k6 z+AFrSsMso@(0eMyRts*?n`xS43Tfm;8s!s>#`hu&6}Sk#2Z z1QxXAD%5!7|AaOLmPQL=Jy*di9tpWlh%cea+yK3RM&>6~)Hq7qD;J?a{|9#Tjz%>G zZM{UcJ}$SiCC4ANHpTWdPMNW}`!c?-csVHM1K(gQU!JBj%2=8SbH3RUQ%RUl=PfZh zVl){i&%OgkQ{t~Z1#%`DE8g2qtAu&#tr+eN94Zz?ZYErHuW25vVXV4WncNrgOZ#x0 zrM=RdF~4VuEpczgaqkvb;%4KxldCLoeymG55#gQXRyfn7xUzDjq?t+Y(V7wNjo^EP z1vX6zhyWxBKyL~HPAvc^5(1DU0KG5>(5}QSPzVGdNdS6p5YVy!pt~agNdnLdf`D@i z0J<~+kR$*-wg~V{;cy`qG*4l+q@Y_d80LwdVrAUn|Zl4k~*rW$~3<`%~v6Eql$jAZy&|MPVv%PN&Op_ z@%=}`JU9nE{K+{ulug5hGABuy(vEkCL;RqbA%yJBU^YIGm~DiR=;E>vtdy4jSXmK41x9ynA2PpO;Nw2LbKd*? z&OP^c&OI;JX8E+N{W;Qcvg-Yod- zn(r;k&9t_b@=~G?7Op#2PEUwZhN;zswxWX>gs4KudPxXI7Gvb=8%Js|vdDVKmTpKV zs!&4ITO`>5Igl$7feQj6Fn%K$)FQXD#!*g zf@0)J)rUfo+SRe5g|t~68z)H0n_pgz* zJrO70iE>LKlJ-VZ5hvHh=pu#W<)nE{&N`*p(rp=hR@Of-`Oi0Ki16%jhVpF1rH3{# zLj+G=iQUx6W9HKQyw#bK$KN>}Vinbbi37C+@@`ZQmyussMsJs-%hP$kYlQ9VEqN_c zI2l@HGCr$Ml{1gLB0huadfk?Mk?w6T=-$-NBlmvUA{;;3a8@|wa>v=vRl-X5e|rX? zokk2AsP&wcW)Bw0{y|re1YT-(Td2x)l;)n-(Kc5NEf}t(r>KtlhEr+c1sy%M^;=<#u0il>h~4qEJ~rJe3NDvid{6C+jfU`zczp^T3Pe)u2A=;}y-Db&F( zCW3+K4Pa%xiBLrSgD-V88{jYA7IrfQEUYOBjUoD z;6{xjSZ3{0+_!B6vNVcHPciP=%61P!1FIcJC3o(j@y$Xu>zs#j-h#$C+{QPDNTn0G zcsH6JH^%qPK?1ArKqYF?EMVTI1t?|a1t^HJ@($d>t5mmL@dX6;B(SniQMJcDfi z@^kjuE`{YD*$&QX{&~)}?NC_mxgyS5*Vym3DJ=KM7XHomU1QIODJ=KMUgm878v6~Z z=bE`kc80SWuGzu+bZSvyxkuKt0&&dhgF@c?eY0?qwfnH;_WNl1pWrdrpWuP?%)$;H zV1EdfumK+-dw%l!2Yjr-4|<%WyVqHk@^AixXXVnv-Byg z%fG@*OV~2|gwitaB-UUa!{6fS7?z}VVYTB!Sgm6ctKB;VrMz$Y2iVxAY3yl}3(fK~ w(6Y{FIK;Kwn9&5fntLJ8)k_cHi|=ZrubIz}%gl>#>~s}K_yl!Tfy)2szv$=p>i_@% From 00c826688fa59dcc23facb1b8db681891ab39743 Mon Sep 17 00:00:00 2001 From: Matthias Koefferlein Date: Wed, 18 Mar 2026 22:01:26 +0100 Subject: [PATCH 042/212] Added the ability to run DRC and LVS from strmrun --- src/buddies/src/bd/bd.pro | 4 +- src/buddies/src/bd/strmrun.cc | 2 + src/buddies/src/buddy_app.pri | 2 +- src/buddies/unit_tests/bdStrmrunTests.cc | 44 ++++++++++++++++------ src/drc/drc/built-in-macros/_drc_engine.rb | 16 ++++---- 5 files changed, 46 insertions(+), 22 deletions(-) diff --git a/src/buddies/src/bd/bd.pro b/src/buddies/src/bd/bd.pro index d3b3faa09..9d913cffe 100644 --- a/src/buddies/src/bd/bd.pro +++ b/src/buddies/src/bd/bd.pro @@ -41,7 +41,9 @@ INCLUDEPATH += $$RBA_INC DEPENDPATH += $$RBA_INC equals(HAVE_RUBY, "1") { - LIBS += -lklayout_rba + INCLUDEPATH += $$DRC_INC $$LVS_INC + DEPENDPATH += $$DRC_INC $$LVS_INC + LIBS += -lklayout_rba -lklayout_drc -lklayout_lvs } else { LIBS += -lklayout_rbastub } diff --git a/src/buddies/src/bd/strmrun.cc b/src/buddies/src/bd/strmrun.cc index b324ecc88..1bcc83b76 100644 --- a/src/buddies/src/bd/strmrun.cc +++ b/src/buddies/src/bd/strmrun.cc @@ -36,6 +36,8 @@ #include "libForceLink.h" #include "rdbForceLink.h" #include "pexForceLink.h" +#include "drcForceLink.h" +#include "lvsForceLink.h" #include "lymMacro.h" #include "lymMacroCollection.h" diff --git a/src/buddies/src/buddy_app.pri b/src/buddies/src/buddy_app.pri index 58da418bf..d7a96c693 100644 --- a/src/buddies/src/buddy_app.pri +++ b/src/buddies/src/buddy_app.pri @@ -25,7 +25,7 @@ INCLUDEPATH += $$RBA_INC DEPENDPATH += $$RBA_INC equals(HAVE_RUBY, "1") { - LIBS += -lklayout_rba + LIBS += -lklayout_rba -lklayout_drc -lklayout_lvs } else { LIBS += -lklayout_rbastub } diff --git a/src/buddies/unit_tests/bdStrmrunTests.cc b/src/buddies/unit_tests/bdStrmrunTests.cc index 0766c7bd9..c4762915e 100644 --- a/src/buddies/unit_tests/bdStrmrunTests.cc +++ b/src/buddies/unit_tests/bdStrmrunTests.cc @@ -28,10 +28,7 @@ TEST(1) { #if defined(HAVE_PYTHON) - std::string fp (tl::testsrc ()); - fp += "/testdata/bd/strmrun.py"; - - std::string cmd; + std::string cmd_call; #if defined(__APPLE__) // NOTE: because of system integrity, MacOS does not inherit DYLD_LIBRARY_PATH to child @@ -39,19 +36,42 @@ TEST(1) const char *ldpath_name = "DYLD_LIBRARY_PATH"; const char *ldpath = getenv (ldpath_name); if (ldpath) { - cmd += std::string (ldpath_name) + "=\"" + ldpath + "\"; export " + ldpath_name + "; "; + cmd_call += std::string (ldpath_name) + "=\"" + ldpath + "\"; export " + ldpath_name + "; "; } #endif - cmd += tl::combine_path (tl::get_inst_path (), "strmrun ") + fp; - tl::info << cmd; + cmd_call += tl::combine_path (tl::get_inst_path (), "strmrun"); - tl::InputPipe pipe (cmd); - tl::InputStream is (pipe); - std::string data = is.read_all (); - tl::info << data; + { + std::string fp (tl::testsrc ()); + fp += "/testdata/bd/strmrun.py"; + + std::string cmd = cmd_call + " " + fp; + tl::info << cmd; + + tl::InputPipe pipe (cmd); + tl::InputStream is (pipe); + std::string data = is.read_all (); + tl::info << data; + + EXPECT_EQ (data, "Hello, world (0,-42;42,0)!\n"); + } + + { + std::string fp (tl::testsrc ()); + fp += "/testdata/bd/strmrun.drc"; + + std::string cmd = cmd_call + " " + fp; + tl::info << cmd; + + tl::InputPipe pipe (cmd); + tl::InputStream is (pipe); + std::string data = is.read_all (); + tl::info << data; + + EXPECT_EQ (data, "This is DRC.\n"); + } - EXPECT_EQ (data, "Hello, world (0,-42;42,0)!\n"); #endif } diff --git a/src/drc/drc/built-in-macros/_drc_engine.rb b/src/drc/drc/built-in-macros/_drc_engine.rb index e2ff2b7ee..9aee34eca 100644 --- a/src/drc/drc/built-in-macros/_drc_engine.rb +++ b/src/drc/drc/built-in-macros/_drc_engine.rb @@ -164,7 +164,7 @@ module DRC def initialize - cv = RBA::CellView::active + cv = RBA.const_defined?(:CellView) && RBA::CellView::active @time = Time::now @force_gc = ($drc_force_gc == true) # for testing, $drc_force_gc can be set to true @@ -1444,7 +1444,7 @@ module DRC if arg =~ /^@(\d+)/ n = $1.to_i - 1 - view = RBA::LayoutView::current + view = RBA.const_defined?(:LayoutView) && RBA::LayoutView::current view || raise("No view open") (n >= 0 && view.cellviews > n) || raise("Invalid layout index @#{n + 1}") cv = view.cellview(n) @@ -1543,7 +1543,7 @@ module DRC if arg =~ /^@(\d+)/ n = $1.to_i - 1 - view = RBA::LayoutView::current + view = RBA.const_defined?(:LayoutView) && RBA::LayoutView::current view || raise("No view open") (n >= 0 && view.cellviews > n) || raise("Invalid layout index @#{n + 1}") cv = view.cellview(n) @@ -1608,7 +1608,7 @@ module DRC self._context("report") do # finish what we got so far - view = RBA::LayoutView::current + view = RBA.const_defined?(:LayoutView) && RBA::LayoutView::current @def_output && @def_output.finish(false, view) @def_output = nil @@ -2925,7 +2925,7 @@ CODE def _start(job_description) # clearing the selection avoids some nasty problems - view = RBA::LayoutView::current + view = RBA.const_defined?(:LayoutView) && RBA::LayoutView::current view && view.cancel @total_timer = RBA::Timer::new @@ -2950,7 +2950,7 @@ CODE _flush - view = RBA::LayoutView::current + view = RBA.const_defined?(:LayoutView) && RBA::LayoutView::current @def_output && @def_output.finish(final, view) @@ -3484,7 +3484,7 @@ CODE output_rdb_index = nil - view = RBA::LayoutView::current + view = RBA.const_defined?(:LayoutView) && RBA::LayoutView::current if view if self._rdb_index output_rdb = RBA::ReportDatabase::new("") # reuse existing name @@ -3518,7 +3518,7 @@ CODE if arg =~ /^@(\d+|\+)/ - view = RBA::LayoutView::current + view = RBA.const_defined?(:LayoutView) && RBA::LayoutView::current view || raise("No view open") if $1 == "+" prev_cv = view.active_cellview_index From 2dfcc9293e9dcab0b9fc50cfe2c865e7f529aae1 Mon Sep 17 00:00:00 2001 From: Matthias Koefferlein Date: Fri, 20 Mar 2026 16:30:28 +0100 Subject: [PATCH 043/212] Allowing to explicity specify a format Most tools and functions now allow to explicitly specify a format for input and output. On input, the format is usually detected, but for some cases, this is not possible (e.g. DEF). So you can specify the format attached to the file name in square brackets: e.g. file.defok[def] "def" is the intended suffix, "defok" is the given one. On output, the same is possible, specifically in strmxor and strmclip: strmxor a.gds b.gds out.xor[oas] --- src/buddies/src/bd/strmclip.cc | 4 +- src/buddies/src/bd/strmxor.cc | 4 +- src/buddies/unit_tests/bdConverterTests.cc | 28 ++++++++ src/buddies/unit_tests/bdStrmclipTests.cc | 28 ++++++++ src/buddies/unit_tests/bdStrmxorTests.cc | 46 +++++++++++++ src/db/db/dbEdgePairs.cc | 3 +- src/db/db/dbEdges.cc | 3 +- src/db/db/dbReader.cc | 25 +++++-- src/db/db/dbRegion.cc | 3 +- src/db/db/dbSaveLayoutOptions.cc | 30 +++++++-- src/db/db/dbSaveLayoutOptions.h | 2 +- src/db/db/dbTestSupport.cc | 2 +- src/db/db/dbTexts.cc | 3 +- src/db/db/gsiDeclDbCell.cc | 4 +- src/db/db/gsiDeclDbLayout.cc | 16 +++-- src/db/unit_tests/dbSaveLayoutOptionsTests.cc | 14 ++++ src/lay/lay/layMainWindow.cc | 6 +- .../lefdef/db_plugin/dbLEFDEFPlugin.cc | 40 ++--------- .../lefdef/unit_tests/dbLEFDEFImportTests.cc | 14 +++- src/tl/tl/tlStream.cc | 33 ++++++++- src/tl/tl/tlStream.h | 31 ++++++++- src/tl/unit_tests/tlStreamTests.cc | 36 ++++++++++ testdata/lefdef/issue-489/in.d | 34 ++++++++++ testdata/lefdef/issue-489/in.l | 63 ++++++++++++++++++ testdata/lefdef/strm2oas_small/au.gds | Bin 0 -> 576 bytes testdata/lefdef/strm2oas_small/in.defok | 29 ++++++++ 26 files changed, 425 insertions(+), 76 deletions(-) create mode 100644 testdata/lefdef/issue-489/in.d create mode 100644 testdata/lefdef/issue-489/in.l create mode 100644 testdata/lefdef/strm2oas_small/au.gds create mode 100644 testdata/lefdef/strm2oas_small/in.defok diff --git a/src/buddies/src/bd/strmclip.cc b/src/buddies/src/bd/strmclip.cc index 5ae5bd7a8..3af66f445 100644 --- a/src/buddies/src/bd/strmclip.cc +++ b/src/buddies/src/bd/strmclip.cc @@ -153,10 +153,10 @@ void clip (ClipData &data) // write the layout db::SaveLayoutOptions save_options; - save_options.set_format_from_filename (data.file_out); + std::string of = save_options.set_format_from_filename (data.file_out).second; data.writer_options.configure (save_options, target_layout); - tl::OutputStream stream (data.file_out); + tl::OutputStream stream (of); db::Writer writer (save_options); writer.write (target_layout, stream); } diff --git a/src/buddies/src/bd/strmxor.cc b/src/buddies/src/bd/strmxor.cc index 5845ac6ae..b3437705a 100644 --- a/src/buddies/src/bd/strmxor.cc +++ b/src/buddies/src/bd/strmxor.cc @@ -587,10 +587,10 @@ BD_PUBLIC int strmxor (int argc, char *argv[]) if (output_layout.get ()) { db::SaveLayoutOptions save_options; - save_options.set_format_from_filename (output); + std::string of = save_options.set_format_from_filename (output).second; writer_options.configure (save_options, *output_layout); - tl::OutputStream stream (output); + tl::OutputStream stream (of); db::Writer writer (save_options); writer.write (*output_layout, stream); diff --git a/src/buddies/unit_tests/bdConverterTests.cc b/src/buddies/unit_tests/bdConverterTests.cc index 226142cf5..7324999b9 100644 --- a/src/buddies/unit_tests/bdConverterTests.cc +++ b/src/buddies/unit_tests/bdConverterTests.cc @@ -212,6 +212,34 @@ TEST(7) db::compare_layouts (this, layout, input, db::NoNormalization); } +// Small DEF example with explicit format +TEST(8) +{ + std::string input = tl::testdata (); + input += "/lefdef/strm2oas_small/in.defok[def]"; + + std::string input_au = tl::testdata (); + input_au += "/lefdef/strm2oas_small/au.gds"; + + std::string output = this->tmp_file ("small_def"); + + const char *argv[] = { "x", input.c_str (), output.c_str () }; + + EXPECT_EQ (bd::converter_main (sizeof (argv) / sizeof (argv[0]), (char **) argv, bd::GenericWriterOptions::oasis_format_name), 0); + + db::Layout layout; + + { + tl::InputStream stream (output); + db::LoadLayoutOptions options; + db::Reader reader (stream); + reader.read (layout, options); + EXPECT_EQ (reader.format (), "OASIS"); + } + + db::compare_layouts (this, layout, input_au, db::WriteGDS2); +} + // Large LEF/DEF to OAS converter test TEST(10) { diff --git a/src/buddies/unit_tests/bdStrmclipTests.cc b/src/buddies/unit_tests/bdStrmclipTests.cc index ff2b7f172..8b15f9693 100644 --- a/src/buddies/unit_tests/bdStrmclipTests.cc +++ b/src/buddies/unit_tests/bdStrmclipTests.cc @@ -97,6 +97,34 @@ TEST(2) tl::InputStream stream (output); db::Reader reader (stream); reader.read (layout); + EXPECT_EQ (reader.format (), "GDS2"); + } + + db::compare_layouts (this, layout, au, db::NoNormalization); +} + +// with explicit output format +TEST(3) +{ + std::string input = tl::testdata (); + input += "/bd/strm2clip_in.gds"; + + std::string au = tl::testdata (); + au += "/bd/strm2clip_au2.gds"; + + std::string output = this->tmp_file () + "[oas]"; + + const char *argv[] = { "x", input.c_str (), output.c_str (), "-r=0,-2,9,5", "-t", "INV2", "-x=CLIP_OUT" }; + + EXPECT_EQ (strmclip (sizeof (argv) / sizeof (argv[0]), (char **) argv), 0); + + db::Layout layout; + + { + tl::InputStream stream (output); + db::Reader reader (stream); + reader.read (layout); + EXPECT_EQ (reader.format (), "OASIS"); } db::compare_layouts (this, layout, au, db::NoNormalization); diff --git a/src/buddies/unit_tests/bdStrmxorTests.cc b/src/buddies/unit_tests/bdStrmxorTests.cc index 981574b38..384313d64 100644 --- a/src/buddies/unit_tests/bdStrmxorTests.cc +++ b/src/buddies/unit_tests/bdStrmxorTests.cc @@ -97,6 +97,52 @@ TEST(1A_Flat) tl::InputStream stream (output); db::Reader reader (stream); reader.read (layout); + + EXPECT_EQ (std::string (reader.format ()), "OASIS"); + } + + db::compare_layouts (this, layout, au, db::NormalizationMode (db::NoNormalization | db::AsPolygons)); + EXPECT_EQ (cap.captured_text (), + "Layer 10/0 is not present in first layout, but in second\n" + "Result summary (layers without differences are not shown):\n" + "\n" + " Layer Output Differences (shape count)\n" + " ----------------------------------------------------------------\n" + " 3/0 3/0 30\n" + " 6/0 6/0 41\n" + " 8/1 8/1 1\n" + " 10/0 - (no such layer in first layout)\n" + "\n" + ); +} + +TEST(1A_FlatWithExplicitOutputFormat) +{ + tl::CaptureChannel cap; + + std::string input_a = tl::testdata (); + input_a += "/bd/strmxor_in1.gds"; + + std::string input_b = tl::testdata (); + input_b += "/bd/strmxor_in2.gds"; + + std::string au = tl::testdata (); + au += "/bd/strmxor_au1.oas"; + + std::string output = this->tmp_file ("tmp.xxx[oas]"); + + const char *argv[] = { "x", input_a.c_str (), input_b.c_str (), output.c_str () }; + + EXPECT_EQ (strmxor (sizeof (argv) / sizeof (argv[0]), (char **) argv), 1); + + db::Layout layout; + + { + tl::InputStream stream (output); + db::Reader reader (stream); + reader.read (layout); + + EXPECT_EQ (std::string (reader.format ()), "OASIS"); } db::compare_layouts (this, layout, au, db::NormalizationMode (db::NoNormalization | db::AsPolygons)); diff --git a/src/db/db/dbEdgePairs.cc b/src/db/db/dbEdgePairs.cc index 9539a5c29..cd43514b8 100644 --- a/src/db/db/dbEdgePairs.cc +++ b/src/db/db/dbEdgePairs.cc @@ -113,9 +113,8 @@ EdgePairs::write (const std::string &fn) const unsigned int li = layout.insert_layer (db::LayerProperties (0, 0)); insert_into (&layout, top.cell_index (), li); - tl::OutputStream os (fn); db::SaveLayoutOptions opt; - opt.set_format_from_filename (fn); + tl::OutputStream os (opt.set_format_from_filename (fn).second); db::Writer writer (opt); writer.write (layout, os); } diff --git a/src/db/db/dbEdges.cc b/src/db/db/dbEdges.cc index e263b7fdd..1cad75949 100644 --- a/src/db/db/dbEdges.cc +++ b/src/db/db/dbEdges.cc @@ -145,9 +145,8 @@ Edges::write (const std::string &fn) const unsigned int li = layout.insert_layer (db::LayerProperties (0, 0)); insert_into (&layout, top.cell_index (), li); - tl::OutputStream os (fn); db::SaveLayoutOptions opt; - opt.set_format_from_filename (fn); + tl::OutputStream os (opt.set_format_from_filename (fn).second); db::Writer writer (opt); writer.write (layout, os); } diff --git a/src/db/db/dbReader.cc b/src/db/db/dbReader.cc index 3bbf08be2..26b4a6518 100644 --- a/src/db/db/dbReader.cc +++ b/src/db/db/dbReader.cc @@ -134,13 +134,26 @@ ReaderBase::check_dbu (double dbu) const Reader::Reader (tl::InputStream &stream) : mp_actual_reader (0), m_stream (stream) { - // Detect the format by asking all reader declarations - for (tl::Registrar::iterator rdr = tl::Registrar::begin (); rdr != tl::Registrar::end () && ! mp_actual_reader; ++rdr) { - m_stream.reset (); - if (rdr->detect (m_stream)) { - m_stream.reset (); - mp_actual_reader = rdr->create_reader (m_stream); + if (stream.is_explicit_suffix ()) { + + // If an explicit suffix is given for the stream, use it to find the reader + for (tl::Registrar::iterator rdr = tl::Registrar::begin (); rdr != tl::Registrar::end () && ! mp_actual_reader; ++rdr) { + if (tl::match_filename_to_format ("." + stream.suffix (), rdr->file_format ())) { + mp_actual_reader = rdr->create_reader (m_stream); + } } + + } else { + + // Detect the format by asking all reader declarations + for (tl::Registrar::iterator rdr = tl::Registrar::begin (); rdr != tl::Registrar::end () && ! mp_actual_reader; ++rdr) { + m_stream.reset (); + if (rdr->detect (m_stream)) { + m_stream.reset (); + mp_actual_reader = rdr->create_reader (m_stream); + } + } + } if (! mp_actual_reader) { diff --git a/src/db/db/dbRegion.cc b/src/db/db/dbRegion.cc index 9af221fa4..f290b87d3 100644 --- a/src/db/db/dbRegion.cc +++ b/src/db/db/dbRegion.cc @@ -142,9 +142,8 @@ Region::write (const std::string &fn) const unsigned int li = layout.insert_layer (db::LayerProperties (0, 0)); insert_into (&layout, top.cell_index (), li); - tl::OutputStream os (fn); db::SaveLayoutOptions opt; - opt.set_format_from_filename (fn); + tl::OutputStream os (opt.set_format_from_filename (fn).second); db::Writer writer (opt); writer.write (layout, os); } diff --git a/src/db/db/dbSaveLayoutOptions.cc b/src/db/db/dbSaveLayoutOptions.cc index 4c2e55cf6..688b34704 100644 --- a/src/db/db/dbSaveLayoutOptions.cc +++ b/src/db/db/dbSaveLayoutOptions.cc @@ -27,6 +27,7 @@ #include "tlStream.h" #include "tlExpression.h" #include "tlInternational.h" +#include "tlGlobPattern.h" namespace db { @@ -444,16 +445,33 @@ SaveLayoutOptions::get_cells (const db::Layout &layout, std::set SaveLayoutOptions::set_format_from_filename (const std::string &fn) { - for (tl::Registrar::iterator fmt = tl::Registrar::begin (); fmt != tl::Registrar::end (); ++fmt) { - if (tl::match_filename_to_format (fn, fmt->file_format ())) { - m_format = fmt->format_name (); - return true; + tl::GlobPattern pat ("(*)\\[(*)\\]"); + + std::vector pat_parts; + if (pat.match (fn, pat_parts) && pat_parts.size () == 2) { + + for (tl::Registrar::iterator fmt = tl::Registrar::begin (); fmt != tl::Registrar::end (); ++fmt) { + if (tl::match_filename_to_format ("." + pat_parts[1], fmt->file_format ())) { + m_format = fmt->format_name (); + return std::make_pair (true, pat_parts[0]); + } } + + } else { + + for (tl::Registrar::iterator fmt = tl::Registrar::begin (); fmt != tl::Registrar::end (); ++fmt) { + if (tl::match_filename_to_format (fn, fmt->file_format ())) { + m_format = fmt->format_name (); + return std::make_pair (true, fn); + } + } + } - return false; + + return std::make_pair (false, fn); } } diff --git a/src/db/db/dbSaveLayoutOptions.h b/src/db/db/dbSaveLayoutOptions.h index 2bc0ab2b7..6c04970bd 100644 --- a/src/db/db/dbSaveLayoutOptions.h +++ b/src/db/db/dbSaveLayoutOptions.h @@ -268,7 +268,7 @@ public: * * Returns true, if the suffix indicates a known format. */ - bool set_format_from_filename (const std::string &fn); + std::pair set_format_from_filename(const std::string &fn); /** * @brief Sets specific options for the given format diff --git a/src/db/db/dbTestSupport.cc b/src/db/db/dbTestSupport.cc index de3f9789d..c2f12e19a 100644 --- a/src/db/db/dbTestSupport.cc +++ b/src/db/db/dbTestSupport.cc @@ -71,7 +71,7 @@ void compare_layouts (tl::TestBase *_this, const db::Layout &layout, const std:: } else { // write the temp file in the same format than the au file tmp_file = _this->tmp_file (tl::sprintf ("tmp_%x." + tl::extension (au_file), hash)); - options.set_format_from_filename (tmp_file); + tmp_file = options.set_format_from_filename (tmp_file).second; } if ((norm & NoContext) != 0) { diff --git a/src/db/db/dbTexts.cc b/src/db/db/dbTexts.cc index 29e88b83e..902a5cf2e 100644 --- a/src/db/db/dbTexts.cc +++ b/src/db/db/dbTexts.cc @@ -109,9 +109,8 @@ Texts::write (const std::string &fn) const unsigned int li = layout.insert_layer (db::LayerProperties (0, 0)); insert_into (&layout, top.cell_index (), li); - tl::OutputStream os (fn); db::SaveLayoutOptions opt; - opt.set_format_from_filename (fn); + tl::OutputStream os (opt.set_format_from_filename (fn).second); db::Writer writer (opt); writer.write (layout, os); } diff --git a/src/db/db/gsiDeclDbCell.cc b/src/db/db/gsiDeclDbCell.cc index 4a53b12df..6e0718fe3 100644 --- a/src/db/db/gsiDeclDbCell.cc +++ b/src/db/db/gsiDeclDbCell.cc @@ -1310,10 +1310,10 @@ write_simple (const db::Cell *cell, const std::string &filename) db::SaveLayoutOptions options; options.clear_cells (); options.add_cell (cell->cell_index ()); - options.set_format_from_filename (filename); + std::string fn = options.set_format_from_filename (filename).second; db::Writer writer (options); - tl::OutputStream stream (filename); + tl::OutputStream stream (fn); writer.write (*layout, stream); } diff --git a/src/db/db/gsiDeclDbLayout.cc b/src/db/db/gsiDeclDbLayout.cc index 0c1b8b577..54c97cded 100644 --- a/src/db/db/gsiDeclDbLayout.cc +++ b/src/db/db/gsiDeclDbLayout.cc @@ -690,12 +690,13 @@ static void write_simple (db::Layout *layout, const std::string &filename) { db::SaveLayoutOptions options; - if (! options.set_format_from_filename (filename)) { + auto ff = options.set_format_from_filename (filename); + if (! ff.first) { throw tl::Exception (tl::to_string (tr ("Cannot determine format from filename"))); } db::Writer writer (options); - tl::OutputStream stream (filename); + tl::OutputStream stream (ff.second); writer.write (*layout, stream); } @@ -2868,12 +2869,13 @@ static db::SaveLayoutOptions *new_v () return new db::SaveLayoutOptions (); } -static bool set_format_from_filename (db::SaveLayoutOptions *opt, const std::string &fn) +static std::string set_format_from_filename (db::SaveLayoutOptions *opt, const std::string &fn) { - if (! opt->set_format_from_filename (fn)) { + auto ff = opt->set_format_from_filename (fn); + if (! ff.first) { throw tl::Exception (tl::to_string (tr ("Cannot determine format from filename"))); } - return true; + return ff.second; } Class decl_SaveLayoutOptions ("db", "SaveLayoutOptions", @@ -2893,6 +2895,10 @@ Class decl_SaveLayoutOptions ("db", "SaveLayoutOptions", "Beginning with version 0.23, this method always returns true, since the " "only consumer for the return value, Layout#write, now ignores that " "parameter and automatically determines the compression mode from the file name.\n" + "\n" + "Starting with version 0.30.7, this method allows specifying the desired format's extension in square brackets " + "after the file name (e.g. 'file.txt[def]'). This allows writing files with non-standard extensions. " + "The return value of this function now the is actual file name used without the square brackets ('file.txt' in the example case)." ) + gsi::method ("format=", &db::SaveLayoutOptions::set_format, gsi::arg ("format"), "@brief Select a format\n" diff --git a/src/db/unit_tests/dbSaveLayoutOptionsTests.cc b/src/db/unit_tests/dbSaveLayoutOptionsTests.cc index e68bbeb88..95b1d7be8 100644 --- a/src/db/unit_tests/dbSaveLayoutOptionsTests.cc +++ b/src/db/unit_tests/dbSaveLayoutOptionsTests.cc @@ -102,3 +102,17 @@ TEST(1) EXPECT_EQ (opt.get_option_by_name ("mywriter_value").to_string (), "17"); } +TEST(2) +{ + db::SaveLayoutOptions opt; + auto ff = opt.set_format_from_filename ("/home/xyz/test.def"); + EXPECT_EQ (ff.first, true); + EXPECT_EQ (ff.second, "/home/xyz/test.def"); + EXPECT_EQ (opt.format (), "LEFDEF"); + + opt = db::SaveLayoutOptions (); + ff = opt.set_format_from_filename ("/home/xyz/test.txt[def]"); + EXPECT_EQ (ff.first, true); + EXPECT_EQ (ff.second, "/home/xyz/test.txt"); + EXPECT_EQ (opt.format (), "LEFDEF"); +} diff --git a/src/lay/lay/layMainWindow.cc b/src/lay/lay/layMainWindow.cc index 0410cbb4d..5d73e541a 100644 --- a/src/lay/lay/layMainWindow.cc +++ b/src/lay/lay/layMainWindow.cc @@ -2270,7 +2270,7 @@ MainWindow::cm_save_current_cell_as () db::SaveLayoutOptions options (cv->save_options ()); options.set_dbu (cv->layout ().dbu ()); - options.set_format_from_filename (fn); + fn = options.set_format_from_filename (fn).second; tl::OutputStream::OutputStreamMode om = tl::OutputStream::OM_Auto; if (mp_layout_save_as_options->get_options (current_view (), cv_index, fn, om, options)) { @@ -2370,7 +2370,7 @@ MainWindow::do_save (bool as) db::SaveLayoutOptions options = get_save_options_from_cv (cv); if (as || options.format ().empty ()) { - options.set_format_from_filename (fn); + fn = options.set_format_from_filename (fn).second; } tl::OutputStream::OutputStreamMode om = tl::OutputStream::OM_Auto; @@ -2419,7 +2419,7 @@ MainWindow::cm_save_all () db::SaveLayoutOptions options = get_save_options_from_cv (cv); if (options.format ().empty ()) { - options.set_format_from_filename (fn); + fn = options.set_format_from_filename (fn).second; } tl::OutputStream::OutputStreamMode om = tl::OutputStream::OM_Auto; diff --git a/src/plugins/streamers/lefdef/db_plugin/dbLEFDEFPlugin.cc b/src/plugins/streamers/lefdef/db_plugin/dbLEFDEFPlugin.cc index 1a974bc23..ebba33d50 100644 --- a/src/plugins/streamers/lefdef/db_plugin/dbLEFDEFPlugin.cc +++ b/src/plugins/streamers/lefdef/db_plugin/dbLEFDEFPlugin.cc @@ -46,38 +46,8 @@ namespace db */ static bool is_lef_format (const std::string &fn) { - static const char *suffixes[] = { ".lef", ".LEF", ".lef.gz", ".LEF.gz" }; - - // NOTE: there is no reliable way of (easily) detecting the format. Hence we use the file - // name's suffix for the format hint. - for (size_t i = 0; i < sizeof (suffixes) / sizeof (suffixes[0]); ++i) { - std::string suffix = suffixes [i]; - if (fn.size () > suffix.size () && fn.find (suffix) == fn.size () - suffix.size ()) { - return true; - } - } - - return false; -} - -/** - * @brief Determines the format of the given stream - * Returns true, if the stream has DEF format - */ -static bool is_def_format (const std::string &fn) -{ - static const char *suffixes[] = { ".def", ".DEF", ".def.gz", ".DEF.gz" }; - - // NOTE: there is no reliable way of (easily) detecting the format. Hence we use the file - // name's suffix for the format hint. - for (size_t i = 0; i < sizeof (suffixes) / sizeof (suffixes[0]); ++i) { - std::string suffix = suffixes [i]; - if (fn.size () > suffix.size () && fn.find (suffix) == fn.size () - suffix.size ()) { - return true; - } - } - - return false; + static std::string lef_format ("LEF files (*.lef *.LEF *.lef.gz *.LEF.gz)"); + return tl::match_filename_to_format (fn, lef_format); } // --------------------------------------------------------------- @@ -92,13 +62,13 @@ LEFDEFReader::LEFDEFReader (tl::InputStream &s) const db::LayerMap & LEFDEFReader::read (db::Layout &layout, const db::LoadLayoutOptions &options) { - return read_lefdef (layout, options, is_lef_format (m_stream.filename ())); + return read_lefdef (layout, options, is_lef_format ("." + m_stream.suffix ())); } const db::LayerMap & LEFDEFReader::read (db::Layout &layout) { - return read_lefdef (layout, db::LoadLayoutOptions (), is_lef_format (m_stream.filename ())); + return read_lefdef (layout, db::LoadLayoutOptions (), is_lef_format ("." + m_stream.suffix ())); } const char * @@ -287,7 +257,7 @@ class LEFDEFFormatDeclaration virtual bool detect (tl::InputStream &stream) const { - return is_lef_format (stream.filename ()) || is_def_format (stream.filename ()); + return tl::match_filename_to_format (stream.filename (), file_format ()); } virtual db::ReaderBase *create_reader (tl::InputStream &s) const diff --git a/src/plugins/streamers/lefdef/unit_tests/dbLEFDEFImportTests.cc b/src/plugins/streamers/lefdef/unit_tests/dbLEFDEFImportTests.cc index eb15ee319..e5552338c 100644 --- a/src/plugins/streamers/lefdef/unit_tests/dbLEFDEFImportTests.cc +++ b/src/plugins/streamers/lefdef/unit_tests/dbLEFDEFImportTests.cc @@ -467,15 +467,27 @@ TEST(100) run_test (_this, "issue-172", "lef:in.lef+def:in.def", "au.oas.gz", default_options (), false); } -TEST(101) +TEST(101a) { db::LEFDEFReaderOptions opt = default_options (); opt.set_produce_pin_names (true); opt.set_pin_property_name (2); opt.set_cell_outline_layer ("OUTLINE (13/0)"); + run_test (_this, "issue-489", "lef:in.lef+def:in.def", "au.oas", opt, false); } +TEST(101b) +{ + db::LEFDEFReaderOptions opt = default_options (); + opt.set_produce_pin_names (true); + opt.set_pin_property_name (2); + opt.set_cell_outline_layer ("OUTLINE (13/0)"); + + // also with fake suffix + run_test (_this, "issue-489", "lef:'in.l[lef]'+def:'in.d[def]'", "au.oas", opt, false); +} + TEST(102) { db::LEFDEFReaderOptions opt = default_options (); diff --git a/src/tl/tl/tlStream.cc b/src/tl/tl/tlStream.cc index 442218e28..4e52db055 100644 --- a/src/tl/tl/tlStream.cc +++ b/src/tl/tl/tlStream.cc @@ -48,6 +48,7 @@ #include "tlString.h" #include "tlUri.h" #include "tlHttpStream.h" +#include "tlGlobPattern.h" #if defined(HAVE_QT) # include @@ -304,6 +305,9 @@ InputStream::InputStream (InputStreamBase &delegate) m_bcap = 4096; // initial buffer capacity m_blen = 0; mp_buffer = new char [m_bcap]; + + m_explicit_suffix = false; + m_suffix = tl::extension (delegate.filename ()); } InputStream::InputStream (InputStreamBase *delegate) @@ -312,9 +316,14 @@ InputStream::InputStream (InputStreamBase *delegate) m_bcap = 4096; // initial buffer capacity m_blen = 0; mp_buffer = new char [m_bcap]; + + m_explicit_suffix = false; + if (delegate) { + m_suffix = tl::extension (delegate->filename ()); + } } -InputStream::InputStream (const std::string &abstract_path) +InputStream::InputStream (const std::string &abstract_path_in, bool allow_explicit_suffix) : m_pos (0), mp_bptr (0), mp_delegate (0), m_owns_delegate (false), mp_inflate (0), m_inflate_always (false), m_stop_after_inflate (false) { m_bcap = 4096; // initial buffer capacity @@ -323,6 +332,22 @@ InputStream::InputStream (const std::string &abstract_path) bool needs_inflate = false; + std::string abstract_path = abstract_path_in; + m_explicit_suffix = false; + + // extract override suffix if needed + if (allow_explicit_suffix) { + + tl::GlobPattern pat ("(*)\\[(*)\\]"); + std::vector pat_parts; + if (pat.match (abstract_path_in, pat_parts) && pat_parts.size () == 2) { + abstract_path = pat_parts[0]; + m_suffix = pat_parts[1]; + m_explicit_suffix = true; + } + + } + tl::Extractor ex (abstract_path.c_str ()); if (ex.test (":")) { @@ -404,6 +429,10 @@ InputStream::InputStream (const std::string &abstract_path) m_owns_delegate = true; + if (mp_delegate && ! m_explicit_suffix) { + m_suffix = tl::extension (mp_delegate->filename ()); + } + if (needs_inflate) { inflate_always (); } @@ -1696,7 +1725,7 @@ match_filename_to_format (const std::string &fn, const std::string &fmt) while (*fpp && *fpp != ' ' && *fpp != ')') { ++fpp; } - if (fn.size () > (unsigned int) (fpp - fp) && strncmp (fn.c_str () + fn.size () - (fpp - fp), fp, fpp - fp) == 0) { + if (fn.size () >= (unsigned int) (fpp - fp) && strncmp (fn.c_str () + fn.size () - (fpp - fp), fp, fpp - fp) == 0) { return true; } fp = fpp; diff --git a/src/tl/tl/tlStream.h b/src/tl/tl/tlStream.h index 9e2f03b61..70fac833c 100644 --- a/src/tl/tl/tlStream.h +++ b/src/tl/tl/tlStream.h @@ -408,9 +408,14 @@ public: * This will automatically create the appropriate delegate and * delete it later. * - * The abstract path + * @param abstract_path The abstract path (can be "pipe:", "data:", "file:...", "http(s):...". + * @param allow_explicit_suffix If true, extracts the suffix from the abstract path + * + * With explicit suffix, the abstract path can be appended an override suffix in the + * form "path[suffix]" (e.g. "file.any[gds]"). The override suffix can be accessed with + * the "suffix" accessor. If an explicit suffix is given, "is_explicit_suffix" is true. */ - InputStream (const std::string &abstract_path); + InputStream (const std::string &abstract_path, bool allow_explicit_suffix = true); /** * @brief Destructor @@ -528,6 +533,25 @@ public: return mp_delegate->absolute_path (); } + /** + * @brief Gets the suffix + * + * The suffix is either the override suffix or the + * filename's suffix if no override is given. + */ + const std::string &suffix () const + { + return m_suffix; + } + + /** + * @brief Gets a value indicating if an explicit suffix is given + */ + bool is_explicit_suffix () const + { + return m_explicit_suffix; + } + /** * @brief Reset to the initial position */ @@ -593,6 +617,9 @@ private: InputStreamBase *mp_delegate; bool m_owns_delegate; + std::string m_suffix; + bool m_explicit_suffix; + // inflate support InflateFilter *mp_inflate; bool m_inflate_always; diff --git a/src/tl/unit_tests/tlStreamTests.cc b/src/tl/unit_tests/tlStreamTests.cc index 0a5163d77..4396a102f 100644 --- a/src/tl/unit_tests/tlStreamTests.cc +++ b/src/tl/unit_tests/tlStreamTests.cc @@ -187,6 +187,29 @@ TEST(DataInputStream) EXPECT_EQ (tis.get_line (), "separated by a LFCR and CRLF."); EXPECT_EQ (tis.line_number (), size_t (4)); EXPECT_EQ (tis.at_end (), true); + + EXPECT_EQ (is.is_explicit_suffix (), false); + EXPECT_EQ (is.suffix (), ""); +} + +TEST(DataInputStreamWithSuffix) +{ + tl::InputStream is ("data:SGVsbG8sIHdvcmxkIQpXaXRoIGFub3RoZXIgbGluZQoNDQpzZXBhcmF0ZWQgYnkgYSBMRkNSIGFuZCBDUkxGLg==[txt]"); + tl::TextInputStream tis (is); + EXPECT_EQ (tis.get_line (), "Hello, world!"); + EXPECT_EQ (tis.line_number (), size_t (1)); + EXPECT_EQ (tis.get_line (), "With another line"); + EXPECT_EQ (tis.line_number (), size_t (2)); + EXPECT_EQ (tis.peek_char (), '\n'); + EXPECT_EQ (tis.get_line (), ""); + EXPECT_EQ (tis.line_number (), size_t (3)); + EXPECT_EQ (tis.peek_char (), 's'); + EXPECT_EQ (tis.get_line (), "separated by a LFCR and CRLF."); + EXPECT_EQ (tis.line_number (), size_t (4)); + EXPECT_EQ (tis.at_end (), true); + + EXPECT_EQ (is.is_explicit_suffix (), true); + EXPECT_EQ (is.suffix (), "txt"); } namespace @@ -588,3 +611,16 @@ TEST(AbstractPathFunctions) EXPECT_EQ (tl::InputStream::as_file_path ("a\\b\\c"), "a\\b\\c"); tl::file_utils_force_reset (); } + +TEST(MatchFormat) +{ + EXPECT_EQ (tl::match_filename_to_format ("abc.txt", "Text files (*.txt *.TXT)"), true); + EXPECT_EQ (tl::match_filename_to_format ("abc.txt", "Text files (*.txt)"), true); + EXPECT_EQ (tl::match_filename_to_format ("abc.txt", "Text files (*.TXT)"), false); + EXPECT_EQ (tl::match_filename_to_format (".txt", "Text files (*.txt *.TXT)"), true); + EXPECT_EQ (tl::match_filename_to_format ("/home/xyz/abc.txt", "Text files (*.txt *.TXT)"), true); + EXPECT_EQ (tl::match_filename_to_format ("txt", "Text files (*.txt *.TXT)"), false); + EXPECT_EQ (tl::match_filename_to_format ("abc.TXT", "Text files (*.txt *.TXT)"), true); + EXPECT_EQ (tl::match_filename_to_format ("abc.TEXT", "Text files (*.txt *.TXT)"), false); + EXPECT_EQ (tl::match_filename_to_format ("abc.TEXT", "Text files (*)"), true); +} diff --git a/testdata/lefdef/issue-489/in.d b/testdata/lefdef/issue-489/in.d new file mode 100644 index 000000000..6220e6ab0 --- /dev/null +++ b/testdata/lefdef/issue-489/in.d @@ -0,0 +1,34 @@ +VERSION 5.7 ; +DIVIDERCHAR "/" ; +BUSBITCHARS "[]" ; +DESIGN test ; +UNITS DISTANCE MICRONS 2000 ; + +DIEAREA ( 0 0 ) ( 37520 7840 ) ; + +PINS 12 ; +- VDD + NET VDD + SPECIAL + DIRECTION INOUT + USE POWER + + LAYER M2 ( -320 0 ) ( 320 37520 ) ++ FIXED ( 37520 3920 ) W ; +- VSS + NET VSS + SPECIAL + DIRECTION INOUT + USE GROUND + + PORT + + LAYER M2 ( -18760 0 ) ( 18760 640 ) ++ FIXED ( 18760 -320 ) N + + PORT + + LAYER M2 ( -18760 0 ) ( 18760 640 ) ++ FIXED ( 18760 8160 ) S + ; +END PINS + +SPECIALNETS 4 ; +- VSS ( * VSS ) ++ ROUTED M2 640 + SHAPE FOLLOWPIN ( 0 0 ) ( 37520 * ) +NEW M2 640 + SHAPE FOLLOWPIN ( 0 7840 ) ( 37520 * ) + + USE GROUND + ; +- VDD ( * VDD ) ++ ROUTED M2 640 + SHAPE FOLLOWPIN ( 0 3920 ) ( 37520 * ) + + USE POWER + ; +END SPECIALNETS +END DESIGN diff --git a/testdata/lefdef/issue-489/in.l b/testdata/lefdef/issue-489/in.l new file mode 100644 index 000000000..3e497ca36 --- /dev/null +++ b/testdata/lefdef/issue-489/in.l @@ -0,0 +1,63 @@ +VERSION 5.7 ; + +BUSBITCHARS "[]" ; +DIVIDERCHAR "/" ; +UNITS + DATABASE MICRONS 1000 ; +END UNITS + +MANUFACTURINGGRID 0.002 ; + +USEMINSPACING OBS OFF ; + +LAYER overlap + TYPE OVERLAP ; +END overlap + +LAYER contact + TYPE CUT ; +END contact + +LAYER metal1 + TYPE ROUTING ; + DIRECTION HORIZONTAL ; +END metal1 + +LAYER via1 + TYPE CUT ; +END via1 + +LAYER metal2 + TYPE ROUTING ; + DIRECTION VERTICAL ; +END metal2 + +LAYER via2 + TYPE CUT ; +END via2 + +LAYER metal3 + TYPE ROUTING ; + DIRECTION HORIZONTAL ; +END metal3 + +LAYER via3 + TYPE CUT ; +END via3 + +LAYER metal4 + TYPE ROUTING ; + DIRECTION VERTICAL ; +END metal4 + +LAYER via4 + TYPE CUT ; +END via4 + +LAYER metal5 + TYPE ROUTING ; + DIRECTION HORIZONTAL ; +END metal5 + + +END LIBRARY diff --git a/testdata/lefdef/strm2oas_small/au.gds b/testdata/lefdef/strm2oas_small/au.gds new file mode 100644 index 0000000000000000000000000000000000000000..f6602f376de3776ebe8a9c2ea686fef64ebc0ce8 GIT binary patch literal 576 zcmZQzV_;&6V31*CVt>WJ%pk%bz#zq-fXrs#U}E#}bYfr-VP>^+>@@d2w)}&o%MSeo zv!g;7WLRMv2hj{Hf(&r|%oOTpLDv7V=l}n|F8}|3>|tPF+VlVacNQ2869>^K z_M_+r>4jjBK4c6N$ETlxf#VNY9!Nv<@|D17m^eZ|I|JVE=3-+D_I32}0frP81A~AN sYUuL_Ff%X+cYrZ+Xfh&)#=k57|3feXgN6+" ; +DESIGN SMALL ; +UNITS DISTANCE MICRONS 100 ; + +DIEAREA ( -30 -30 ) ( 1030 1030 ) ; + +VIAS 1 ; +- via1_960x340 ++ VIARULE Via1Array-0 + + CUTSIZE 140 140 + + LAYERS metal1 via1 metal2 + + CUTSPACING 160 160 + + ENCLOSURE 110 100 110 100 + + ROWCOL 1 3 +; +END VIAS + +SPECIALNETS 1 ; +- VDD ( * VDD ) ++ ROUTED metal1 0 + SHAPE STRIPE ( 500 500 ) via1_960x340 ++ USE POWER ; +END SPECIALNETS + +END DESIGN + From 94908162d6890b8744e66f297f2047293bcdd560 Mon Sep 17 00:00:00 2001 From: Matthias Koefferlein Date: Fri, 20 Mar 2026 16:48:35 +0100 Subject: [PATCH 044/212] LEF/DEF suffixes can be configured The way to specify them is through the following environment variables: $KLAYOUT_LEF_FORMAT - LEF suffixes (default: "*.lef *.LEF *.lef.gz *.LEF.gz") $KLAYOUT_DEF_FORMAT - DEF suffixes (default: "*.def *.DEF *.def.gz *.DEF.gz") The string is a space-separated list of simple match pattern. Only "*.xyz"-style pattern are allowed currently. --- .../lefdef/db_plugin/dbLEFDEFPlugin.cc | 24 ++++++++++++++++--- 1 file changed, 21 insertions(+), 3 deletions(-) diff --git a/src/plugins/streamers/lefdef/db_plugin/dbLEFDEFPlugin.cc b/src/plugins/streamers/lefdef/db_plugin/dbLEFDEFPlugin.cc index ebba33d50..ad465aec6 100644 --- a/src/plugins/streamers/lefdef/db_plugin/dbLEFDEFPlugin.cc +++ b/src/plugins/streamers/lefdef/db_plugin/dbLEFDEFPlugin.cc @@ -24,6 +24,7 @@ #include "tlTimer.h" #include "tlStream.h" #include "tlFileUtils.h" +#include "tlEnv.h" #include "dbReader.h" #include "dbStream.h" @@ -40,14 +41,31 @@ namespace db // --------------------------------------------------------------- // Plugin for the stream reader +static std::string lef_file_formats () +{ + static std::string s; + if (s.empty ()) { + s = tl::get_env ("KLAYOUT_LEF_FORMAT", "*.lef *.LEF *.lef.gz *.LEF.gz"); + } + return s; +} + +static std::string def_file_formats () +{ + static std::string s; + if (s.empty ()) { + s = tl::get_env ("KLAYOUT_DEF_FORMAT", "*.def *.DEF *.def.gz *.DEF.gz"); + } + return s; +} + /** * @brief Determines the format of the given stream * Returns true, if the stream has LEF format */ static bool is_lef_format (const std::string &fn) { - static std::string lef_format ("LEF files (*.lef *.LEF *.lef.gz *.LEF.gz)"); - return tl::match_filename_to_format (fn, lef_format); + return tl::match_filename_to_format (fn, std::string ("LEF files (") + lef_file_formats () + ")"); } // --------------------------------------------------------------- @@ -253,7 +271,7 @@ class LEFDEFFormatDeclaration virtual std::string format_name () const { return "LEFDEF"; } virtual std::string format_desc () const { return "LEF/DEF"; } virtual std::string format_title () const { return "LEF/DEF (unified reader)"; } - virtual std::string file_format () const { return "LEF/DEF files (*.lef *.LEF *.lef.gz *.LEF.gz *.def *.DEF *.def.gz *.DEF.gz)"; } + virtual std::string file_format () const { return std::string ("LEF/DEF files (") + lef_file_formats () + " " + def_file_formats () + ")"; } virtual bool detect (tl::InputStream &stream) const { From c311906298e0e56cb5af4affae9e5ae5910a6bcf Mon Sep 17 00:00:00 2001 From: Matthias Koefferlein Date: Fri, 20 Mar 2026 16:58:53 +0100 Subject: [PATCH 045/212] Some refactoring --- src/db/db/db.pro | 1 + src/db/db/gsiDeclDbLayout.cc | 232 --------------------- src/db/db/gsiDeclDbSaveLayoutOptions.cc | 262 ++++++++++++++++++++++++ 3 files changed, 263 insertions(+), 232 deletions(-) create mode 100644 src/db/db/gsiDeclDbSaveLayoutOptions.cc diff --git a/src/db/db/db.pro b/src/db/db/db.pro index 188abf0d8..ce2f3cc3e 100644 --- a/src/db/db/db.pro +++ b/src/db/db/db.pro @@ -152,6 +152,7 @@ SOURCES = \ gsiDeclDbRecursiveInstanceIterator.cc \ gsiDeclDbRecursiveShapeIterator.cc \ gsiDeclDbRegion.cc \ + gsiDeclDbSaveLayoutOptions.cc \ gsiDeclDbShape.cc \ gsiDeclDbShapeProcessor.cc \ gsiDeclDbShapes.cc \ diff --git a/src/db/db/gsiDeclDbLayout.cc b/src/db/db/gsiDeclDbLayout.cc index 54c97cded..9d76ae5e9 100644 --- a/src/db/db/gsiDeclDbLayout.cc +++ b/src/db/db/gsiDeclDbLayout.cc @@ -2864,236 +2864,4 @@ Class decl_Layout ("db", "Layout", "@/code\n" ); -static db::SaveLayoutOptions *new_v () -{ - return new db::SaveLayoutOptions (); -} - -static std::string set_format_from_filename (db::SaveLayoutOptions *opt, const std::string &fn) -{ - auto ff = opt->set_format_from_filename (fn); - if (! ff.first) { - throw tl::Exception (tl::to_string (tr ("Cannot determine format from filename"))); - } - return ff.second; -} - -Class decl_SaveLayoutOptions ("db", "SaveLayoutOptions", - gsi::constructor ("new", &new_v, - "@brief Default constructor\n" - "\n" - "This will initialize the scale factor to 1.0, the database unit is set to\n" - "\"same as original\" and all layers are selected as well as all cells.\n" - "The default format is GDS2." - ) + - gsi::method_ext ("set_format_from_filename", &set_format_from_filename, gsi::arg ("filename"), - "@brief Select a format from the given file name\n" - "\n" - "This method will set the format according to the file's extension.\n" - "\n" - "This method has been introduced in version 0.22. " - "Beginning with version 0.23, this method always returns true, since the " - "only consumer for the return value, Layout#write, now ignores that " - "parameter and automatically determines the compression mode from the file name.\n" - "\n" - "Starting with version 0.30.7, this method allows specifying the desired format's extension in square brackets " - "after the file name (e.g. 'file.txt[def]'). This allows writing files with non-standard extensions. " - "The return value of this function now the is actual file name used without the square brackets ('file.txt' in the example case)." - ) + - gsi::method ("format=", &db::SaveLayoutOptions::set_format, gsi::arg ("format"), - "@brief Select a format\n" - "The format string can be either \"GDS2\", \"OASIS\", \"CIF\" or \"DXF\". Other formats may be available if\n" - "a suitable plugin is installed." - ) + - gsi::method ("format", &db::SaveLayoutOptions::format, - "@brief Gets the format name\n" - "\n" - "See \\format= for a description of that method.\n" - ) + - gsi::method ("add_layer", &db::SaveLayoutOptions::add_layer, gsi::arg ("layer_index"), gsi::arg ("properties"), - "@brief Add a layer to be saved \n" - "\n" - "\n" - "Adds the layer with the given index to the layer list that will be written.\n" - "If all layers have been selected previously, all layers will \n" - "be unselected first and only the new layer remains.\n" - "\n" - "The 'properties' argument can be used to assign different layer properties than the ones\n" - "present in the layout. Pass a default \\LayerInfo object to this argument to use the\n" - "properties from the layout object. Construct a valid \\LayerInfo object with explicit layer,\n" - "datatype and possibly a name to override the properties stored in the layout.\n" - ) + - gsi::method ("select_all_layers", &db::SaveLayoutOptions::select_all_layers, - "@brief Select all layers to be saved\n" - "\n" - "This method will clear all layers selected with \\add_layer so far and set the 'select all layers' flag.\n" - "This is the default.\n" - ) + - gsi::method ("deselect_all_layers", &db::SaveLayoutOptions::deselect_all_layers, - "@brief Unselect all layers: no layer will be saved\n" - "\n" - "This method will clear all layers selected with \\add_layer so far and clear the 'select all layers' flag.\n" - "Using this method is the only way to save a layout without any layers." - ) + - gsi::method ("select_cell", &db::SaveLayoutOptions::select_cell, gsi::arg ("cell_index"), - "@brief Selects a cell to be saved (plus hierarchy below)\n" - "\n" - "\n" - "This method is basically a convenience method that combines \\clear_cells and \\add_cell.\n" - "This method clears the 'select all cells' flag.\n" - "\n" - "This method has been added in version 0.22.\n" - ) + - gsi::method ("select_this_cell", &db::SaveLayoutOptions::select_this_cell, gsi::arg ("cell_index"), - "@brief Selects a cell to be saved\n" - "\n" - "\n" - "This method is basically a convenience method that combines \\clear_cells and \\add_this_cell.\n" - "This method clears the 'select all cells' flag.\n" - "\n" - "This method has been added in version 0.23.\n" - ) + - gsi::method ("clear_cells", &db::SaveLayoutOptions::clear_cells, - "@brief Clears all cells to be saved\n" - "\n" - "This method can be used to ensure that no cell is selected before \\add_cell is called to specify a cell.\n" - "This method clears the 'select all cells' flag.\n" - "\n" - "This method has been added in version 0.22.\n" - ) + - gsi::method ("add_this_cell", &db::SaveLayoutOptions::add_this_cell, gsi::arg ("cell_index"), - "@brief Adds a cell to be saved\n" - "\n" - "\n" - "The index of the cell must be a valid index in the context of the layout that will be saved.\n" - "This method clears the 'select all cells' flag.\n" - "Unlike \\add_cell, this method does not implicitly add all children of that cell.\n" - "\n" - "This method has been added in version 0.23.\n" - ) + - gsi::method ("add_cell", &db::SaveLayoutOptions::add_cell, gsi::arg ("cell_index"), - "@brief Add a cell (plus hierarchy) to be saved\n" - "\n" - "\n" - "The index of the cell must be a valid index in the context of the layout that will be saved.\n" - "This method clears the 'select all cells' flag.\n" - "\n" - "This method also implicitly adds the children of that cell. A method that does not add the " - "children in \\add_this_cell.\n" - ) + - gsi::method ("select_all_cells", &db::SaveLayoutOptions::select_all_cells, - "@brief Select all cells to save\n" - "\n" - "This method will clear all cells specified with \\add_cells so far and set the 'select all cells' flag.\n" - "This is the default.\n" - ) + - gsi::method ("write_context_info=", &db::SaveLayoutOptions::set_write_context_info, gsi::arg ("flag"), - "@brief Enables or disables context information\n" - "\n" - "If this flag is set to false, no context information for PCell or library cell instances is written. " - "Those cells will be converted to plain cells and KLayout will not be able to restore the identity of " - "those cells. Use this option to enforce compatibility with other tools that don't understand the " - "context information of KLayout.\n" - "\n" - "The default value is true (context information is stored). Not all formats support context information, hence " - "that flag has no effect for formats like CIF or DXF.\n" - "\n" - "This method was introduced in version 0.23.\n" - ) + - gsi::method ("write_context_info?", &db::SaveLayoutOptions::write_context_info, - "@brief Gets a flag indicating whether context information will be stored\n" - "\n" - "See \\write_context_info= for details about this flag.\n" - "\n" - "This method was introduced in version 0.23.\n" - ) + - gsi::method ("keep_instances=", &db::SaveLayoutOptions::set_keep_instances, gsi::arg ("flag"), - "@brief Enables or disables instances for dropped cells\n" - "\n" - "If this flag is set to true, instances for cells will be written, even if the cell is dropped. " - "That may happen, if cells are selected with \\select_this_cell or \\add_this_cell or \\no_empty_cells is used. " - "Even if cells called by such cells are not selected, instances will be written for that " - "cell if \"keep_instances\" is true. That feature is supported by the GDS format currently and " - "results in \"ghost cells\" which have instances but no cell definition.\n" - "\n" - "The default value is false (instances of dropped cells are not written).\n" - "\n" - "This method was introduced in version 0.23.\n" - ) + - gsi::method ("keep_instances?", &db::SaveLayoutOptions::keep_instances, - "@brief Gets a flag indicating whether instances will be kept even if the target cell is dropped\n" - "\n" - "See \\keep_instances= for details about this flag.\n" - "\n" - "This method was introduced in version 0.23.\n" - ) + - gsi::method ("dbu=", &db::SaveLayoutOptions::set_dbu, gsi::arg ("dbu"), - "@brief Sets the database unit to be used in the stream file\n" - "\n" - "By default, the database unit of the layout is used. This method allows one to explicitly use a different\n" - "database unit. A scale factor is introduced automatically which scales all layout objects accordingly so their physical dimensions remain the same. " - "When scaling to a larger database unit or one that is not an integer fraction of the original one, rounding errors may occur and the " - "layout may become slightly distorted." - ) + - gsi::method ("dbu", &db::SaveLayoutOptions::dbu, - "@brief Gets the explicit database unit if one is set\n" - "\n" - "See \\dbu= for a description of that attribute.\n" - ) + - gsi::method ("no_empty_cells=", &db::SaveLayoutOptions::set_dont_write_empty_cells, gsi::arg ("flag"), - "@brief Don't write empty cells if this flag is set\n" - "\n" - "By default, all cells are written (no_empty_cells is false).\n" - "This applies to empty cells which do not contain shapes for the specified layers " - "as well as cells which are empty because they reference empty cells only.\n" - ) + - gsi::method ("no_empty_cells?", &db::SaveLayoutOptions::dont_write_empty_cells, - "@brief Returns a flag indicating whether empty cells are not written.\n" - ) + - gsi::method ("libname=|#gds2_libname=", &db::SaveLayoutOptions::set_libname, gsi::arg ("libname"), - "@brief Sets the library name\n" - "\n" - "The library name is an attribute and specifies a formal name for a library, if the layout files is to be used as one.\n" - "Currently, this attribute is only supported by the GDS2 format. Hence the alias.\n" - "\n" - "By default or if the libname is an empty string, the current library name of the layout or 'LIB' is used.\n" - "\n" - "The 'libname' alias has been introduced in version 0.30.5. The original name \\gds2_libname= is still available." - ) + - gsi::method ("libname|#gds2_libname", &db::SaveLayoutOptions::libname, - "@brief Gets the library name\n" - "\n" - "See \\libname= for details.\n" - "The 'libname' alias has been introduced in version 0.30.5. The original name \\gds2_libname is still available." - ) + - gsi::method ("scale_factor=", &db::SaveLayoutOptions::set_scale_factor, gsi::arg ("scale_factor"), - "@brief Sets the scaling factor for the saving \n" - "\n" - "Using a scaling factor will scale all objects accordingly. " - "This scale factor adds to a potential scaling implied by using an explicit database unit.\n" - "\n" - "Be aware that rounding effects may occur if fractional scaling factors are used.\n" - "\n" - "By default, no scaling is applied." - ) + - gsi::method ("scale_factor", &db::SaveLayoutOptions::scale_factor, - "@brief Gets the scaling factor currently set\n" - ), - "@brief Options for saving layouts\n" - "\n" - "This class describes the various options for saving a layout to a stream file (GDS2, OASIS and others).\n" - "There are: layers to be saved, cell or cells to be saved, scale factor, format, database unit\n" - "and format specific options.\n" - "\n" - "Usually the default constructor provides a suitable object. Please note, that the format written is \"GDS2\" by default. Either explicitly set a " - "format using \\format= or derive the format from the file name using \\set_format_from_filename.\n" - "\n" - "The layers are specified by either selecting all layers or by defining layer by layer using the\n" - "\\add_layer method. \\select_all_layers will explicitly select all layers for saving, \\deselect_all_layers will explicitly clear the list of layers.\n" - "\n" - "Cells are selected in a similar fashion: by default, all cells are selected. Using \\add_cell, specific\n" - "cells can be selected for saving. All these cells plus their hierarchy will then be written to the stream file.\n" - "\n" -); - } diff --git a/src/db/db/gsiDeclDbSaveLayoutOptions.cc b/src/db/db/gsiDeclDbSaveLayoutOptions.cc new file mode 100644 index 000000000..c6c445db4 --- /dev/null +++ b/src/db/db/gsiDeclDbSaveLayoutOptions.cc @@ -0,0 +1,262 @@ + +/* + + KLayout Layout Viewer + Copyright (C) 2006-2026 Matthias Koefferlein + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + +*/ + + +#include "gsiDecl.h" +#include "dbSaveLayoutOptions.h" + +namespace gsi +{ + +static db::SaveLayoutOptions *new_v () +{ + return new db::SaveLayoutOptions (); +} + +static std::string set_format_from_filename (db::SaveLayoutOptions *opt, const std::string &fn) +{ + auto ff = opt->set_format_from_filename (fn); + if (! ff.first) { + throw tl::Exception (tl::to_string (tr ("Cannot determine format from filename"))); + } + return ff.second; +} + +Class decl_SaveLayoutOptions ("db", "SaveLayoutOptions", + gsi::constructor ("new", &new_v, + "@brief Default constructor\n" + "\n" + "This will initialize the scale factor to 1.0, the database unit is set to\n" + "\"same as original\" and all layers are selected as well as all cells.\n" + "The default format is GDS2." + ) + + gsi::method_ext ("set_format_from_filename", &set_format_from_filename, gsi::arg ("filename"), + "@brief Select a format from the given file name\n" + "\n" + "This method will set the format according to the file's extension.\n" + "\n" + "This method has been introduced in version 0.22. " + "Beginning with version 0.23, this method always returns true, since the " + "only consumer for the return value, Layout#write, now ignores that " + "parameter and automatically determines the compression mode from the file name.\n" + "\n" + "Starting with version 0.30.8, this method allows specifying the desired format's extension in square brackets " + "after the file name (e.g. 'file.txt[def]'). This allows writing files with non-standard extensions. " + "The return value of this function now is the actual file name used without the square brackets ('file.txt' in the example case)." + ) + + gsi::method ("format=", &db::SaveLayoutOptions::set_format, gsi::arg ("format"), + "@brief Select a format\n" + "The format string can be either \"GDS2\", \"OASIS\", \"CIF\" or \"DXF\". Other formats may be available if\n" + "a suitable plugin is installed." + ) + + gsi::method ("format", &db::SaveLayoutOptions::format, + "@brief Gets the format name\n" + "\n" + "See \\format= for a description of that method.\n" + ) + + gsi::method ("add_layer", &db::SaveLayoutOptions::add_layer, gsi::arg ("layer_index"), gsi::arg ("properties"), + "@brief Add a layer to be saved \n" + "\n" + "\n" + "Adds the layer with the given index to the layer list that will be written.\n" + "If all layers have been selected previously, all layers will \n" + "be unselected first and only the new layer remains.\n" + "\n" + "The 'properties' argument can be used to assign different layer properties than the ones\n" + "present in the layout. Pass a default \\LayerInfo object to this argument to use the\n" + "properties from the layout object. Construct a valid \\LayerInfo object with explicit layer,\n" + "datatype and possibly a name to override the properties stored in the layout.\n" + ) + + gsi::method ("select_all_layers", &db::SaveLayoutOptions::select_all_layers, + "@brief Select all layers to be saved\n" + "\n" + "This method will clear all layers selected with \\add_layer so far and set the 'select all layers' flag.\n" + "This is the default.\n" + ) + + gsi::method ("deselect_all_layers", &db::SaveLayoutOptions::deselect_all_layers, + "@brief Unselect all layers: no layer will be saved\n" + "\n" + "This method will clear all layers selected with \\add_layer so far and clear the 'select all layers' flag.\n" + "Using this method is the only way to save a layout without any layers." + ) + + gsi::method ("select_cell", &db::SaveLayoutOptions::select_cell, gsi::arg ("cell_index"), + "@brief Selects a cell to be saved (plus hierarchy below)\n" + "\n" + "\n" + "This method is basically a convenience method that combines \\clear_cells and \\add_cell.\n" + "This method clears the 'select all cells' flag.\n" + "\n" + "This method has been added in version 0.22.\n" + ) + + gsi::method ("select_this_cell", &db::SaveLayoutOptions::select_this_cell, gsi::arg ("cell_index"), + "@brief Selects a cell to be saved\n" + "\n" + "\n" + "This method is basically a convenience method that combines \\clear_cells and \\add_this_cell.\n" + "This method clears the 'select all cells' flag.\n" + "\n" + "This method has been added in version 0.23.\n" + ) + + gsi::method ("clear_cells", &db::SaveLayoutOptions::clear_cells, + "@brief Clears all cells to be saved\n" + "\n" + "This method can be used to ensure that no cell is selected before \\add_cell is called to specify a cell.\n" + "This method clears the 'select all cells' flag.\n" + "\n" + "This method has been added in version 0.22.\n" + ) + + gsi::method ("add_this_cell", &db::SaveLayoutOptions::add_this_cell, gsi::arg ("cell_index"), + "@brief Adds a cell to be saved\n" + "\n" + "\n" + "The index of the cell must be a valid index in the context of the layout that will be saved.\n" + "This method clears the 'select all cells' flag.\n" + "Unlike \\add_cell, this method does not implicitly add all children of that cell.\n" + "\n" + "This method has been added in version 0.23.\n" + ) + + gsi::method ("add_cell", &db::SaveLayoutOptions::add_cell, gsi::arg ("cell_index"), + "@brief Add a cell (plus hierarchy) to be saved\n" + "\n" + "\n" + "The index of the cell must be a valid index in the context of the layout that will be saved.\n" + "This method clears the 'select all cells' flag.\n" + "\n" + "This method also implicitly adds the children of that cell. A method that does not add the " + "children in \\add_this_cell.\n" + ) + + gsi::method ("select_all_cells", &db::SaveLayoutOptions::select_all_cells, + "@brief Select all cells to save\n" + "\n" + "This method will clear all cells specified with \\add_cells so far and set the 'select all cells' flag.\n" + "This is the default.\n" + ) + + gsi::method ("write_context_info=", &db::SaveLayoutOptions::set_write_context_info, gsi::arg ("flag"), + "@brief Enables or disables context information\n" + "\n" + "If this flag is set to false, no context information for PCell or library cell instances is written. " + "Those cells will be converted to plain cells and KLayout will not be able to restore the identity of " + "those cells. Use this option to enforce compatibility with other tools that don't understand the " + "context information of KLayout.\n" + "\n" + "The default value is true (context information is stored). Not all formats support context information, hence " + "that flag has no effect for formats like CIF or DXF.\n" + "\n" + "This method was introduced in version 0.23.\n" + ) + + gsi::method ("write_context_info?", &db::SaveLayoutOptions::write_context_info, + "@brief Gets a flag indicating whether context information will be stored\n" + "\n" + "See \\write_context_info= for details about this flag.\n" + "\n" + "This method was introduced in version 0.23.\n" + ) + + gsi::method ("keep_instances=", &db::SaveLayoutOptions::set_keep_instances, gsi::arg ("flag"), + "@brief Enables or disables instances for dropped cells\n" + "\n" + "If this flag is set to true, instances for cells will be written, even if the cell is dropped. " + "That may happen, if cells are selected with \\select_this_cell or \\add_this_cell or \\no_empty_cells is used. " + "Even if cells called by such cells are not selected, instances will be written for that " + "cell if \"keep_instances\" is true. That feature is supported by the GDS format currently and " + "results in \"ghost cells\" which have instances but no cell definition.\n" + "\n" + "The default value is false (instances of dropped cells are not written).\n" + "\n" + "This method was introduced in version 0.23.\n" + ) + + gsi::method ("keep_instances?", &db::SaveLayoutOptions::keep_instances, + "@brief Gets a flag indicating whether instances will be kept even if the target cell is dropped\n" + "\n" + "See \\keep_instances= for details about this flag.\n" + "\n" + "This method was introduced in version 0.23.\n" + ) + + gsi::method ("dbu=", &db::SaveLayoutOptions::set_dbu, gsi::arg ("dbu"), + "@brief Sets the database unit to be used in the stream file\n" + "\n" + "By default, the database unit of the layout is used. This method allows one to explicitly use a different\n" + "database unit. A scale factor is introduced automatically which scales all layout objects accordingly so their physical dimensions remain the same. " + "When scaling to a larger database unit or one that is not an integer fraction of the original one, rounding errors may occur and the " + "layout may become slightly distorted." + ) + + gsi::method ("dbu", &db::SaveLayoutOptions::dbu, + "@brief Gets the explicit database unit if one is set\n" + "\n" + "See \\dbu= for a description of that attribute.\n" + ) + + gsi::method ("no_empty_cells=", &db::SaveLayoutOptions::set_dont_write_empty_cells, gsi::arg ("flag"), + "@brief Don't write empty cells if this flag is set\n" + "\n" + "By default, all cells are written (no_empty_cells is false).\n" + "This applies to empty cells which do not contain shapes for the specified layers " + "as well as cells which are empty because they reference empty cells only.\n" + ) + + gsi::method ("no_empty_cells?", &db::SaveLayoutOptions::dont_write_empty_cells, + "@brief Returns a flag indicating whether empty cells are not written.\n" + ) + + gsi::method ("libname=|#gds2_libname=", &db::SaveLayoutOptions::set_libname, gsi::arg ("libname"), + "@brief Sets the library name\n" + "\n" + "The library name is an attribute and specifies a formal name for a library, if the layout files is to be used as one.\n" + "Currently, this attribute is only supported by the GDS2 format. Hence the alias.\n" + "\n" + "By default or if the libname is an empty string, the current library name of the layout or 'LIB' is used.\n" + "\n" + "The 'libname' alias has been introduced in version 0.30.5. The original name \\gds2_libname= is still available." + ) + + gsi::method ("libname|#gds2_libname", &db::SaveLayoutOptions::libname, + "@brief Gets the library name\n" + "\n" + "See \\libname= for details.\n" + "The 'libname' alias has been introduced in version 0.30.5. The original name \\gds2_libname is still available." + ) + + gsi::method ("scale_factor=", &db::SaveLayoutOptions::set_scale_factor, gsi::arg ("scale_factor"), + "@brief Sets the scaling factor for the saving \n" + "\n" + "Using a scaling factor will scale all objects accordingly. " + "This scale factor adds to a potential scaling implied by using an explicit database unit.\n" + "\n" + "Be aware that rounding effects may occur if fractional scaling factors are used.\n" + "\n" + "By default, no scaling is applied." + ) + + gsi::method ("scale_factor", &db::SaveLayoutOptions::scale_factor, + "@brief Gets the scaling factor currently set\n" + ), + "@brief Options for saving layouts\n" + "\n" + "This class describes the various options for saving a layout to a stream file (GDS2, OASIS and others).\n" + "There are: layers to be saved, cell or cells to be saved, scale factor, format, database unit\n" + "and format specific options.\n" + "\n" + "Usually the default constructor provides a suitable object. Please note, that the format written is \"GDS2\" by default. Either explicitly set a " + "format using \\format= or derive the format from the file name using \\set_format_from_filename.\n" + "\n" + "The layers are specified by either selecting all layers or by defining layer by layer using the\n" + "\\add_layer method. \\select_all_layers will explicitly select all layers for saving, \\deselect_all_layers will explicitly clear the list of layers.\n" + "\n" + "Cells are selected in a similar fashion: by default, all cells are selected. Using \\add_cell, specific\n" + "cells can be selected for saving. All these cells plus their hierarchy will then be written to the stream file.\n" + "\n" +); + +} From cb9e25f1b35af4ce6454c585f19b54b6d9e0a4f4 Mon Sep 17 00:00:00 2001 From: Matthias Koefferlein Date: Sat, 21 Mar 2026 09:25:17 +0100 Subject: [PATCH 046/212] Issue #2300: added documentation about KLAYOUT_DEF_FORMAT and KLAYOUT_LEF_FORMAT environment variables. --- src/buddies/src/bd/strmclip.cc | 4 +- src/buddies/src/bd/strmxor.cc | 4 +- src/lay/lay/layApplication.cc | 107 ++++++++++++++++++++------------- 3 files changed, 72 insertions(+), 43 deletions(-) diff --git a/src/buddies/src/bd/strmclip.cc b/src/buddies/src/bd/strmclip.cc index 3af66f445..7f8d232da 100644 --- a/src/buddies/src/bd/strmclip.cc +++ b/src/buddies/src/bd/strmclip.cc @@ -176,7 +176,9 @@ BD_PUBLIC int strmclip (int argc, char *argv[]) << tl::arg ("output", &data.file_out, "The output file", "The output format is determined from the suffix of the file. If the suffix indicates " "gzip compression, the file will be compressed on output. Examples for recognized suffixes are " - "\".oas\", \".gds.gz\", \".dxf\" or \".gds2\"." + "\".oas\", \".gds.gz\", \".dxf\" or \".gds2\". You can also use any name, and specify the " + "desired suffix in square brackets after the file name. For example, 'file.clip[oas]' will " + "create an OASIS file called 'file.clip'." ) << tl::arg ("-l|--clip-layer=spec", &data, &ClipData::set_clip_layer, "Specifies a layer to take the clip regions from", "If this option is given, the clip rectangles are taken from the given layer." diff --git a/src/buddies/src/bd/strmxor.cc b/src/buddies/src/bd/strmxor.cc index b3437705a..1fb24be03 100644 --- a/src/buddies/src/bd/strmxor.cc +++ b/src/buddies/src/bd/strmxor.cc @@ -408,7 +408,9 @@ BD_PUBLIC int strmxor (int argc, char *argv[]) << tl::arg ("?output", &output, "The output file to which the XOR differences are written", "This argument is optional. If not given, the exit status alone will indicate whether the layouts " "are identical or not. The output is a layout file. The format of the file is derived " - "from the file name's suffix (.oas[.gz] for (gzipped) OASIS, .gds[.gz] for (gzipped) GDS2 etc.)." + "from the file name's suffix (.oas for OASIS, .gds[.gz] for (gzipped) GDS2 etc.). " + "You can also use any name, and specify the desired suffix in square brackets after the file name. " + "For example, 'file.xor[oas]' will create an OASIS file called 'file.xor'." ) << tl::arg ("-ta|--top-a=name", &top_a, "Specifies the top cell for the first layout", "Use this option to take a specific cell as the top cell from the first layout. All " diff --git a/src/lay/lay/layApplication.cc b/src/lay/lay/layApplication.cc index 8985f7041..63b6450cf 100644 --- a/src/lay/lay/layApplication.cc +++ b/src/lay/lay/layApplication.cc @@ -1060,47 +1060,72 @@ ApplicationBase::usage () { std::string r; r = std::string (lay::Version::exe_name ()) + " [] [] ..\n"; - r += tl::to_string (QObject::tr ("options")) + "\n"; - r += tl::to_string (QObject::tr (" -b Batch mode (same as -zz -nc -rx)")) + "\n"; - r += tl::to_string (QObject::tr (" -c Use this configuration file")) + "\n"; - r += tl::to_string (QObject::tr (" -nc Don't use a configuration file (implies -t)")) + "\n"; - r += tl::to_string (QObject::tr (" -d Set log level")) + "\n"; - r += tl::to_string (QObject::tr (" -e Editable mode (allow editing of files)")) + "\n"; - r += tl::to_string (QObject::tr (" -ne Readonly mode (editing of files is disabled)")) + "\n"; - r += tl::to_string (QObject::tr (" -gr Record GUI test file")) + "\n"; - r += tl::to_string (QObject::tr (" -gp Replay GUI test file")) + "\n"; - r += tl::to_string (QObject::tr (" -gb Replay GUI test file up to (including) line")) + "\n"; - r += tl::to_string (QObject::tr (" -gx Replay rate for GUI test file")) + "\n"; - r += tl::to_string (QObject::tr (" -gi Incremental logs for GUI test file")) + "\n"; - r += tl::to_string (QObject::tr (" -i Disable undo buffering (less memory requirements)")) + "\n"; - r += tl::to_string (QObject::tr (" -ni Enable undo buffering (default, overrides previous -i option)")) + "\n"; - r += tl::to_string (QObject::tr (" -j Add the given path to the macro project paths")) + "\n"; - r += tl::to_string (QObject::tr (" -k Write log to the given file plus stdout/stderr")) + "\n"; - r += tl::to_string (QObject::tr (" -l Use layer properties file")) + "\n"; - r += tl::to_string (QObject::tr (" -lx With -l: add other layers as well")) + "\n"; - r += tl::to_string (QObject::tr (" -lf With -l: use the lyp file as it is (no expansion to multiple layouts)")) + "\n"; - r += tl::to_string (QObject::tr (" -m Load RDB (report database) file (into previous layout view)")) + "\n"; - r += tl::to_string (QObject::tr (" -mn Load L2NDB (layout to netlist database) file (into previous layout view)")) + "\n"; - r += tl::to_string (QObject::tr (" -n Technology to use for next layout(s) on command line")) + "\n"; - r += tl::to_string (QObject::tr (" -nn Technology file (.lyt) to use for next layout(s) on command line")) + "\n"; - r += tl::to_string (QObject::tr (" -p Load the plugin (can be used multiple times)")) + "\n"; - r += tl::to_string (QObject::tr (" -r